From d0970e5928748c07e023d2cf7efc93af716500ec Mon Sep 17 00:00:00 2001 From: Thorsten Glaser Date: Sat, 27 Sep 2014 22:49:08 +0200 Subject: create the data filesystem --- scripts/install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 39b5e7924..39d84c6be 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -493,6 +493,14 @@ case $target { (( quiet )) || print "Creating filesystem on ${rootpart}..." (( noformat )) || create_fs "$rootpart" ADKROOT ext4 +if (( datafssz )); then + (( quiet )) || print "Creating filesystem on ${datapart}..." + (( noformat )) || create_fs "$datapart" ADKDATA ext4 + mount_fs "$datapart" "$D" ext4 + mkdir -m0755 "$D/mpd" "$D/xbmc" + umount "$D" +fi + (( quiet )) || print Extracting installation archive... mount_fs "$rootpart" "$R" ext4 gzip -dc "$src" | (cd "$R"; tar -xpf -) -- cgit v1.2.3