summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-07-09 11:21:18 -0400
committerChris Lumens <clumens@redhat.com>2008-07-09 11:21:18 -0400
commit08c276104f8c0fa2ee97f6472faf38fdd09ff9fa (patch)
tree451f2df8126c53ceb52484d12f073fc453eaea55 /scripts
parent6a9b978262a6c184a70648b4ca67fc4745a6d89b (diff)
downloadanaconda-08c276104f8c0fa2ee97f6472faf38fdd09ff9fa.tar.gz
anaconda-08c276104f8c0fa2ee97f6472faf38fdd09ff9fa.tar.xz
anaconda-08c276104f8c0fa2ee97f6472faf38fdd09ff9fa.zip
Add the MD5 sum to the boot.iso to avoid errors in loader (#453698).
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mk-images.ia641
-rw-r--r--scripts/mk-images.ppc1
-rw-r--r--scripts/mk-images.x861
3 files changed, 3 insertions, 0 deletions
diff --git a/scripts/mk-images.ia64 b/scripts/mk-images.ia64
index df4772fb7..e5718b593 100644
--- a/scripts/mk-images.ia64
+++ b/scripts/mk-images.ia64
@@ -182,5 +182,6 @@ __EOT__
doPostImages() {
if [ -n "$BOOTISO" ]; then
mkisofs -quiet -o $TOPDESTPATH/images/$BOOTISO -b boot.img -no-emul-boot -R -J -V "$PRODUCT" -T -graft-points boot.img=$TOPDESTPATH/images/boot.img images/stage2.img=$TOPDESTPATH/images/stage2.img
+ implantisomd5 $TOPDESTPATH/images/$BOOTISO
fi
}
diff --git a/scripts/mk-images.ppc b/scripts/mk-images.ppc
index 6dd5d884f..aa421ef0b 100644
--- a/scripts/mk-images.ppc
+++ b/scripts/mk-images.ppc
@@ -175,5 +175,6 @@ doPostImages() {
-map $BOOTDISKDIR/mapping -magic $BOOTDISKDIR/magic \
-no-desktop -allow-multidot -graft-points $TOPDESTPATH/isopath \
images/stage2.img=$TOPDESTPATH/images/stage2.img
+ implantisomd5 $TOPDESTPATH/images/$BOOTISO
rm -rf $TOPDESTPATH/isopath
}
diff --git a/scripts/mk-images.x86 b/scripts/mk-images.x86
index 6234ec66f..50d15db0c 100644
--- a/scripts/mk-images.x86
+++ b/scripts/mk-images.x86
@@ -159,6 +159,7 @@ __EOT__
doPostImages() {
if [ -n "$BOOTISO" ]; then
mkisofs -quiet -o $TOPDESTPATH/images/$BOOTISO -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -R -J -V "$PRODUCT" -T -graft-points isolinux=$TOPDESTPATH/isolinux images/stage2.img=$TOPDESTPATH/images/stage2.img
+ implantisomd5 $TOPDESTPATH/images/$BOOTISO
fi
}