19 lines
421 B
Plaintext
19 lines
421 B
Plaintext
# mkinitcpio preset file for the 'Melawy Linux' package on archiso
|
|
|
|
KNAME="xanmod"
|
|
|
|
KVER=$(ls /usr/lib/modules/ | grep $KNAME | sort -V | tail -n 1)
|
|
|
|
if [[ -z "$KVER" ]]; then
|
|
exit
|
|
fi
|
|
|
|
cp -vf "/usr/lib/modules/$KVER/vmlinuz" "/boot/vmlinuz-xanmod-anbox"
|
|
|
|
PRESETS=('archiso')
|
|
|
|
ALL_kver='/boot/vmlinuz-xanmod-anbox'
|
|
archiso_config='/etc/mkinitcpio.conf.d/archiso.conf'
|
|
|
|
archiso_image="/boot/initramfs-xanmod-anbox.img"
|