#!/bin/bash -e

# Play nice when run under debconf.
exec </dev/null >&2

abi=$1
target=/boot/firmware

rm ${target}/vmlinuz
rm ${target}/*.dtb
rm -r ${target}/overlays

exit 0
