paperlined.org
apps > grub2 > recipes
document updated 13 years ago, on Apr 22, 2011
Download the main .zip, extract /rom/plpbtrom.bin, and drop it in /boot/

And then paste this into /etc/grub.d/20_plop:

#!/bin/sh
set -e

. /usr/lib/grub/grub-mkconfig_lib

prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/")"

PLOPPATH=$( make_system_path_relative_to_its_root "/boot/plpbtrom.bin" )

cat << EOF
menuentry "PLoP Boot Manager" {
    $prepare_boot_cache
    linux16 $PLOPPATH
}
EOF