This repository has been archived on 2021-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
mudbugos/kernel/packages/prawnos-linux-image-armhf/src/debian/postinst

19 lines
354 B
Bash

#!/bin/bash
VERSION=__DEB_VERSION__
KERNEL_IMAGE=/boot/prawnos-linux-image-armhf_$VERSION_armhf
set -e
case "$1" in
configure)
/bin/install-prawnos-kernel.sh $KERNEL_IMAGE
;;
abort-upgrade|abort-remove|abort-deconfigure)
# Do nothing
;;
*)
echo "Unrecognized postinst argument '$1'"
;;
esac