Skip to content

Commit

Permalink
Merge branch 'release/v0.4.15'
Browse files Browse the repository at this point in the history
  • Loading branch information
kraeml committed Oct 15, 2024
2 parents 06bc402 + 7dc8112 commit 9a02390
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
cd repository/src
echo "Plattenplatz vor Build"
df -h
time sudo make all
time sudo make arm64 armhf
echo "Plattenplatz nach Build"
df -h
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
VERSION=0.4.15
- [x] Raspberry OS 2024-07-04
- [ ] Ubuntu 24.04.1
VERSION=0.4.14
- [ ] Ubunut 24.04
- [x] Raspberry OS 2024-03-15
Expand Down
10 changes: 6 additions & 4 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
MAKEFLAGS += "--jobs=$(shell nproc)"

# https://downloads.raspberrypi.com/raspios_lite_arm64/images/
RASPIOS_DATE ?= 2024-07-04
RASPIOS_DATE_URL ?= 2024-07-04

RASPIOS_DATE ?= 2024-03-15
RASPIOS_DATE_URL ?= 2024-03-15
RASPIOS_NAME ?= bookworm

RASPIOS_LITE_ARMHF_VERSION = ${RASPIOS_DATE}-raspios-${RASPIOS_NAME}-armhf-lite
Expand All @@ -19,7 +20,8 @@ WORKSPACE_ARM64_NAME = ${WORKSPACE_ARM64}/${RASPIOS_LITE_ARM64_VERSION}

UBUNTU_RELEASE ?= 24.04
# Setze auf .4 bei Patchlevel 4 der Punkt ist WICHTIG
UBUNUT_PATCHLEVEL =
# https://cdimage.ubuntu.com/releases/24.04/release/ubuntu-24.04.1-preinstalled-server-arm64+raspi.img.xz
UBUNUT_PATCHLEVEL = .1
UBUNTU_SERVER_ARM64_VERSION = ubuntu-${UBUNTU_RELEASE}${UBUNUT_PATCHLEVEL}-preinstalled-server-arm64+raspi
IMAGE_UBUNTU = image-ubuntu_arm64

Expand All @@ -30,7 +32,7 @@ WORKSPACE_UBUNTU_NAME = ${WORKSPACE_UBUNTU}/${UBUNTU_SERVER_ARM64_VERSION}
.PHONY: git_status clean_all clean_images clean_workspaces build_clean ubuntu_clean arm64_clean armhf_clean release all lokal custompios_pre
.SECONDARY: ${IMAGE_NAME_ARMHF}.img.xz ${IMAGE_NAME_ARM64}.img.xz ${IMAGE_NAME_UBUNTU}.img.xz ${WORKSPACE_ARMHF_NAME}.img ${WORKSPACE_ARM64_NAME}.img ${WORKSPACE_UBUNTU_NAME}.img

all: armhf arm64
all: | armhf arm64

custompios_pre:
@if ! grep -q "lazy" ../../CustomPiOS/src/common.sh; then \
Expand Down
2 changes: 1 addition & 1 deletion src/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export DIST_NAME=DOITPi
export DIST_VERSION=v0.4.14
export DIST_VERSION=v0.4.15

# Raspios 2023-05-03 bullseye
export RASPIOS_DATE="2024-03-15"
Expand Down

0 comments on commit 9a02390

Please sign in to comment.