summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/modules/install_configure11
1 files changed, 8 insertions, 3 deletions
diff --git a/backend/modules/install_configure b/backend/modules/install_configure
index f24be35..b80589d 100644
--- a/backend/modules/install_configure
+++ b/backend/modules/install_configure
@@ -90,10 +90,15 @@ EOF
esac
# if build with debpool install selected packages
+ # make a distinction between uefi and legacy packages
+ # TODO implement ia32
if [ -d /run/live/medium/debian ]; then
- cp -f /run/live/medium/debian/pool/main/g/grub2/*.deb "$TARGET/tmp/"
-# cp -f /run/live/medium/debian/pool/main/m/mokutil/*.deb "$TARGET/tmp/"
-# cp -f /run/live/medium/debian/pool/main/r/refind/*.deb "$TARGET/tmp/"
+ if [ -d /sys/firmware/efi/efivars ]; then
+ cp -f /run/live/medium/debian/pool/main/g/grub2/*.deb "$TARGET/tmp/"
+ #cp -f /run/live/medium/debian/pool/main/m/mokutil/*.deb "$TARGET/tmp/"
+ #cp -f /run/live/medium/debian/pool/main/r/refind/*.deb "$TARGET/tmp/"
+ fi
+ #cp -f /run/live/medium/debian/pool/main/o/openssh/*.deb "$TARGET/tmp/"
ls "$TARGET/tmp/" >/tmp/target.log
fi