livecd-root, livecd-gnome-root, livecd-light-root: added code to remove some documentation files to save space on CDs
This commit is contained in:
parent
0e3743b494
commit
43ad5f72f2
@ -79,4 +79,9 @@ _EOF
|
|||||||
chroot $MOUNTDIR sh /tmp/gconftool.sh
|
chroot $MOUNTDIR sh /tmp/gconftool.sh
|
||||||
rm $MOUNTDIR/tmp/gconftool.sh
|
rm $MOUNTDIR/tmp/gconftool.sh
|
||||||
|
|
||||||
|
# remove some documentation to save space on CD
|
||||||
|
for f in ChangeLog Changelog CHANGES TODO NEWS README README.txt; do
|
||||||
|
find $MOUNTDIR/usr/share/doc -name $f -exec rm -f {} \;
|
||||||
|
done
|
||||||
|
|
||||||
prelink
|
prelink
|
||||||
|
@ -61,4 +61,9 @@ rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img*
|
|||||||
# remove failsafe image to save space for livecd
|
# remove failsafe image to save space for livecd
|
||||||
rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}-failsafe.img*
|
rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}-failsafe.img*
|
||||||
|
|
||||||
|
# remove some documentation to save space on CD
|
||||||
|
for f in ChangeLog Changelog CHANGES TODO NEWS README README.txt; do
|
||||||
|
find $MOUNTDIR/usr/share/doc -name $f -exec rm -f {} \;
|
||||||
|
done
|
||||||
|
|
||||||
prelink
|
prelink
|
||||||
|
@ -51,7 +51,7 @@ sed -i -e '/^halt .*/i \
|
|||||||
sed -i -e '/^reboot .*/i \
|
sed -i -e '/^reboot .*/i \
|
||||||
/sbin/eject_cd.sh 2>&1 >/dev/null' $MOUNTDIR/etc/init.d/reboot
|
/sbin/eject_cd.sh 2>&1 >/dev/null' $MOUNTDIR/etc/init.d/reboot
|
||||||
|
|
||||||
# installer icon on root desktop
|
# installer icon on root desktop
|
||||||
# FIXME: move this somewhere else
|
# FIXME: move this somewhere else
|
||||||
mkdir -p $MOUNTDIR/root/Desktop/
|
mkdir -p $MOUNTDIR/root/Desktop/
|
||||||
cp $MOUNTDIR/usr/share/applications/openmamba-installer.desktop $MOUNTDIR/root/Desktop/
|
cp $MOUNTDIR/usr/share/applications/openmamba-installer.desktop $MOUNTDIR/root/Desktop/
|
||||||
@ -75,4 +75,9 @@ rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}.img*
|
|||||||
# remove failsafe image to save space for livecd
|
# remove failsafe image to save space for livecd
|
||||||
rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}-failsafe.img*
|
rm -f $MOUNTDIR/boot/initramfs-${KERNEL_MAJVER}${KERNEL_EXTRAVER}-failsafe.img*
|
||||||
|
|
||||||
|
# remove some documentation to save space on CD
|
||||||
|
for f in ChangeLog Changelog CHANGES TODO NEWS README README.txt; do
|
||||||
|
find $MOUNTDIR/usr/share/doc -name $f -exec rm -f {} \;
|
||||||
|
done
|
||||||
|
|
||||||
prelink
|
prelink
|
||||||
|
Loading…
Reference in New Issue
Block a user