Browse Source

Changed livecd output format to use boot_cd_*() instead of arch_boot_cd_*()

karasz/new-early
Alejandro Mery 17 years ago
parent
commit
c3685c62d6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      target/share/livecd/build_initrd.sh

+ 3
- 3
target/share/livecd/build_initrd.sh

@ -33,7 +33,7 @@ chmod +x initramfs/{init,init2}
# For each available kernel: # For each available kernel:
# #
arch_boot_cd_pre $isofsdir
boot_cd_pre $isofsdir
for x in `egrep 'X .* KERNEL .*' $base/config/$config/packages | for x in `egrep 'X .* KERNEL .*' $base/config/$config/packages |
cut -d ' ' -f 5` ; do cut -d ' ' -f 5` ; do
@ -49,9 +49,9 @@ for x in `egrep 'X .* KERNEL .*' $base/config/$config/packages |
cp $build_root/boot/$initrd $isofsdir/boot/ cp $build_root/boot/$initrd $isofsdir/boot/
extend_initrd $isofsdir/boot/$initrd $build_toolchain/initramfs extend_initrd $isofsdir/boot/$initrd $build_toolchain/initramfs
arch_boot_cd_add $isofsdir $kernelver "$boot_title" \
boot_cd_add $isofsdir $kernelver "$boot_title" \
/boot/$kernelimg /boot/$initrd /boot/$kernelimg /boot/$initrd
done done
arch_boot_cd_post $isofsdir
boot_cd_post $isofsdir

Loading…
Cancel
Save