diff options
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/binary_hdd | 6 | ||||
-rwxr-xr-x | scripts/build/source_hdd | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd index c5fdf70df..9f075212b 100755 --- a/scripts/build/binary_hdd +++ b/scripts/build/binary_hdd @@ -199,21 +199,25 @@ case "${LB_BINARY_FILESYSTEM}" in ext2|ext3|ext4) MKFS="${LB_BINARY_FILESYSTEM}" MKFS_OPTIONS="-L ${LB_HDD_LABEL} -m 0" + MOUNT_OPTIONS="" ;; fat16) MKFS="vfat" MKFS_OPTIONS="-F 16 -n ${LB_HDD_LABEL}" + MOUNT_OPTIONS="" ;; fat32) MKFS="vfat" MKFS_OPTIONS="-F 32 -n ${LB_HDD_LABEL}" + MOUNT_OPTIONS="" ;; ntfs) MKFS="ntfs" MKFS_OPTIONS="-L ${LB_HDD_LABEL}" + MOUNT_OPTIONS="-t ntfs-3g" ;; esac @@ -234,7 +238,7 @@ case "${LB_BINARY_FILESYSTEM}" in esac mkdir -p chroot/binary.tmp -mount ${FREELO} chroot/binary.tmp +mount ${MOUNT_OPTIONS} ${FREELO} chroot/binary.tmp cp -r -T ${CP_OPTIONS} binary/ chroot/binary.tmp FIXME() diff --git a/scripts/build/source_hdd b/scripts/build/source_hdd index 77b27f860..2bac010b7 100755 --- a/scripts/build/source_hdd +++ b/scripts/build/source_hdd @@ -105,28 +105,32 @@ case "${LB_BINARY_FILESYSTEM}" in ext2|ext3|ext4) MKFS="${LB_BINARY_FILESYSTEM}" MKFS_OPTIONS="-L ${LB_HDD_LABEL} -m 0" + MOUNT_OPTIONS="" ;; fat16) MKFS="vfat" MKFS_OPTIONS="-F 16 -n ${LB_HDD_LABEL}" + MOUNT_OPTIONS="" ;; fat32) MKFS="vfat" MKFS_OPTIONS="-F 32 -n ${LB_HDD_LABEL}" + MOUNT_OPTIONS="" ;; ntfs) MKFS="ntfs" MKFS_OPTIONS="-L ${LB_HDD_LABEL}" + MOUNT_OPTIONS="-t ntfs-3g" ;; esac Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}" mkdir -p source.tmp -mount ${FREELO} source.tmp +mount ${MOUNT_OPTIONS} ${FREELO} source.tmp cp -r source/* source.tmp umount source.tmp rmdir source.tmp |