/usr/sbin/update-grub-gfxpayload is in grub-gfxpayload-lists 0.7.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /bin/sh
set -e
mkdir -p /boot/grub
for x in /usr/share/grub-gfxpayload-lists/blacklist/*; do
case $x in
*~|*/\#*\#|*.dpkg-*)
continue
;;
esac
[ -e "$x" ] || continue
cat "$x"
done >/boot/grub/gfxblacklist.txt.new
mv /boot/grub/gfxblacklist.txt.new /boot/grub/gfxblacklist.txt
exit 0
|