Compare commits

..

No commits in common. "2b2cc34278c9192a43a1eea5eb8957291ed711cd" and "6951fe491c1c88c7afd682cab72705fa14d752ce" have entirely different histories.

11 changed files with 542 additions and 543 deletions

2
.gitignore vendored
View File

@ -1,7 +1,5 @@
!.gitkeep
.vscode
rr
rr.env
rr*.img
rr*.vmdk
*.zip

View File

@ -1 +1 @@
24.5.3
24.5.2

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,3 +1,4 @@
CFLAGS = -Wall -pedantic
all: fbsize

View File

@ -1,4 +1,4 @@
RR_VERSION="24.5.3"
RR_VERSION="24.5.2"
RR_RELEASE=""
RR_TITLE="RR v${RR_VERSION}"

View File

@ -1 +1 @@
24.5.3
24.5.2

View File

@ -117,7 +117,7 @@ def getmodules(workpath, jsonpath, xlsxpath):
KS.sort()
for K in KS:
K_name = os.path.splitext(os.path.basename(K))[0]
K_info = kmodule.modinfo(K, basedir=os.path.dirname(K), kernel=None)[0]
K_info = kmodule.modinfo(os.path.basename(K), basedir=os.path.dirname(K))[0]
K_description = K_info.get("description", "")
K_depends = K_info.get("depends", "")
M_modules[K_name] = {"description": K_description, "depends": K_depends}