mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-21 06:11:31 +00:00
nand-sata-install: Jessie's oudated mkfs.btrfs doesn't know quiet option
This commit is contained in:
parent
f6875b1415
commit
ad8c6954c6
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ declare -A mkopts mountopts
|
|||
mkopts[ext2]='-qF'
|
||||
mkopts[ext3]='-qF'
|
||||
mkopts[ext4]='-qF'
|
||||
mkopts[btrfs]='-qf'
|
||||
mkopts[btrfs]='-f'
|
||||
|
||||
mountopts[ext2]='defaults,noatime,nodiratime,commit=600,errors=remount-ro 0 1'
|
||||
mountopts[ext3]='defaults,noatime,nodiratime,commit=600,errors=remount-ro 0 1'
|
||||
|
@ -60,7 +60,7 @@ create_armbian()
|
|||
[[ -n $2 ]] && mount -o compress-force=zlib $2 /mnt/rootfs
|
||||
elif [[ $eMMCFilesystemChoosen == "btrfs" && $FilesystemChoosen != "btrfs" ]]; then
|
||||
[[ -n $1 ]] && mount ${1::-1}"1" /mnt/bootfs
|
||||
[[ -n $2 ]] && mount $2 /mnt/rootfs
|
||||
[[ -n $2 ]] && mount -o compress-force=zlib $2 /mnt/rootfs
|
||||
else
|
||||
[[ -n $2 ]] && mount $2 /mnt/rootfs
|
||||
[[ -n $1 ]] && mount $1 /mnt/bootfs
|
||||
|
|
Loading…
Add table
Reference in a new issue