diff options
author | MatMoul <matmoul@gmail.com> | 2019-10-06 21:36:54 +0200 |
---|---|---|
committer | MatMoul <matmoul@gmail.com> | 2019-10-06 21:36:54 +0200 |
commit | 7d66ed110b3830d2adae970ec597df1f0442bd3d (patch) | |
tree | 079503fa550fbff28f5d4f29160dd8241ca44f58 | |
parent | 2a98bf6a9505e61623988a0fe46aaf6320d6522c (diff) | |
download | hyperfi-7d66ed110b3830d2adae970ec597df1f0442bd3d.tar.lz hyperfi-7d66ed110b3830d2adae970ec597df1f0442bd3d.tar.xz hyperfi-7d66ed110b3830d2adae970ec597df1f0442bd3d.zip |
Add linux package to the install
-rw-r--r-- | archfi | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 } |