From 2d94f79d0acc5405bf5e8ce9c580dda1c6e91287 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 18 Jul 2012 22:27:30 +0200 Subject: Adding support for ntfs as binary filesystem when using syslinux. --- scripts/build/lb_source_debian | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'scripts/build/lb_source_debian') diff --git a/scripts/build/lb_source_debian b/scripts/build/lb_source_debian index eb4b11ed8..dcde7a477 100755 --- a/scripts/build/lb_source_debian +++ b/scripts/build/lb_source_debian @@ -55,13 +55,30 @@ Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' > source-selection.tx cat >> source-selection.txt << EOF ${LB_BOOTLOADER} live-build -dosfstools genisoimage parted squashfs-tools mtd-tools EOF +case "${LB_BINARY_FILESYSTEM}" in + fat*) + echo "dosfstools" >> source-selection.txt + ;; + + ntfs) + case "${LB_DISTRIBUTION}" in + squeeze) + echo "ntfsprogs" >> source-selection.txt + ;; + + *) + echo "ntfs-3g" >> source-selection.txt + ;; + esac + ;; +esac + case "${LB_ARCHITECTURES}" in amd64|i386) -- cgit v1.2.3