diff options
author | Kyle K <kylek389@gmail.com> | 2020-02-13 17:04:01 -0600 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2020-02-13 17:04:01 -0600 |
commit | faafb704e8fd9769250ad64522158ffde88f57bd (patch) | |
tree | 3e4ebbbbc4c311b818133bf0be98cca3a3345864 | |
parent | 8686b0be24da91d172bf4f1a0881608480c70d8c (diff) | |
download | gentoox-faafb704e8fd9769250ad64522158ffde88f57bd.tar.gz gentoox-faafb704e8fd9769250ad64522158ffde88f57bd.tar.bz2 gentoox-faafb704e8fd9769250ad64522158ffde88f57bd.zip |
fix typo path passed to fdisk
-rwxr-xr-x | gentoox_build.sh | 4 | ||||
-rwxr-xr-x | install.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gentoox_build.sh b/gentoox_build.sh index c972a46..44ec8cd 100755 --- a/gentoox_build.sh +++ b/gentoox_build.sh @@ -22,9 +22,9 @@ rootpassword=gentoox username=gentoox userpassword=gentoox #builddate="$(date +%Y%m%d).graphite" -builddate="20200127.graphite" +builddate="20200210.graphite" #builddir="build-$(date +%Y%m%d)" -builddir="build-20200127" +builddir="build-20200210" KERNEL_CONFIG_DIFF="0001-kernel-config-cfs-r3.patch" binpkgs=/root/var/cache/binpkgs/ @@ -67,7 +67,7 @@ setup_btrfs () { # ls /mnt/install should respond with empty result mkdir /mnt/install/.snapshots - mkdir /mnt/install/boot + mkdir /mnt/install/boot #mkdir -p /mnt/install/boot/grub/i386-pc #mkdir -p /mnt/install/boot/grub/x86_64-efi mkdir /mnt/install/home @@ -125,7 +125,7 @@ if [[ $partitioning_mode = "a" ]]; then mkdir -p /mnt/install/boot/efi mount $UEFI_PART /mnt/install/boot/efi else - echo -e "o\nn\np\n1\n\n\nw" | fdisk /dev/$drive + echo -e "o\nn\np\n1\n\n\nw" | fdisk $drive setup_btrfs "${drive}1" fi else |