[F] Fix script

This commit is contained in:
user1 2022-06-26 13:30:19 +02:00
parent 848cc3ac94
commit 150d60168d
2 changed files with 6 additions and 4 deletions

2
.gitignore vendored
View file

@ -7,3 +7,5 @@ test apk.apk
test apk1.apk
xnee.xns
out.txt
boot
root

8
raspberry_arch-install.sh Normal file → Executable file
View file

@ -33,17 +33,17 @@ echo "Create and mount the FAT filesystem..."
sleep 5
mkfs.vfat /dev/sdX1
mkfs.vfat ${device}${bootpartitionnummer}
mkdir boot
mount /dev/sdX1 boot
mount ${device}${bootpartitionnummer} boot
echo "Create and mount the ext4 filesystem..."
sleep 5
mkfs.ext4 /dev/sdX2
mkfs.ext4 ${device}${rootpartitionnummer}
mkdir root
mount /dev/sdX2 root
mount ${device}${rootpartitionnummer} root
echo "Download and extract the root filesystem..."