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 !.gitkeep
.vscode .vscode
rr
rr.env
rr*.img rr*.img
rr*.vmdk rr*.vmdk
*.zip *.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 CFLAGS = -Wall -pedantic
all: fbsize all: fbsize

View File

@ -1,10 +1,10 @@
/* /*
* Copyright (C) 2022 Ing <https://github.com/wjz304> * Copyright (C) 2022 Ing <https://github.com/wjz304>
* *
* This is free software, licensed under the MIT License. * This is free software, licensed under the MIT License.
* See /LICENSE for more information. * See /LICENSE for more information.
* *
*/ */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

View File

@ -1,4 +1,4 @@
RR_VERSION="24.5.3" RR_VERSION="24.5.2"
RR_RELEASE="" RR_RELEASE=""
RR_TITLE="RR v${RR_VERSION}" 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() KS.sort()
for K in KS: for K in KS:
K_name = os.path.splitext(os.path.basename(K))[0] 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_description = K_info.get("description", "")
K_depends = K_info.get("depends", "") K_depends = K_info.get("depends", "")
M_modules[K_name] = {"description": K_description, "depends": K_depends} M_modules[K_name] = {"description": K_description, "depends": K_depends}