* Add the DEFAULT64 handling to boot-amd64 as well as boot-i386; needed

in both so that things are setup the same regardless of the order in
    which the boot-$arch scripts are called
This commit is contained in:
Steve McIntyre 2007-03-13 01:06:07 +00:00
parent ec87877896
commit 9006e6dd31
2 changed files with 4 additions and 0 deletions

3
debian/changelog vendored
View File

@ -47,6 +47,9 @@ debian-cd (3.0.1) UNRELEASED; urgency=low
[ Steve McIntyre ]
* Fix path for creating splash image in boot-amd64. Closes: #413850.
* Add the DEFAULT64 handling to boot-amd64 as well as boot-i386; needed
in both so that things are setup the same regardless of the order in
which the boot-$arch scripts are called
-- Frans Pop <fjp@debian.org> Sat, 10 Mar 2007 22:40:34 +0100

View File

@ -151,6 +151,7 @@ if [ -e boot$N/isolinux/isolinux.cfg ] ; then
cat boot$N/isolinux-amd64/isolinux.cfg | awk '
/^LABEL/ { printf("LABEL amd64-%s\n", $2) }
/^DEFAULT/ { printf("DEFAULT64 amd64-%s\n", $2) }
/kernel/ { print $0 }
/append/ { print $0 }' >> boot$N/isolinux/isolinux.cfg
else