summaryrefslogtreecommitdiff
path: root/scripts/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install.sh')
-rwxr-xr-xscripts/install.sh8
1 files changed, 8 insertions, 0 deletions
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 -)