diff options
author | Hugo Carvalho <hugokarvalho@hotmail.com> | 2019-10-18 17:01:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 17:01:34 +0100 |
commit | db7c72e6aa67106b094a862791b6a073784a2806 (patch) | |
tree | f1d427754337444300865f57e26db01422dd94d9 | |
parent | 2a98bf6a9505e61623988a0fe46aaf6320d6522c (diff) | |
parent | fbc3f42d5791f53da6894016ebb18dbe15d047bd (diff) | |
download | hyperfi-db7c72e6aa67106b094a862791b6a073784a2806.tar.lz hyperfi-db7c72e6aa67106b094a862791b6a073784a2806.tar.xz hyperfi-db7c72e6aa67106b094a862791b6a073784a2806.zip |
Merge pull request #1 from MatMoul/master
Update
-rw-r--r-- | archfi | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -12,7 +12,7 @@ # referance : https://wiki.archlinux.org/index.php/Installation_guide -apptitle="Arch Linux Fast Install (archfi) - Version: 2019.08.27.23.48.19 (GPLv3)" +apptitle="Arch Linux Fast Install (archfi) - Version: 2019.10.06.21.58.07 (GPLv3)" baseurl=https://raw.githubusercontent.com/MatMoul/archfi/master skipfont="0" @@ -749,7 +749,7 @@ installmenu(){ fi options=() options+=("${txteditmirrorlist}" "(${txtoptional})") - options+=("${txtinstallarchlinux}" "pacstrap base") + options+=("${txtinstallarchlinux}" "pacstrap base linux") options+=("${txtconfigarchlinux}" "") sel=$(whiptail --backtitle "${apptitle}" --title "${txtinstallmenu}" --menu "" --cancel-button "${txtunmount}" --default-item "${nextitem}" 0 0 0 \ "${options[@]}" \ @@ -777,8 +777,8 @@ installmenu(){ installbase(){ clear - echo "pacstrap /mnt base" - pacstrap /mnt base + echo "pacstrap /mnt base linux" + pacstrap /mnt base linux pressanykey } @@ -1603,6 +1603,10 @@ archrefindinstallchroot(){ archenabledhcpcd(){ if (whiptail --backtitle "${apptitle}" --title "${txtenable//%1/dhcpcd}" --yesno "${txtenable//%1/dhcpcd} ?" 0 0) then clear + + echo "pacstrap /mnt dhcpcd" + + pacstrap /mnt dhcpcd archchroot enabledhcpcd pressanykey fi |