diff options
author | Daniel Baumann <daniel@debian.org> | 2010-11-02 11:41:51 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-11-02 11:41:51 +0100 |
commit | 542bf033b4af1266fbdd34648b7a607825daec80 (patch) | |
tree | ae9346b7e22b88c3827ab694c2f61be56832faad | |
parent | 4b9064678c736be90615e7cf46c0686171c29293 (diff) | |
download | vyos-live-build-542bf033b4af1266fbdd34648b7a607825daec80.tar.gz vyos-live-build-542bf033b4af1266fbdd34648b7a607825daec80.zip |
Workarounding symlink on usb-hdd when including debian-installer and using vfat filesystems.
-rwxr-xr-x | scripts/build/lb_binary_debian-installer | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index b61b1368c..faef0c299 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -617,17 +617,22 @@ EOF rm -f chroot/binary.sh mv chroot/root/binary ./ - # Creating dist symlinks - for DISTRIBUTION in frozen stable testing unstable ${LB_DISTRIBUTION} - do - ln -s ${LB_DEBIAN_INSTALLER_DISTRIBUTION} binary/dists/${DISTRIBUTION} - done - - case "${LB_BINARY_IMAGES}" in - usb*) + case "${LB_BINARY_FILESYSTEM}" in + vat*) + # Creating dist directories + for DISTRIBUTION in frozen stable testing unstable ${LB_DISTRIBUTION} + do + cp -a ${LB_DEBIAN_INSTALLER_DISTRIBUTION} binary/dists/${DISTRIBUTION} + done ;; *) + # Creating dist symlinks + for DISTRIBUTION in frozen stable testing unstable ${LB_DISTRIBUTION} + do + ln -s ${LB_DEBIAN_INSTALLER_DISTRIBUTION} binary/dists/${DISTRIBUTION} + done + ln -s . binary/debian ;; esac |