16 lines
190 B
Plaintext
16 lines
190 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# conffile still present, but flash-kernel removed
|
||
|
|
if ! which flash-kernel >/dev/null 2>&1; then
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
abi="$1"
|
||
|
|
# ignored
|
||
|
|
_initrd="$2"
|
||
|
|
|
||
|
|
exec flash-kernel "$abi"
|
||
|
|
|