summaryrefslogtreecommitdiff
path: root/util/grub.d/41_custom.in
blob: fcc21a987e10e1efbe530c066257b7c67249f533 (plain)
1
2
3
4
5
6
7
8
9
#!/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