Skip to content

Commit

Permalink
Fedora 39
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeeq committed Nov 16, 2023
1 parent 003b4b4 commit 0e522a3
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:39

RUN dnf upgrade -y \
&& dnf install -y \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ reboot
# 2. Update mbp-fedora-kernel
## update_kernel_mbp has built-in selfupgrade function, so when it fails it's just due to script update - please rerun everything should be good on second run
KERNEL_VERSION="6.4.4-f38" UPDATE_SCRIPT_BRANCH="v6.4-f38" update_kernel_mbp
KERNEL_VERSION="6.5.11-f39" UPDATE_SCRIPT_BRANCH="v6.5-f39" update_kernel_mbp
reboot

# 3. Update your OS to include all changes made in mbp-fedora-t2-config RPM
Expand All @@ -120,9 +120,9 @@ reboot
dnf install -y dnf-plugin-system-upgrade

# 5. Upgrade to new OS version
## If you're trying to upgrade older version of mbp-fedora to latest version, please repeat a process by upgrading only to one major release of Fedora, i.e.: Fedora 33 -> 34, 34 -> 35, 35 -> 36, 36 -> 37 -> 38, by changing the number in `--releasever` argument
## If you're trying to upgrade older version of mbp-fedora to latest version, please repeat a process by upgrading only to one major release of Fedora, i.e.: Fedora 33 -> 34, 34 -> 35, 35 -> 36, 36 -> 37, 37 -> 38, 38 -> 39, by changing the number in `--releasever` argument

dnf system-upgrade download -y --releasever=38
dnf system-upgrade download -y --releasever=39

# 6. Reboot your Mac
dnf system-upgrade reboot
Expand Down
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
set -eu -o pipefail

CURRENT_PWD=$(pwd)
FEDORA_VERSION=38
FEDORA_VERSION=39
FEDORA_KICKSTARTS_GIT_URL=https://pagure.io/fedora-kickstarts.git
FEDORA_KICKSTARTS_BRANCH_NAME=f38
FEDORA_KICKSTARTS_COMMIT_HASH=69c726f7536cde6acf36697f7ba112ad3107e7ac # https://pagure.io/fedora-kickstarts/commits/f38
FEDORA_KICKSTARTS_BRANCH_NAME=f39
FEDORA_KICKSTARTS_COMMIT_HASH=465debb7c90c8ab4c68e14ff48fe50f796b1c089 # https://pagure.io/fedora-kickstarts/commits/f39
LIVECD_TOOLS_GIT_URL=https://github.com/livecd-tools/livecd-tools
LIVECD_TOOLS_GIT_BRANCH_NAME=main
LIVECD_TOOLS_GIT_COMMIT_HASH=4acb0c9515783446c3ad87bf29ec049ed835f788
LIVECD_TOOLS_GIT_COMMIT_HASH=064acef0b4ae97a40e76a745f7559ce9c4b983ac
LIVECD_CACHE_PATH=/var/cache/live

FEDORA_DESKTOP_ENV="${FEDORA_DESKTOP_ENV:-}"
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=fedora:38
DOCKER_IMAGE=fedora:39

docker pull ${DOCKER_IMAGE}
docker run \
Expand Down
4 changes: 2 additions & 2 deletions build_local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set -eu -o pipefail

docker build -t fedora_iso:38 .
docker build -t fedora_iso:39 .

DOCKER_IMAGE=fedora_iso:38
DOCKER_IMAGE=fedora_iso:39
LIVECD_CACHE_PATH=/var/cache/live

docker run \
Expand Down
6 changes: 3 additions & 3 deletions fedora-mbp.ks
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ eula --agreed

## Install mbp-fedora-kernel, mbp-fedora-t2-config, mbp-fedora-t2-repo
curl
-kernel-6.*.fc38.x86_64
kernel-*.*[0-9].mbp.fc38.x86_64
-kernel-6.*.fc39.x86_64
kernel-*.*[0-9].mbp.fc39.x86_64
mbp-fedora-t2-config
mbp-fedora-t2-repo

%end

%post
UPDATE_SCRIPT_BRANCH=v6.4-f38
UPDATE_SCRIPT_BRANCH=v6.5-f39
### Add dns server configuration
echo "===]> Info: Printing PWD"
Expand Down

0 comments on commit 0e522a3

Please sign in to comment.