summaryrefslogtreecommitdiffstats
path: root/util/grub.d/41_custom.in
blob: a08363da18e92de9c34a514569d09c5bf1966236 (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