Compare commits

...

4 Commits

Author SHA1 Message Date
github-actions[bot]
2b2cc34278 update 2024-05-11 16:03:28 2024-05-11 16:03:28 +08:00
Ing
8c5c1b1962 fix something 2024-05-11 16:02:20 +08:00
Ing
4bf7feeeb2 fix get modinfo 2024-05-11 16:00:14 +08:00
github-actions[bot]
0fba0d188f update 2024-05-11 13:47:04 2024-05-11 13:47:04 +08:00
11 changed files with 543 additions and 542 deletions

2
.gitignore vendored
View File

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

View File

@ -1 +1 @@
24.5.2
24.5.3

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,4 +1,3 @@
CFLAGS = -Wall -pedantic
all: fbsize

View File

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

View File

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

View File

@ -1 +1 @@
24.5.2
24.5.3

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(os.path.basename(K), basedir=os.path.dirname(K))[0]
K_info = kmodule.modinfo(K, basedir=os.path.dirname(K), kernel=None)[0]
K_description = K_info.get("description", "")
K_depends = K_info.get("depends", "")
M_modules[K_name] = {"description": K_description, "depends": K_depends}