mirror of
https://github.com/RROrg/rr.git
synced 2025-12-17 17:49:39 +08:00
Compare commits
No commits in common. "2b2cc34278c9192a43a1eea5eb8957291ed711cd" and "6951fe491c1c88c7afd682cab72705fa14d752ce" have entirely different histories.
2b2cc34278
...
6951fe491c
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,7 +1,5 @@
|
||||
!.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,3 +1,4 @@
|
||||
|
||||
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.3"
|
||||
RR_VERSION="24.5.2"
|
||||
RR_RELEASE=""
|
||||
RR_TITLE="RR v${RR_VERSION}"
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
24.5.3
|
||||
24.5.2
|
||||
|
||||
@ -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}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user