blob: ed1fce75fc0f5121eba0da545d7bc9788fbef4c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extlinux_warning() {
echo "==> WARNING: Remember to set up your kernels in /boot/extlinux/extlinux.conf"
}
post_install() {
extlinux_warning
}
post_upgrade() {
extlinux_warning
}
|