Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump RPi OS and Pi4J version #44

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pi4j-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: pi4j-os
on:
push:
pull_request:
workflow_dispatch:

jobs:
main:
Expand Down
6 changes: 3 additions & 3 deletions Basic.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
source "arm" "raspios" {
file_urls = [
"https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2023-05-03/2023-05-03-raspios-bullseye-arm64.img.xz"
"https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2024-03-15/2024-03-15-raspios-bookworm-arm64.img.xz"
]
file_checksum_url = "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2023-05-03/2023-05-03-raspios-bullseye-arm64.img.xz.sha256"
file_checksum_url = "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2024-03-15/2024-03-15-raspios-bookworm-arm64.img.xz.sha256"
file_checksum_type = "sha256"
file_target_extension = "xz"
file_unarchive_cmd = ["xz", "--decompress", "$ARCHIVE_PATH"]
Expand All @@ -11,7 +11,7 @@ source "arm" "raspios" {
image_build_method = "resize"
image_path = "Pi4J-Basic-OS.img"
image_type = "dos"
image_size = "6G"
image_size = "8G"

# Boot Partition
image_partitions {
Expand Down
2 changes: 1 addition & 1 deletion CrowPi.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ source "arm" "raspios" {
image_build_method = "resize"
image_path = "Pi4J-CrowPi-OS.img"
image_type = "dos"
image_size = "6G"
image_size = "8G"

# Boot Partition
image_partitions {
Expand Down
2 changes: 1 addition & 1 deletion Picade.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source "arm" "raspios" {
image_build_method = "resize"
image_path = "Pi4J-Picade-OS.img"
image_type = "dos"
image_size = "6G"
image_size = "8G"

# Boot Partition
image_partitions {
Expand Down
2 changes: 1 addition & 1 deletion base/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
set -euxo pipefail

# Script configuration
declare -gr JDK="17.0.8-tem"
declare -gr JDK="22-zulu"
declare -gr GLUON_JAVAFX_VERSION="20.0.2"
declare -gr GLUON_JAVAFX_URL="https://download2.gluonhq.com/openjfx/${GLUON_JAVAFX_VERSION}/openjfx-${GLUON_JAVAFX_VERSION}_monocle-linux-aarch64_bin-sdk.zip"
declare -gr GLUON_JAVAFX_PATH="/opt/javafx-sdk"
Expand Down
4 changes: 2 additions & 2 deletions base/resources/java-deploy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<!-- BUILD PROPERTIES -->
<properties>
<pi4j.version>2.3.0</pi4j.version>
<slf4j.version>1.7.32</slf4j.version>
<pi4j.version>2.5.1</pi4j.version>
<slf4j.version>2.0.12</slf4j.version>
<!-- Maven Plugin Versions -->
<maven-dependency-plugin.version>3.2.0</maven-dependency-plugin.version>
</properties>
Expand Down
Loading