16 lines
190 B
Bash
Executable File
16 lines
190 B
Bash
Executable File
#!/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"
|
|
|