From 491495d9a36bb305a0c66c77801a81c2371ffd30 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Wed, 6 Feb 2008 12:50:57 -0300 Subject: [PATCH] Added stub boot_cd_*() functions to lib/boot/boot.in --- lib/boot/boot.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/boot/boot.in b/lib/boot/boot.in index d263a26..19995d2 100644 --- a/lib/boot/boot.in +++ b/lib/boot/boot.in @@ -46,5 +46,11 @@ else echo_status "boot: using $bootloader." fi +# stub boot_cd_*() functions +# +boot_cd_pre() { echo_status "No specific boot_cd_pre() available."; } +boot_cd_add() { echo_status "No specific boot_cd_add() available."; } +boot_cd_post() { echo_status "No specific boot_cd_post() available."; } + . "package/$bootloader/boot/boot.in"