[F] Fix script
This commit is contained in:
parent
848cc3ac94
commit
150d60168d
2 changed files with 6 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -7,3 +7,5 @@ test apk.apk
|
||||||
test apk1.apk
|
test apk1.apk
|
||||||
xnee.xns
|
xnee.xns
|
||||||
out.txt
|
out.txt
|
||||||
|
boot
|
||||||
|
root
|
||||||
|
|
8
raspberry_arch-install.sh
Normal file → Executable file
8
raspberry_arch-install.sh
Normal file → Executable file
|
@ -33,17 +33,17 @@ echo "Create and mount the FAT filesystem..."
|
||||||
|
|
||||||
sleep 5
|
sleep 5
|
||||||
|
|
||||||
mkfs.vfat /dev/sdX1
|
mkfs.vfat ${device}${bootpartitionnummer}
|
||||||
mkdir boot
|
mkdir boot
|
||||||
mount /dev/sdX1 boot
|
mount ${device}${bootpartitionnummer} boot
|
||||||
|
|
||||||
echo "Create and mount the ext4 filesystem..."
|
echo "Create and mount the ext4 filesystem..."
|
||||||
|
|
||||||
sleep 5
|
sleep 5
|
||||||
|
|
||||||
mkfs.ext4 /dev/sdX2
|
mkfs.ext4 ${device}${rootpartitionnummer}
|
||||||
mkdir root
|
mkdir root
|
||||||
mount /dev/sdX2 root
|
mount ${device}${rootpartitionnummer} root
|
||||||
|
|
||||||
echo "Download and extract the root filesystem..."
|
echo "Download and extract the root filesystem..."
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue