summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2012-09-26 21:25:34 -0300
committerGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2012-09-26 21:25:39 -0300
commit340ebed2808517933e26e0d6f2bf1b6f957f03ef (patch)
treef404290ba4277112eaca65bdc0988bc8d7de51c9 /configs
parentf4eaf1f91ec680d7ac4bc09b6e2f52b22990e89a (diff)
[configs/releng] Increase efiboot.img size
* Increase size to a safe 31M, (currently we have 400K free since latest changes) * Also set a filesystem label, can be useful for future usage... Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'configs')
-rwxr-xr-xconfigs/releng/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/releng/build.sh b/configs/releng/build.sh
index 5d573a2..125be11 100755
--- a/configs/releng/build.sh
+++ b/configs/releng/build.sh
@@ -95,8 +95,8 @@ make_efiboot() {
if [[ ${arch} == "x86_64" ]]; then
mkdir -p ${work_dir}/iso/EFI/archiso
- dd of=${work_dir}/iso/EFI/archiso/efiboot.img bs=1 seek=20M count=0
- mkfs.vfat ${work_dir}/iso/EFI/archiso/efiboot.img
+ truncate -s 31M ${work_dir}/iso/EFI/archiso/efiboot.img
+ mkfs.vfat -n ARCHISO_EFI ${work_dir}/iso/EFI/archiso/efiboot.img
mkdir -p ${work_dir}/efiboot
mount ${work_dir}/iso/EFI/archiso/efiboot.img ${work_dir}/efiboot