diff options
author | Juan RP <xtraeme@gmail.com> | 2014-02-03 23:16:28 +0100 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-02-03 23:16:28 +0100 |
commit | 22d319346dd7f9eb9a5496beaf370a5d9e763c23 (patch) | |
tree | 7203dfe2bf420003a22a146ddd826576edea9413 /installer.sh.in | |
parent | 08db3c6cb330ef4b5f51e6080fe2e95a5b38f63f (diff) | |
download | hrmpf-22d319346dd7f9eb9a5496beaf370a5d9e763c23.tar.gz hrmpf-22d319346dd7f9eb9a5496beaf370a5d9e763c23.tar.xz hrmpf-22d319346dd7f9eb9a5496beaf370a5d9e763c23.zip |
installer: add a network option in main menu.
Diffstat (limited to 'installer.sh.in')
-rw-r--r-- | installer.sh.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/installer.sh.in b/installer.sh.in index 9bc3d77..a283d2e 100644 --- a/installer.sh.in +++ b/installer.sh.in @@ -909,6 +909,7 @@ menu() { --title " Void Linux installation menu " \ --menu "$MENULABEL" 10 70 0 \ "Keyboard" "Set system keyboard" \ + "Network" "Set up the network" \ "Source" "Set source installation" \ "Hostname" "Set system hostname" \ "Locale" "Set system locale" \ @@ -927,7 +928,8 @@ menu() { fi case $(cat $ANSWER) in - "Keyboard") menu_keymap && [ -n "$KEYBOARD_DONE" ] && DEFITEM="Source";; + "Keyboard") menu_keymap && [ -n "$KEYBOARD_DONE" ] && DEFITEM="Network";; + "Network") menu_network && [ -n "$NETWORK_DONE" ] && DEFITEM="Source";; "Source") menu_source && [ -n "$SOURCE_DONE" ] && DEFITEM="Hostname";; "Hostname") menu_hostname && [ -n "$HOSTNAME_DONE" ] && DEFITEM="Locale";; "Locale") menu_locale && [ -n "$LOCALE_DONE" ] && DEFITEM="Timezone";; |