blob: 36464ee08db0d4ee4e6bcaa17713142613c35670 (
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/
|