blob: 9c2cfb04e9b5433b7c8941f456d9633a2928e9db (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
echo I: Create initramfs if it does not exist.
# Kernel complains about non available nls_ascii module when booting from USB pendrive
echo "nls_ascii" >> /etc/initramfs-tools/modules
update-initramfs -c -d -k `ls /boot | grep vmlinuz- | sed 's/vmlinuz-//g'`
|