Line 687... |
Line 687... |
687 |
#!/bin/bash
|
687 |
#!/bin/bash
|
688 |
|
688 |
|
689 |
# Copy licensing information
|
689 |
# Copy licensing information
|
690 |
cp $INSTALL_ROOT/usr/share/doc/*-release-*/GPL $LIVE_ROOT/GPL
|
690 |
cp $INSTALL_ROOT/usr/share/doc/*-release-*/GPL $LIVE_ROOT/GPL
|
691 |
|
691 |
|
692 |
cp -a \$LIVE_ROOT/isolinux/isolinux.cfg \$LIVE_ROOT/isolinux/isolinux.cfg.ori
|
- |
|
693 |
|
- |
|
694 |
# customize boot menu entries
|
692 |
# customize boot menu entries
|
695 |
grep -B4 'menu default' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/default.txt
|
693 |
grep -B4 'menu default' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/default.txt
|
696 |
grep -B3 'xdriver=vesa nomodeset' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/basicvideo.txt
|
694 |
grep -B3 'xdriver=vesa nomodeset' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/basicvideo.txt
|
697 |
grep -A3 'label check0' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/check.txt
|
695 |
grep -A3 'label check0' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/check.txt
|
698 |
grep -A2 'label memtest' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/memtest.txt
|
696 |
grep -A2 'label memtest' \$LIVE_ROOT/isolinux/isolinux.cfg > \$LIVE_ROOT/isolinux/memtest.txt
|
Line 728... |
Line 726... |
728 |
\$LIVE_ROOT/isolinux/check.txt \
|
726 |
\$LIVE_ROOT/isolinux/check.txt \
|
729 |
\$LIVE_ROOT/isolinux/install.txt \
|
727 |
\$LIVE_ROOT/isolinux/install.txt \
|
730 |
\$LIVE_ROOT/isolinux/textinstall.txt \
|
728 |
\$LIVE_ROOT/isolinux/textinstall.txt \
|
731 |
\$LIVE_ROOT/isolinux/memtest.txt \
|
729 |
\$LIVE_ROOT/isolinux/memtest.txt \
|
732 |
\$LIVE_ROOT/isolinux/localboot.txt > \$LIVE_ROOT/isolinux/isolinux.cfg
|
730 |
\$LIVE_ROOT/isolinux/localboot.txt > \$LIVE_ROOT/isolinux/isolinux.cfg
|
733 |
# rm -f \$LIVE_ROOT/isolinux/*.txt
|
731 |
rm -f \$LIVE_ROOT/isolinux/*.txt
|
734 |
|
732 |
|
735 |
EOF_postnochroot
|
733 |
EOF_postnochroot
|
736 |
|
734 |
|
737 |
# run postnochroot-install script
|
735 |
# run postnochroot-install script
|
738 |
/bin/bash -x /root/postnochroot-install 2>&1 | tee /root/postnochroot-install.log
|
736 |
/bin/bash -x /root/postnochroot-install 2>&1 | tee /root/postnochroot-install.log
|