10 lines
273 B
Bash
Executable File
10 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
# vim:ts=2:sw=2:et
|
|
|
|
if [ -n "$INITRAMFS_TOOLS_KERNEL_HOOK" ]; then
|
|
echo "raspi3-firmware: deferring update via initramfs-tools (hook will be called later by the kernel package)"
|
|
exit 0
|
|
fi
|
|
|
|
DEB_MAINT_PARAMS=configure /etc/kernel/postinst.d/z50-raspi3-firmware
|