diff options
author | Peter Jones <pjones@redhat.com> | 2008-04-25 15:55:54 -0400 |
---|---|---|
committer | Peter Jones <pjones@vroomfondel.internal.datastacks.com> | 2008-04-25 15:55:54 -0400 |
commit | 1ebe2f96dab7a74c121c0d79d2a856e36987d774 (patch) | |
tree | cf23ac7dcfe418ffa063bed1e7fd8dd625ef5c8a | |
parent | 4c7a018bfe8265b2e82cb99a03222b528cd18069 (diff) | |
download | anaconda-1ebe2f96dab7a74c121c0d79d2a856e36987d774.tar.gz anaconda-1ebe2f96dab7a74c121c0d79d2a856e36987d774.tar.xz anaconda-1ebe2f96dab7a74c121c0d79d2a856e36987d774.zip |
Label the efi boot filesystem on ia64 as well.
-rw-r--r-- | scripts/mk-images.ia64 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/mk-images.ia64 b/scripts/mk-images.ia64 index 78ad647ea..df4772fb7 100644 --- a/scripts/mk-images.ia64 +++ b/scripts/mk-images.ia64 @@ -95,8 +95,7 @@ prepareBootImage() { BOOTDISKSIZE=$(du -kcs $MBD_BOOTTREE_TMP | tail -n1 | awk '{print $1}') BOOTDISKSIZE=$(expr $BOOTDISKSIZE + 100) echo "The size of the boot.img dosfs is $BOOTDISKSIZE" - dd if=/dev/zero bs=1k count=$BOOTDISKSIZE of=$MBD_FILENAME 2>/dev/null - mkdosfs -C $MBD_FILENAME $BOOTDISKSIZE >/dev/null + mkdosfs -n ANACONDA -C $MBD_FILENAME $BOOTDISKSIZE >/dev/null mount -o loop -t vfat $MBD_FILENAME $MBD_BOOTTREE cp -R $MBD_BOOTTREE_TMP/* $MBD_BOOTTREE } |