From 372abf8746fd98990e0907a26d120c76139c5998 Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Thu, 2 Feb 2017 12:32:26 -0800 Subject: [PATCH] Allow Virtual to update to Generic --- projects/Generic/filesystem/usr/share/bootloader/canupdate.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 projects/Generic/filesystem/usr/share/bootloader/canupdate.sh diff --git a/projects/Generic/filesystem/usr/share/bootloader/canupdate.sh b/projects/Generic/filesystem/usr/share/bootloader/canupdate.sh new file mode 100644 index 0000000000..0e4f1fac42 --- /dev/null +++ b/projects/Generic/filesystem/usr/share/bootloader/canupdate.sh @@ -0,0 +1,2 @@ +# Allow upgrades from Virtual to Generic +[ "$1" = "Virtual.x86_64" ] && exit 0 || exit 1