diff options
author | Jesse Keating <jkeating@redhat.com> | 2009-02-11 14:50:09 -0800 |
---|---|---|
committer | Jesse Keating <jkeating@redhat.com> | 2009-02-11 14:50:09 -0800 |
commit | 87a2da135b65030a478eda39ba42b51917e478ea (patch) | |
tree | 8dd6793ca91a8333829e38e8f54032d27833e5d1 /scripts | |
parent | bc9b5f6b6a40b8c31ec4975a8eae45b968769492 (diff) | |
download | anaconda-87a2da135b65030a478eda39ba42b51917e478ea.tar.gz anaconda-87a2da135b65030a478eda39ba42b51917e478ea.tar.xz anaconda-87a2da135b65030a478eda39ba42b51917e478ea.zip |
Hardlink the initrd.img since we're linking the vmlinuz as well.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mk-images.x86 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk-images.x86 b/scripts/mk-images.x86 index bdee490f5..3e227395f 100644 --- a/scripts/mk-images.x86 +++ b/scripts/mk-images.x86 @@ -33,7 +33,7 @@ fi prepareBootTree() { (cd $BOOTDISKDIR; find . -maxdepth 1 ! -name "*.msg" ! -type d | cpio --quiet -p $MBD_BOOTTREE) - cp $MBD_FSIMAGE $MBD_BOOTTREE/initrd.img + ln $MBD_FSIMAGE $MBD_BOOTTREE/initrd.img cp $KERNELROOT/boot/vmlinuz-* $MBD_BOOTTREE/vmlinuz if [ -f $IMGPATH/usr/lib/anaconda-runtime/syslinux-vesa-splash.jpg ]; then |