AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 18.116.24.148


Current Path : /sbin/
Upload File :
Current File : //sbin/update-grub-gfxpayload

#! /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