fix something

This commit is contained in:
Ing 2024-04-28 15:51:32 +08:00
parent a44a4eb0ab
commit 8eb8b6b13c
19 changed files with 5331 additions and 3706 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ rr*.vmdk
*.zip
*.bak
*.o
**.po~
**.mo
tests

View File

@ -57,8 +57,10 @@ For the packag of has been initialized and build image, please go to [RR-CUSTOM]
# If you have to replace certain language string of the project, please suggest and modify translation changes within each correlated PO file
mkdir -p lang/zh_CN/LC_MESSAGES
msginit -i lang/rr.pot -l zh_CN.UTF-8 -o lang/zh_CN/LC_MESSAGES/rr.po
# Update translation files
for I in $(find lang -path *rr.po); do msgmerge --width=256 -U ${I} lang/rr.pot; done
# This formatting process will be automatically conducted during packaging.
msgfmt lang/zh_CN/LC_MESSAGES/rr.po -o lang/zh_CN/LC_MESSAGES/rr.mo
for I in $(find lang -path *rr.po); do msgfmt ${I} -o ${I/.po/.mo}; done
```
- PRs of new language translations towards the project is welcomed with appreciation.
@ -69,6 +71,7 @@ For the packag of has been initialized and build image, please go to [RR-CUSTOM]
- `ja_JP`: `@andatoshiki` & `@toshikidev`
- `ko_KR`: `@EXP` : jeong1986
- `ru_RU`: `@Alex`: TG
- `tr_TR`: `@miraç bahadır öztürk`: miracozturk
- `vi_VN`: `@Ngọc Anh Trần`: mr.ngocanhtran
- `zh_CN`: `@rrorg`
- `zh_HK`: `@rrorg`

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -869,6 +869,9 @@ function cmdlineMenu() {
MSG+="$(TEXT " * \Z4ahci_remap=4>5:5>8:12>16\Zn\n Remap data port sequence.(Not apply to DT models.)\n")"
MSG+="$(TEXT " * \Z4i915.enable_guc=2\Zn\n Enable the GuC firmware on Intel graphics hardware.(value: 1,2 or 3)\n")"
MSG+="$(TEXT " * \Z4i915.max_vfs=7\Zn\n Set the maximum number of virtual functions (VFs) that can be created for Intel graphics hardware.\n")"
MSG+="$(TEXT " * \Z4i915.modeset=0\Zn\n Disable the kernel mode setting (KMS) feature of the i915 driver.\n")"
MSG+="$(TEXT " * \Z4apparmor.mode=complain\Zn\n Set the AppArmor security module to complain mode.\n")"
MSG+="$(TEXT " * \Z4apparmor=0\Zn\n Disable the AppArmor security module.\n")"
MSG+="$(TEXT " * \Z4consoleblank=300\Zn\n Set the console to auto turnoff display 300 seconds after no activity (measured in seconds).\n")"
MSG+="$(TEXT "\nEnter the parameter name and value you need to add.\n")"
LINENUM=$(($(echo -e "${MSG}" | wc -l) + 10))

View File

@ -20,7 +20,6 @@ cmdline: &cmdline
vender_format_version: 2
syno_ttyS0: "serial,0x3f8"
syno_ttyS1: "serial,0x2f8"
# apparmor.mode: "complain"
patch: &patch
- "ramdisk-etc-rc-*.patch"
- "ramdisk-init-script-v5-*.patch"