[Debian-live-changes] r1697 - dists/trunk/live-helper/helpers

daniel at alioth.debian.org daniel at alioth.debian.org
Thu May 24 15:11:40 UTC 2007


Author: daniel
Date: 2007-05-24 15:11:40 +0000 (Thu, 24 May 2007)
New Revision: 1697

Modified:
   dists/trunk/live-helper/helpers/lh_binary_debian-installer
   dists/trunk/live-helper/helpers/lh_binary_linux-image
   dists/trunk/live-helper/helpers/lh_binary_memtest
Log:


Modified: dists/trunk/live-helper/helpers/lh_binary_debian-installer
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-05-24 15:04:16 UTC (rev 1696)
+++ dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-05-24 15:11:40 UTC (rev 1697)
@@ -67,7 +67,14 @@
 		;;
 
 	usb-hdd|hdd)
-		DESTDIR="binary/install"
+		# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
+		if [ "${LIVE_DISTRIBUTION}" = "etch" ] || [ "${LIVE_DISTRIBUTION}" = "lenny" ]
+		then
+			DESTDIR="binary"
+		else
+			DESTDIR="binary/install"
+		fi
+
 		DESTDIR_INSTALLER="hd-media"
 		;;
 esac

Modified: dists/trunk/live-helper/helpers/lh_binary_linux-image
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_linux-image	2007-05-24 15:04:16 UTC (rev 1696)
+++ dists/trunk/live-helper/helpers/lh_binary_linux-image	2007-05-24 15:11:40 UTC (rev 1697)
@@ -60,7 +60,15 @@
 		;;
 
 	usb-hdd|hdd)
-		DESTDIR="binary/live"
+		# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
+		if [ "${LIVE_DISTRIBUTION}" = "etch" ] || [ "${LIVE_DISTRIBUTION}" = "lenny" ]
+		then
+			DESTDIR_LIVE="binary"
+			DESTDIR_INSTALL="binary"
+		else
+			DESTDIR_LIVE="binary/live"
+			DESTDIR_INSTALL="binary/install"
+		fi
 		;;
 esac
 

Modified: dists/trunk/live-helper/helpers/lh_binary_memtest
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_memtest	2007-05-24 15:04:16 UTC (rev 1696)
+++ dists/trunk/live-helper/helpers/lh_binary_memtest	2007-05-24 15:11:40 UTC (rev 1697)
@@ -82,7 +82,15 @@
 		;;
 
 	usb-hdd|hdd)
-		DESTDIR="binary/live"
+		# Workaround for syslinux (<< 3.36) which doesn't support long file/path names
+		if [ "${LIVE_DISTRIBUTION}" = "etch" ] || [ "${LIVE_DISTRIBUTION}" = "lenny" ]
+		then
+			DESTDIR_LIVE="binary"
+			DESTDIR_INSTALL="binary"
+		else
+			DESTDIR_LIVE="binary/live"
+			DESTDIR_INSTALL="binary/install"
+		fi
 		;;
 esac
 




More information about the Debian-live-changes mailing list