mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-21 07:11:33 +00:00

Signed-off-by: Florian La Roche <Florian.LaRoche@gmail.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
10 lines
215 B
Bash
10 lines
215 B
Bash
#!/bin/sh
|
|
cat <<EOF
|
|
if [ -f \${config_directory}/custom.cfg ]; then
|
|
source \${config_directory}/custom.cfg
|
|
elif [ -z "\${config_directory}" -a -f \$prefix/custom.cfg ]; then
|
|
source \$prefix/custom.cfg
|
|
fi
|
|
EOF
|
|
|