wok-current view tazinst/stuff/remove-webboot-option.patch @ rev 25792

Fix openbox menu, label keymap on lxpanel and add miss it translation for tazpkg
author Stanislas Leduc <shann@slitaz.org>
date Tue Oct 07 05:55:24 2025 +0000 (2 weeks ago)
parents
children
line source
1 --- a/installer.cgi
2 +++ b/installer.cgi
3 @@ -555,29 +555,6 @@
4 }
7 -select_webboot()
8 -{
9 - local webboot="$(/usr/sbin/tazinst get webboot "$INSTFILE")" error
10 -
11 - cat <<EOT
12 - $(
13 - input "checkbox" \
14 - "webboot" \
15 - "auto" \
16 - "$webboot"
17 - label "webboot" \
18 - "$(_ 'Enable the webboot mode. (with root password)')" \
19 - "$(_ "At start-up, you will be asked whether you want to boot \
20 -into SliTaz GNU/Linux on disk or boot in RAM from the Web.")"
21 - error="$?"
22 - error_msg "$error" \
23 - "webboot"
24 - )
25 - <br/>
26 -EOT
27 -}
28 -
29 -
30 select_winboot()
31 {
32 local winboot="$(/usr/sbin/tazinst get winboot "$INSTFILE")" error
33 @@ -648,7 +625,6 @@
34 <div class="bootloader">$(
35 printf '%s' "$settings" | grep -q "bootloader" && select_bootloader
36 printf '%s' "$settings" | grep -q "liveboot" && select_liveboot
37 - printf '%s' "$settings" | grep -q "webboot" && select_webboot
38 printf '%s' "$settings" | grep -q "winboot" && select_winboot
39 )</div>
40 </fieldset>
41 @@ -717,9 +693,6 @@
42 # SliTaz Live Boot
43 /usr/sbin/tazinst set liveboot "$(GET LIVEBOOT)" "$INSTFILE"
45 - # SliTaz Web Boot
46 - /usr/sbin/tazinst set webboot "$(GET WEBBOOT)" "$INSTFILE"
47 -
48 # win Dual-Boot
49 /usr/sbin/tazinst set winboot "$(GET WINBOOT)" "$INSTFILE"
51 @@ -727,7 +700,7 @@
52 if [ "$(GET BOOTLOADER)" = "auto" ]; then
53 /usr/sbin/tazinst set bootloader "auto" "$INSTFILE"
54 else
55 - for i in bootloader liveboot webboot winboot ; do
56 + for i in bootloader liveboot winboot ; do
57 /usr/sbin/tazinst unset $i "$INSTFILE"
58 done
59 fi