From 734440e2d79f8b3948ebb067ddce2191d7f5e2bb Mon Sep 17 00:00:00 2001 From: Aditya Garg Date: Tue, 18 Jan 2022 20:55:05 +0530 Subject: [PATCH] Add safe graphics --- .github/workflows/CI.yml | 2 +- files/grub/grub.cfg | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 91a2255..825ee28 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -46,6 +46,6 @@ jobs: files: ${{ github.workspace }}/*.iso tag_name: v20.04-${{ steps.tag.outputs.tag }} draft: false - prerelease: true + prerelease: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/files/grub/grub.cfg b/files/grub/grub.cfg index e11c671..e0c63cb 100644 --- a/files/grub/grub.cfg +++ b/files/grub/grub.cfg @@ -10,6 +10,10 @@ menuentry "Try Ubuntu FS without installing" { linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- initrd /casper/initrd } +menuentry "Try Ubuntu FS without installing (Safe Graphics)" { + linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro nomodeset efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- + initrd /casper/initrd +} menuentry "Try Ubuntu FS without installing (blacklist=thunderbolt)" { linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- modprobe.blacklist=thunderbolt initrd /casper/initrd @@ -18,6 +22,10 @@ menuentry "Install Ubuntu FS" { linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- initrd /casper/initrd } +menuentry "Install Ubuntu FS (Safe Graphics)" { + linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity nomodeset efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- + initrd /casper/initrd +} menuentry "Install Ubuntu FS (blacklist=thunderbolt)" { linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity efi=noruntime pcie_ports=compat acpi=force intel_iommu=on iommu=pt --- modprobe.blacklist=thunderbolt initrd /casper/initrd