blob: 8273a8059659c3e1016a10999107b805ca6a9dfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
# copy theme related files to binary
case "$LB_BOOTLOADER" in
grub2|burg)
;;
*)
exit 0
;;
esac
mkdir -p binary/boot/grub
cp chroot/usr/share/grub/unicode.pf2 binary/boot/grub/ || :
cp chroot/usr/share/images/grub/kanotix-logo.png binary/boot/grub/ || :
exit 0
|