Skip to content

Commit c43085f

Browse files
authored
Fedora Linux v6.4.4 (#94)
1 parent 3876e2e commit c43085f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM fedora:38
22

33
ARG RPMBUILD_PATH=/root/rpmbuild
4-
ARG FEDORA_KERNEL_VERSION=6.3.3-200.fc38 # https://bodhi.fedoraproject.org/updates/?search=&packages=kernel&releases=f38
4+
ARG FEDORA_KERNEL_VERSION=6.4.4-200.fc38 # https://bodhi.fedoraproject.org/updates/?search=&packages=kernel&releases=f38
55

66
RUN dnf install -y fedpkg fedora-packager rpmdevtools ncurses-devel pesign git libkcapi libkcapi-devel libkcapi-static libkcapi-tools zip curl dwarves libbpf rpm-sign \
77
&& rpmdev-setuptree \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If the DNF fail, or you're updating your older `mbp-fedora`, you can still use p
3232
```bash
3333
### First run or if you want to update your copy of update_kernel_mbp script
3434
sudo -i
35-
curl -L https://raw.githubusercontent.com/mikeeq/mbp-fedora-kernel/v6.0-f38/update_kernel_mbp.sh -o /usr/bin/update_kernel_mbp
35+
curl -L https://raw.githubusercontent.com/mikeeq/mbp-fedora-kernel/v6.4-f38/update_kernel_mbp.sh -o /usr/bin/update_kernel_mbp
3636
chmod +x /usr/bin/update_kernel_mbp
3737
update_kernel_mbp
3838

@@ -42,13 +42,13 @@ update_kernel_mbp
4242

4343
### Update to specific version of kernel
4444
sudo -i
45-
KERNEL_VERSION="6.3.3-f38" update_kernel_mbp
45+
KERNEL_VERSION="6.4.4-f38" update_kernel_mbp
4646

4747
### Update to specific version of kernel using specific version of update script
4848
#### Usually not needed, because scripts are shared between branches, but you can use it to update your update_kernel_mbp script
4949
##### If the script fails, try to rerun it - it's due to self-upgrading feature of this script
5050
sudo -i
51-
KERNEL_VERSION="6.3.3-f38" UPDATE_SCRIPT_BRANCH="v6.3-f38" update_kernel_mbp
51+
KERNEL_VERSION="6.4.4-f38" UPDATE_SCRIPT_BRANCH="v6.4-f38" update_kernel_mbp
5252

5353
### If kernel update using dnf would file you can execute update_kernel_mbp script with `--github` argument, it will force it to use github to download kernel RPMs
5454
sudo -i

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -eu -o pipefail
77
## Update fedora docker image tag, because kernel build is using `uname -r` when defining package version variable
88
RPMBUILD_PATH=/root/rpmbuild
99
MBP_VERSION=mbp
10-
FEDORA_KERNEL_VERSION=6.3.3-200.fc38 # https://bodhi.fedoraproject.org/updates/?search=&packages=kernel&releases=f38
10+
FEDORA_KERNEL_VERSION=6.4.4-200.fc38 # https://bodhi.fedoraproject.org/updates/?search=&packages=kernel&releases=f38
1111
REPO_PWD=$(pwd)
1212

1313
### Debug commands

kernel_patches.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -eu -o pipefail
1010
APPLE_SMC_DRIVER_GIT_URL=https://github.com/t2linux/linux-t2-patches
1111
APPLE_SMC_REPO_NAME=linux-t2-patches
1212
APPLE_SMC_DRIVER_BRANCH_NAME=main
13-
APPLE_SMC_DRIVER_COMMIT_HASH=d0e70c9396db0c97b47155a649838bb7ba82a690
13+
APPLE_SMC_DRIVER_COMMIT_HASH=c908e506346681139a844d41c40b295cfad17ea8
1414

1515
TMP_DIR=/tmp/tmp_dir
1616
REPO_PWD=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)

update_kernel_mbp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eu -o pipefail
44

55
KERNEL_PATCH_PATH=/tmp/kernel_patch
66

7-
UPDATE_SCRIPT_BRANCH=${UPDATE_SCRIPT_BRANCH:-v6.3-f38}
7+
UPDATE_SCRIPT_BRANCH=${UPDATE_SCRIPT_BRANCH:-v6.4-f38}
88
MBP_FEDORA_BRANCH=f38
99

1010
if [ "$EUID" -ne 0 ]; then

yum-repo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM fedora:38
22

3-
ARG RELEASE_VERSION=6.3.3-f38
3+
ARG RELEASE_VERSION=6.4.4-f38
44

55
WORKDIR /var/repo
66

yum-repo/specs/mbp-fedora-t2-config.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: mbp-fedora-t2-config
2-
Version: 6.3.3
2+
Version: 6.4.4
33
Release: 1%{?dist}
44
Summary: System configuration for mbp-fedora on Apple T2 Macs.
55

0 commit comments

Comments
 (0)