You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
446 B
16 lines
446 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# don't cripple the image to be copied over
|
||
|
# NB: livecd-install has 50-restore-kernel.sh
|
||
|
[ -x /usr/sbin/live-install -o \
|
||
|
-x /usr/sbin/homeros-install -o \
|
||
|
-x /usr/sbin/luwrain-install ] && exit 0
|
||
|
|
||
|
# no need for the kernel in live root otherwise: it's been booted already
|
||
|
# NB: installkernel run by that livecd-install hook needs System.map
|
||
|
rm -f -- /boot/{initrd,vmlinuz}*
|
||
|
|
||
|
[ -x /usr/sbin/livecd-install ] || rm -f -- /boot/*
|
||
|
|
||
|
:
|