Contro: tag -1 +patch I've tested this patch and it works for me...
-- Steve McIntyre, Cambridge, UK. st...@einval.com "You can't barbecue lettuce!" -- Ellie Crane
>From e5509ac1282ddd4447a8c049f26a4c182f7506c3 Mon Sep 17 00:00:00 2001 From: Steve McIntyre <st...@einval.com> Date: Wed, 17 Dec 2014 22:46:16 +0000 Subject: [PATCH 1/2] Fix for the force_efi_extra_removable debconf prompt Make the force_efi_extra_removable debconf prompt only show up when configuring grub-*efi*. Closes: #773004 --- debian/config.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/config.in b/debian/config.in index d2afbcb..27775c3 100644 --- a/debian/config.in +++ b/debian/config.in @@ -73,5 +73,9 @@ esac db_input ${priority} grub2/linux_cmdline || true db_input medium grub2/linux_cmdline_default || true -db_input low grub2/force_efi_extra_removable || true +case @PACKAGE@ in + grub-*efi*) + db_input low grub2/force_efi_extra_removable || true + ;; +esac db_go -- 2.1.3