Skip to content

Commit c60b78b

Browse files
committed
6.13.5-2
1 parent 7fec5bd commit c60b78b

5 files changed

Lines changed: 7 additions & 16 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
5656
- name: Get the ISO script
5757
run: |
58+
sudo sed -i 's/GITHUBRELEASE/v${{ env.isotag }}/g' ${{ github.workspace }}/.github/workflows/iso.sh
5859
sudo cp ${{ github.workspace }}/.github/workflows/iso.sh ${{ github.workspace }}/output/iso.sh
5960
6061
- name: Release

.github/workflows/iso.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ set -e
2727

2828
cd $HOME/Downloads
2929

30-
latest=$(curl -sL https://github.com/t2linux/T2-Mint/releases/latest/ | grep "<title>Release" | awk -F " " '{print $2}' )
30+
#latest=$(curl -sL https://github.com/t2linux/T2-Mint/releases/latest/ | grep "<title>Release" | awk -F " " '{print $2}' )
31+
latest=GITHUBRELEASE
3132
latestkver=$(echo $latest | cut -d "v" -f 2 | cut -d "-" -f 1)
3233

3334
cat <<EOF

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
output
22
/.idea
3+
.DS_STORE

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ IMAGE_PATH="${WORKING_PATH}/image"
88
CODENAME=noble
99
FLAVOUR=$1
1010
MINT_VERSION=22.1
11-
KERNEL_VERSION=6.13.3
12-
PKGREL=1
11+
KERNEL_VERSION=6.13.5
12+
PKGREL=2
1313
sed -i "s/KVER/${KERNEL_VERSION}/g" $(pwd)/files/chroot_build.sh
1414
sed -i "s/PREL/${PKGREL}/g" $(pwd)/files/chroot_build.sh
1515

files/chroot_build.sh

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo >&2 "===]> Info: Upgrade the system... "
1515

1616
apt-get update
1717
export DEBIAN_FRONTEND=noninteractive
18-
apt-get upgrade -y -qq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
18+
#apt-get upgrade -y -qq -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
1919

2020
echo >&2 "===]> Info: Install Ubuntu MBP Repo... "
2121

@@ -48,18 +48,6 @@ echo >&2 "===]> Info: Update initramfs... "
4848
/usr/sbin/depmod -a "${KERNEL_VERSION}"
4949
update-initramfs -u -v -k "${KERNEL_VERSION}"
5050

51-
echo >&2 "===]> Info: Remove unused applications ... "
52-
53-
apt-get purge -y -qq \
54-
linux-generic \
55-
linux-headers-6.8.0-31 \
56-
linux-headers-6.8.0-31-generic \
57-
linux-headers-generic \
58-
linux-image-6.8.0-31-generic \
59-
linux-image-generic \
60-
linux-modules-6.8.0-31-generic \
61-
linux-modules-extra-6.8.0-31-generic
62-
6351
apt-get autoremove -y
6452

6553
echo >&2 "===]> Info: Add udev Rule for AMD GPU Power Management... "

0 commit comments

Comments
 (0)