Skip to content
Snippets Groups Projects
Commit cd393ab9 authored by Jeffrey Tolar's avatar Jeffrey Tolar
Browse files

Fix x86 generation

parent 237f7d29
No related branches found
No related tags found
No related merge requests found
......@@ -90,9 +90,9 @@ sudo mount ${loopdev}p1 root/
trap "sudo umount ${loopdev}p1 ; sudo losetup -d $loopdev" EXIT
if [[ $ARCH == "x86_64" ]]; then
sudo pacstrap -c -G root/ "${PACKAGES[@]}"
sudo pacstrap -C pacman-x86_64.conf -c -G root/ "${PACKAGES[@]}"
else
sudo linux32 pacstrap -c -G root/ "${PACKAGES[@]}" -- --arch=i686
sudo linux32 pacstrap -C pacman-x86.conf -c -G root/ "${PACKAGES[@]}" --arch=i686
fi
sudo arch-chroot root/ <<chrootEOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment