22 lines
410 B
Bash
22 lines
410 B
Bash
#!/bin/sh -e
|
|
|
|
version=6.12.33+deb13progress8-m68k
|
|
image_path=/boot/vmlinux-$version
|
|
|
|
if [ "$1" != configure ]; then
|
|
exit 0
|
|
fi
|
|
|
|
depmod $version
|
|
|
|
if [ -f /lib/modules/$version/.fresh-install ]; then
|
|
change=install
|
|
else
|
|
change=upgrade
|
|
fi
|
|
linux-update-symlinks $change $version $image_path
|
|
rm -f /lib/modules/$version/.fresh-install
|
|
|
|
linux-run-hooks image postinst $version $image_path -- "$@"
|
|
|
|
exit 0
|