Linux mint 22 - Wilma

This commit is contained in:
Aditya Garg
2024-07-27 16:28:54 +05:30
parent b932c52787
commit 6075c2982a
7 changed files with 23 additions and 23 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ on:
jobs:
Cinnamon:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
@@ -71,7 +71,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Mate:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
@@ -131,7 +131,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
XFCE:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
+2 -2
View File
@@ -62,8 +62,8 @@ case "$flavinput" in
;;
esac
iso="linuxmint-21.3-${flavour}-${latestkver}-t2-jammy"
ver="Linux Mint 21.3 \"Virginia\" - ${flavourcap} Edition"
iso="linuxmint-22-${flavour}-${latestkver}-t2-noble"
ver="Linux Mint 22 \"Wilma\" - ${flavourcap} Edition"
if [ ! -f ${iso}.iso.00 ]; then
echo -e "\nDownloading Part 1 for ${ver}"
+1 -1
View File
@@ -37,7 +37,7 @@ done
echo >&2 "===]> Info: Create diskdefines... "
cat <<EOF >"${IMAGE_PATH}"/README.diskdefines
#define DISKNAME Linux Mint MBP ${MINT_VERSION} "Virginia" - Beta amd64
#define DISKNAME Linux Mint MBP ${MINT_VERSION} "Wilma" - Beta amd64
#define TYPE binary
#define TYPEbinary 1
#define ARCH amd64
+5 -5
View File
@@ -5,11 +5,11 @@ ROOT_PATH=$(pwd)
WORKING_PATH=/root/work
CHROOT_PATH="${WORKING_PATH}/chroot"
IMAGE_PATH="${WORKING_PATH}/image"
CODENAME=jammy
CODENAME=noble
FLAVOUR=$1
MINT_VERSION=21.3
KERNEL_VERSION=6.9.7
PKGREL=4
MINT_VERSION=22
KERNEL_VERSION=6.9.9
PKGREL=1
sed -i "s/KVER/${KERNEL_VERSION}/g" $(pwd)/files/chroot_build.sh
sed -i "s/PREL/${PKGREL}/g" $(pwd)/files/chroot_build.sh
@@ -40,7 +40,7 @@ apt-get install -y -qq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="
wget
echo >&2 "===]> Info: Start loop... "
for ALTERNATIVE in t2-jammy
for ALTERNATIVE in t2-${CODENAME}
do
echo >&2 "===]> Info: Start building ${ALTERNATIVE}... "
+1 -1
View File
@@ -2,7 +2,7 @@
set -eu -o pipefail
DOCKER_IMAGE=ubuntu:22.04
DOCKER_IMAGE=ubuntu:24.04
docker pull ${DOCKER_IMAGE}
docker run \
+5 -5
View File
@@ -52,13 +52,13 @@ echo >&2 "===]> Info: Remove unused applications ... "
apt-get purge -y -qq \
linux-generic \
linux-headers-5.15.0-72 \
linux-headers-5.15.0-72-generic \
linux-headers-6.8.0-31 \
linux-headers-6.8.0-31-generic \
linux-headers-generic \
linux-image-5.15.0-72-generic \
linux-image-6.8.0-31-generic \
linux-image-generic \
linux-modules-5.15.0-72-generic \
linux-modules-extra-5.15.0-72-generic
linux-modules-6.8.0-31-generic \
linux-modules-extra-6.8.0-31-generic
apt-get autoremove -y
+6 -6
View File
@@ -6,27 +6,27 @@ insmod all_video
set default="0"
set timeout=30
menuentry "Try Linux Mint Virginia without installing" {
menuentry "Try Linux Mint Wilma without installing" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro quiet splash pcie_ports=native intel_iommu=on iommu=pt ---
initrd /casper/initrd
}
menuentry "Try Linux Mint Virginia without installing (Safe Graphics)" {
menuentry "Try Linux Mint Wilma without installing (Safe Graphics)" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp164.seed boot=casper ro quiet splash nomodeset pcie_ports=native intel_iommu=on iommu=pt ---
initrd /casper/initrd
}
menuentry "Try Linux Mint Virginia without installing (NVMe blacklisted)" {
menuentry "Try Linux Mint Wilma without installing (NVMe blacklisted)" {
linux /casper/vmlinuz file=/cdrom/preseed/mbp.seed boot=casper ro quiet splash pcie_ports=native intel_iommu=on iommu=pt modprobe.blacklist=nvme ---
initrd /casper/initrd
}
menuentry "Install Linux Mint Virginia" {
menuentry "Install Linux Mint Wilma" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity quiet splash pcie_ports=native intel_iommu=on iommu=pt ---
initrd /casper/initrd
}
menuentry "Install Linux Mint Virginia (Safe Graphics)" {
menuentry "Install Linux Mint Wilma (Safe Graphics)" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp164.seed boot=casper only-ubiquity quiet splash nomodeset pcie_ports=native intel_iommu=on iommu=pt ---
initrd /casper/initrd
}
menuentry "Install Linux Mint Virginia (NVMe blacklisted)" {
menuentry "Install Linux Mint Wilma (NVMe blacklisted)" {
linux /casper/vmlinuz preseed/file=/cdrom/preseed/mbp.seed boot=casper only-ubiquity quiet splash pcie_ports=native intel_iommu=on iommu=pt modprobe.blacklist=nvme ---
initrd /casper/initrd
}