Skip to content
This repository was archived by the owner on Dec 13, 2022. It is now read-only.

Commit 2d55e8f

Browse files
committed
v0.9.9.12
1 parent e6843d8 commit 2d55e8f

File tree

6 files changed

+46
-28
lines changed

6 files changed

+46
-28
lines changed

AIO/Tools/AIOCreator_x64.exe

-2.5 KB
Binary file not shown.

AIO/grub/functions.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ function ChangeLanguage {
481481
for langstr in "vi=Tiếng Việt" "en=English" "ast=Asturian; Bable; Leonese; Asturleonese" "ca=català" "zh_CN=中文 (Simplified)" "zh_TW=中文 (Traditional)" "da=dansk" "nl=Dutch" "en@arabic=English - Arabic" \
482482
"en@cyrillic=English - Cyrillic" "en@greek=English - Greek" "en@hebrew=English - Hebrew" "en@piglatin=English - Piglatin" "en@quot=English - Quot" \
483483
"eo=Esperanto" "fi=Finnish" "fr=français" "gl=Galego" "de=Deutsch" "de@hebrew=German - Hebrew" "de_CH=German - SWITZERLAND (CH)" "hu=magyar" \
484-
"hr=hrvatski jezik" "id=Bahasa Indonesia" "it=Italiano" "ja=日本語" "lt=lietuvių kalba" "nb=Norsk Bokmål" "no=Norwegian" "pl=Polish" "pt_BR=Português" "pa=Panjabi" "ru=русский" "sr=српски језик" \
484+
"hr=hrvatski jezik" "id=Bahasa Indonesia" "it=Italiano" "ja=日本語" "ko=한국어" "lt=lietuvių kalba" "nb=Norsk Bokmål" "no=Norwegian" "pl=Polish" "pt_BR=Português" "pa=Panjabi" "ru=русский" "sr=српски језик" \
485485
"sl=Slovenian" "es=Español" "sv=Svenska" "tr=Türkçe" "uk=Українська"; do
486486
regexp -s 2:langname -s 1:langcode '(.*)=(.*)' "$langstr"
487487
if [ "$langcode" == "$lang" ] -o [ -z "$lang" -a "$langcode" == "en" ]; then continue; fi

AIO/grub/menuoff/dlc1.cfg

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
### Start DLC.Boot.2019.V3.6
22
### DLC.Boot.2019.V3.6.rar
33
set timeout=0
4-
if [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "x64" ]; then
4+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "x64" ]; then
55
menuentry "[1] W10x64" --hotkey=1 {
66
ntbootcmd "/DLC1/W10PE/W10x64.wim" "wim"
77
}
88
fi
9-
if [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
10-
menuentry "[1] W10x86" --hotkey=1 {
9+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
10+
menuentry "[2] W10x86" --hotkey=2 {
1111
ntbootcmd "/DLC1/W10PE/W10x86.wim" "wim"
1212
}
1313
fi
1414
if [ -n "$pc" ]; then
15-
menuentry "[1] ${dos}" --hotkey=1 {
15+
unset timeout
16+
menuentry "[3] XP" --hotkey=3 {
17+
ntldr /DLC1/XP/XP.BIN
18+
}
19+
menuentry "[4] ${dos}" --hotkey=4 {
1620
Grub4dosRoot
1721
set opt="root ${g4droot};configfile /DLC1/Boot/gru4.lst"
1822
linux16 ${g4d_path}/grub.exe --config-file=${opt}

AIO/grub/menuoff/kmpe.cfg

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,44 +3,51 @@
33

44
set hotkey="_"
55

6-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "x64" ]; then
6+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "x64" ]; then
77
GetHotkey
88
menuentry "[${hotkey}] Win10 Full (x64)" --hotkey=${hotkey} {
99
ntbootcmd "/KMPE/PE64W10.wim" "wim"
1010
}
1111
fi
12-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "ia32" ]; then
12+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
1313
GetHotkey
1414
menuentry "[${hotkey}] Win10 Full (x86)" --hotkey=${hotkey} {
1515
ntbootcmd "/KMPE/PE32W10.wim" "wim"
1616
}
1717
fi
18-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "x64" ]; then
18+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "x64" ]; then
1919
GetHotkey
2020
menuentry "[${hotkey}] Win10 Lite (x64)" --hotkey=${hotkey} {
2121
ntbootcmd "/KMPE/PE64W10L.wim" "wim"
2222
}
2323
fi
24-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "ia32" ]; then
24+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
2525
GetHotkey
2626
menuentry "[${hotkey}] Win 8 Full (x86)" --hotkey=${hotkey} {
2727
ntbootcmd "/KMPE/PE32W8.wim" "wim"
2828
}
2929
fi
30-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "ia32" ]; then
30+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
3131
GetHotkey
3232
menuentry "[${hotkey}] Win 8 Lite Native (x86) " --hotkey=${hotkey} {
3333
ntbootcmd "/KMPE/PE32W8NE.wim" "wim"
3434
}
3535
fi
36-
if [ -n "$efi" ] -a [ "$_SPEC_UEFI_ARCH" == "ia32" ]; then
36+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
3737
GetHotkey
3838
menuentry "[${hotkey}] Win 8 Lite (x86) " --hotkey=${hotkey} {
3939
ntbootcmd "/KMPE/PE32W8N.wim" "wim"
4040
}
4141
fi
4242
if [ -n "$pc" ]; then
43-
set timeout=0
43+
GetHotkey
44+
menuentry "[${hotkey}] WinXP (x86)" --hotkey=${hotkey} {
45+
ntldr /KMPE/XPPE.BIN
46+
}
47+
GetHotkey
48+
menuentry "[${hotkey}] WinXP Native (x86)" --hotkey=${hotkey} {
49+
ntldr /KMPE/XPNE.BIN
50+
}
4451
GetHotkey
4552
menuentry "[${hotkey}] ${dos}" --hotkey=${hotkey} {
4653
Grub4dosRoot

AIO/grub/menuoff/strelec.cfg

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,28 @@ else
88
set sstr_file=".wim"
99
fi
1010

11-
if [ -n "$efi" ]; then
12-
if [ "$_SPEC_UEFI_ARCH" == "x64" ]; then
13-
menuentry "[1] strelec 10 x64" --hotkey=1 {
14-
ntbootcmd "/SSTR/strelec10x64${sstr_file}" "wim"
15-
}
16-
else
17-
menuentry "[1] strelec 10 x32" --hotkey=1 {
18-
ntbootcmd "/SSTR/strelec10${sstr_file}" "wim"
19-
}
20-
fi
21-
else
22-
menuentry "[1] ${dos}" --hotkey=1 {
23-
Grub4dosRoot
24-
set opt="root ${g4droot};configfile /SSTR/menu.lst"
25-
linux16 ${g4d_path}/grub.exe --config-file=${opt}
26-
}
11+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "x64" ]; then
12+
menuentry "[1] strelec 10 x64" --hotkey=1 {
13+
ntbootcmd "/SSTR/strelec10x64${sstr_file}" "wim"
14+
}
15+
fi
16+
if [ -n "$pc" ] -o [ -n "$efi" -a "$_SPEC_UEFI_ARCH" == "ia32" ]; then
17+
menuentry "[2] strelec 10 x32" --hotkey=2 {
18+
ntbootcmd "/SSTR/strelec10${sstr_file}" "wim"
19+
}
20+
fi
21+
if [ -n "$pc" ]; then
22+
unset timeout
23+
menuentry "[3] strelec 8" --hotkey=3 {
24+
ntbootcmd "/SSTR/strelec8${sstr_file}" "wim"
25+
}
26+
menuentry "[4] strelec 8 NE" --hotkey=4 {
27+
ntbootcmd "/SSTR/strelec8NE${sstr_file}" "wim"
28+
}
29+
menuentry "[5] ${dos}" --hotkey=5 {
30+
Grub4dosRoot
31+
set opt="root ${g4droot};configfile /SSTR/menu.lst"
32+
linux16 ${g4d_path}/grub.exe --config-file=${opt}
33+
}
2734
fi
2835
### End WinPE10_8_Sergei_Strelec_x86_x64_2020.06.09_English

AIOCreator.exe

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)