Hi,
I found a small problem in lh_binary_grub for the amd64 architecture. The stage2_eltorito file for this architecture is in a different place than for the i386 one.

I attach a possible patch.
All the best,
Antonio Amorim
([EMAIL PROTECTED])
--- helpers/lh_binary_grub	2007-04-21 22:16:57.000000000 +0100
+++ /usr/bin/lh_binary_grub	2007-04-20 10:36:33.000000000 +0100
@@ -176,12 +176,25 @@
 # Copyring grub
 case ${LIVE_BINARY_IMAGE} in
 	iso)
+	  case  ${LIVE_ARCHITECTURE} in 
+	  amd64)
+		cp chroot/usr/lib/grub/x86_64-pc/stage2_eltorito binary/boot/grub
+	        ;;
+	  i386)
 		cp chroot/usr/lib/grub/i386-pc/stage2_eltorito binary/boot/grub
 		;;
-
+          esac
+	  ;;
 	usb|hdd)
+	  case  ${LIVE_ARCHITECTURE} in 
+        	  amd64)
+		cp chroot/usr/lib/grub/x86_64-pc/stage1 chroot/usr/lib/grub/x86_64-pc/stage2 binary/boot/grub
+		;;
+	         i386)
 		cp chroot/usr/lib/grub/i386-pc/stage1 chroot/usr/lib/grub/i386-pc/stage2 binary/boot/grub
 		;;
+		esac
+	;;
 esac
 
 # Copying splash screen
_______________________________________________
Debian-live-devel mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/debian-live-devel

Reply via email to