Further logic fixing in boot-x86: amd64 should now work
This commit is contained in:
parent
1576bdc163
commit
5655b191d5
|
@ -64,6 +64,7 @@ debian-cd (3.0.3) UNRELEASED; urgency=low
|
|||
|
||||
[ Steve McIntyre ]
|
||||
* Fix boot-x86 shell syntax so it runs
|
||||
* Further logic fixing in boot-x86: amd64 should now work
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Tue, 07 Aug 2007 18:57:05 -0700
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
. $BASEDIR/tools/boot/$DI_CODENAME/common.sh
|
||||
|
||||
set -e
|
||||
#set -x
|
||||
set -x
|
||||
|
||||
N=$1
|
||||
CDDIR=$2
|
||||
|
@ -209,11 +209,10 @@ if [ "$THISTYPE" = "isolinux" ]; then
|
|||
|
||||
else
|
||||
if [ "$ARCH" = amd64 ]; then
|
||||
mkdir -p boot$N/isolinux
|
||||
mv -f boot$N/isolinux-amd64/* boot$N/isolinux
|
||||
rm -rf boot$N/isolinux-amd64
|
||||
else
|
||||
rm -rf boot$N/isolinux-amd64
|
||||
fi
|
||||
rm -rf boot$N/isolinux-amd64
|
||||
fi
|
||||
|
||||
if [ "$SPLASHPNG" ] ; then
|
||||
|
|
Loading…
Reference in New Issue