blob: 8aff2669931343a5f710367160c8c64eca50a497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extlinux_warning() {
echo "==> WARNING: U-Boot uses Extlinux support to boot up. For setting it up, edit /boot/extlinux/extlinux.conf"
}
post_install() {
extlinux_warning
}
post_upgrade() {
extlinux_warning
}
|