diff --git a/debian/control b/debian/control index 8050a02..eb3cc72 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,3 @@ Architecture: all Depends: ${misc:Depends}, ${python3:Depends}, efibootmgr, python3-debian, util-linux Recommends: python3-systemd Description: Automatic kernel efistub manager for UEFI - -Package: pop-boot -Architecture: all -Depends: kernelstub, systemd -Description: The fancy, magical, automatic boot package for Pop!_OS diff --git a/debian/pop-boot.postinst b/debian/pop-boot.postinst deleted file mode 100644 index 1821b57..0000000 --- a/debian/pop-boot.postinst +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -DISTRO_EFI_PATH=/boot/efi -DISTRO_LOADER_CONF_PATH=$DISTRO_EFI_PATH/loader/loader.conf -DISTRO_DFAULT_KERNEL_OPTIONS=quiet splash loglevel=0 - -if [ ! -f $DISTRO_LOADER_CONF_PATH ]; then - kernelstub \ - --esp-path "$DISTRO_EFI_PATH" \ - --options "$DISTRO_DEFAULT_KERNEL_OPTIONS" \ - --loader \ - --manage-only \ - --verbose - - bootctl install --path=$DISTRO_EFI_PATH - -else - echo "Loader configuration found in $DISTRO_LOADER_CONF_PATH, not \ -performing initial config" - -fi