mirror of
https://github.com/RROrg/rr.git
synced 2025-12-17 09:39:34 +08:00
Compare commits
4 Commits
6951fe491c
...
2b2cc34278
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b2cc34278 | ||
|
|
8c5c1b1962 | ||
|
|
4bf7feeeb2 | ||
|
|
0fba0d188f |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,7 @@
|
||||
!.gitkeep
|
||||
.vscode
|
||||
rr
|
||||
rr.env
|
||||
rr*.img
|
||||
rr*.vmdk
|
||||
*.zip
|
||||
|
||||
BIN
docs/addons.xlsx
BIN
docs/addons.xlsx
Binary file not shown.
BIN
docs/models.xlsx
BIN
docs/models.xlsx
Binary file not shown.
1060
docs/modules.json
1060
docs/modules.json
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,4 +1,3 @@
|
||||
|
||||
CFLAGS = -Wall -pedantic
|
||||
|
||||
all: fbsize
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
RR_VERSION="24.5.2"
|
||||
RR_VERSION="24.5.3"
|
||||
RR_RELEASE=""
|
||||
RR_TITLE="RR v${RR_VERSION}"
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
24.5.2
|
||||
24.5.3
|
||||
|
||||
@ -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}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user