Skip to content

Commit

Permalink
Linux mint Wilma
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaGarg8 committed Jul 27, 2024
1 parent b932c52 commit 5af1cf8
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:

Cinnamon:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/iso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion 02_build_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion build_in_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu -o pipefail

DOCKER_IMAGE=ubuntu:22.04
DOCKER_IMAGE=ubuntu:24.04

docker pull ${DOCKER_IMAGE}
docker run \
Expand Down
10 changes: 5 additions & 5 deletions files/chroot_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions files/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 5af1cf8

Please sign in to comment.