76 lines
2.8 KiB
Bash
76 lines
2.8 KiB
Bash
# make initramfs
|
|
|
|
chroot $MOUNTDIR depmod -a ${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
|
|
LANG=${LANGUAGE}_${COUNTRY} chroot $MOUNTDIR dracut \
|
|
-a dmsquash-live -o squash-live \
|
|
--filesystems "autofs4 ext3 ext4 overlay squashfs isofs reiserfs" \
|
|
--nomdadmconf --nolvmconf \
|
|
/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz \
|
|
${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
|
|
# add buildinfo
|
|
buildinfo="`cat $MOUNTDIR/etc/openmamba-release` ${PLATFORM}"
|
|
|
|
# configure extlinux boot loader
|
|
cat > $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
PROMPT 0
|
|
TIMEOUT 20
|
|
DEFAULT vesamenu.c32
|
|
MENU TITLE ${buildinfo} (${KERNEL_MAJVER}${KERNEL_EXTRAVER} kernel)
|
|
MENU BACKGROUND openmamba.png
|
|
MENU COLOR TITLE 1;32;49 #ff00993d #00000000 std
|
|
|
|
LABEL kms
|
|
MENU LABEL default
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=789
|
|
LABEL vga1024
|
|
MENU LABEL VGA 1024x768 (no modeset)
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=792 nomodeset
|
|
LABEL vga800
|
|
MENU LABEL VGA 800x600 (no modeset)
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=789 nomodeset
|
|
LABEL debug
|
|
MENU LABEL Debug mode
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 rddebug nomodeset
|
|
MENU SEPARATOR
|
|
LABEL memtest
|
|
MENU LABEL Memory test
|
|
kernel memtest
|
|
MENU SEPARATOR
|
|
MENU SEPARATOR
|
|
LABEL -
|
|
MENU LABEL $PRODUCT_NAME build:`date -R`
|
|
MENU DISABLE
|
|
_EOF
|
|
|
|
# rename memtest86+.bin because syslinux/extlinux consider .bin extension as
|
|
# other thing
|
|
mv $MOUNTDIR/boot/memtest86+.bin $MOUNTDIR/boot/memtest
|
|
|
|
# copy /boot directory to final root
|
|
cp -a --no-preserve=ownership $MOUNTDIR/boot $MOUNTDIR2
|
|
|
|
# copy syslinux addons to final root /boot dir
|
|
cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/
|
|
|
|
# copy static files for specific platform
|
|
[ -e $TARGETDIR/platforms/$PLATFORM/root ] &&
|
|
cp -a --no-preserve=ownership $TARGETDIR/platforms/$PLATFORM/root/* $MOUNTDIR2/
|
|
|
|
# copy localized static files for specific platform
|
|
[ "$LANGUAGE" -a -e $TARGETDIR/platforms/$PLATFORM/root-$LANGUAGE ] &&
|
|
cp -a --no-preserve=ownership $TARGETDIR/platforms/$PLATFORM/root-$LANGUAGE/* $MOUNTDIR2/
|
|
|
|
## add buildinfo
|
|
#buildinfo="`cat $MOUNTDIR/etc/openmamba-release` [$PRODUCT_NAME build:`date +%c`]"
|
|
#sed -i "s|%buildinfo%|$buildinfo|" $MOUNTDIR2/boot/isolinux/menu.txt
|
|
|
|
MOUNTDIR=$MOUNTDIR2 produce_media $MEDIA_NAME
|
|
|
|
exit 0
|