|
|
|
@@ -1,16 +1,12 @@
|
|
|
|
|
# make initramfs
|
|
|
|
|
|
|
|
|
|
chroot $MOUNTDIR depmod -a ${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
|
|
|
|
|
|
|
|
## FIXME: ONLY FOR TEST; REMOVE THE FOLLOWING LINE!
|
|
|
|
|
#cp /tmp/unionfs.ko $MOUNTDIR/lib/modules/${KERNEL_MAJVER}${KERNEL_EXTRAVER}/kernel/fs/unionfs/unionfs.ko
|
|
|
|
|
#cp /tmp/squashfs.ko $MOUNTDIR/lib/modules/${KERNEL_MAJVER}${KERNEL_EXTRAVER}/kernel/fs/squashfs/squashfs.ko
|
|
|
|
|
|
|
|
|
|
LANG=${LANGUAGE}_${COUNTRY} chroot $MOUNTDIR dracut \
|
|
|
|
|
--filesystems "ext3 ext4 unionfs squashfs isofs reiserfs reiser4" \
|
|
|
|
|
--nomdadmconf --nolvmconf \
|
|
|
|
|
/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img.gz \
|
|
|
|
|
${KERNEL_MAJVER}${KERNEL_EXTRAVER}
|
|
|
|
|
for K in $KERNEL_EXTRAVER $KERNEL_MORE_EXTRAVER; do
|
|
|
|
|
chroot $MOUNTDIR depmod -a ${KERNEL_MAJVER}${K}
|
|
|
|
|
LANG=${LANGUAGE}_${COUNTRY} chroot $MOUNTDIR dracut \
|
|
|
|
|
--filesystems "ext3 ext4 unionfs squashfs isofs reiserfs reiser4" \
|
|
|
|
|
--nomdadmconf --nolvmconf \
|
|
|
|
|
/boot/initramfs-${KERNEL_MAJVER}${K}.img.gz \
|
|
|
|
|
${KERNEL_MAJVER}${K}
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# add buildinfo
|
|
|
|
|
buildinfo="`cat $MOUNTDIR/etc/openmamba-release` ${PLATFORM}"
|
|
|
|
@@ -20,26 +16,50 @@ cat > $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
PROMPT 0
|
|
|
|
|
TIMEOUT 20
|
|
|
|
|
DEFAULT vesamenu.c32
|
|
|
|
|
MENU TITLE ${buildinfo} (${KERNEL_MAJVER}${KERNEL_EXTRAVER} kernel)
|
|
|
|
|
MENU TITLE ${buildinfo} (${KERNEL_MAJVER} kernel)
|
|
|
|
|
MENU BACKGROUND openmamba.png
|
|
|
|
|
MENU COLOR TITLE 1;32;49 #ff00993d #00000000 std
|
|
|
|
|
_EOF
|
|
|
|
|
|
|
|
|
|
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=792
|
|
|
|
|
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 rdshell debug
|
|
|
|
|
for K in $KERNEL_EXTRAVER $KERNEL_MORE_EXTRAVER; do
|
|
|
|
|
cat >> $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
LABEL default-${KERNEL_MAJVER}${K}
|
|
|
|
|
MENU LABEL default (${KERNEL_MAJVER}${K})
|
|
|
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${K}
|
|
|
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${K}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=792
|
|
|
|
|
_EOF
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "MENU SEPARATOR" >> $MOUNTDIR/boot/extlinux.conf
|
|
|
|
|
for K in $KERNEL_EXTRAVER $KERNEL_MORE_EXTRAVER; do
|
|
|
|
|
cat >> $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
LABEL vga800-${KERNEL_MAJVER}${K}
|
|
|
|
|
MENU LABEL VGA 800x600 no modeset (${KERNEL_MAJVER}${K})
|
|
|
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${K}
|
|
|
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${K}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=789 nomodeset
|
|
|
|
|
_EOF
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
for K in $KERNEL_EXTRAVER $KERNEL_MORE_EXTRAVER; do
|
|
|
|
|
cat >> $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
LABEL vga1024-${KERNEL_MAJVER}${K}
|
|
|
|
|
MENU LABEL VGA 1024x768 no modeset (${KERNEL_MAJVER}${K})
|
|
|
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${K}
|
|
|
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${K}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 quiet splash vga=792 nomodeset
|
|
|
|
|
_EOF
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "MENU SEPARATOR" >> $MOUNTDIR/boot/extlinux.conf
|
|
|
|
|
for K in $KERNEL_EXTRAVER $KERNEL_MORE_EXTRAVER; do
|
|
|
|
|
cat >> $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
LABEL debug-${KERNEL_MAJVER}${K}
|
|
|
|
|
MENU LABEL ${KERNEL_MAJVER}${K} Debug mode
|
|
|
|
|
kernel /boot/vmlinuz-${KERNEL_MAJVER}${K}
|
|
|
|
|
append initrd=/boot/initramfs-${KERNEL_MAJVER}${K}.img.gz root=live:/openmamba_live/openmamba-live.iso ro selinux=0 rddebug rdshell debug
|
|
|
|
|
_EOF
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
cat >> $MOUNTDIR/boot/extlinux.conf << _EOF
|
|
|
|
|
MENU SEPARATOR
|
|
|
|
|
LABEL memtest
|
|
|
|
|
MENU LABEL Memory test
|
|
|
|
@@ -62,7 +82,7 @@ cp -a $MOUNTDIR/boot $MOUNTDIR2
|
|
|
|
|
cp $MOUNTDIR/usr/share/syslinux/vesamenu.c32 $MOUNTDIR2/boot/
|
|
|
|
|
|
|
|
|
|
# copy static files for specific platform
|
|
|
|
|
[ -e $TARGETDIR/platforms/$PLATFORM/root ] &&
|
|
|
|
|
[ -e $TARGETDIR/platforms/$PLATFORM/root ] &&
|
|
|
|
|
cp -a $TARGETDIR/platforms/$PLATFORM/root/* $MOUNTDIR2/
|
|
|
|
|
|
|
|
|
|
# copy localized static files for specific platform
|
|
|
|
|