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

Bookworm Update #19

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
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
36 changes: 18 additions & 18 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build raspios-desktop-arm64.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f raspios-desktop-arm64-2022-04-04-arm64.img
zip raspios-desktop-arm64-2022-04-04-arm64.img.zip raspios-desktop-arm64-2022-04-04-arm64.img
test -f raspios-desktop-arm64-2023-12-06-arm64.img
zip raspios-desktop-arm64-2023-12-06-arm64.img.zip raspios-desktop-arm64-2023-12-06-arm64.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} raspios-desktop-arm64-2022-04-04-arm64.img.zip
run: gh release upload --clobber ${{github.ref}} raspios-desktop-arm64-2023-12-06-arm64.img.zip
build-raspios-desktop-armhf:
needs: create-release
runs-on: ubuntu-latest
Expand All @@ -85,12 +85,12 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build raspios-desktop-armhf.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f raspios-desktop-armhf-2022-04-04-armhf.img
zip raspios-desktop-armhf-2022-04-04-armhf.img.zip raspios-desktop-armhf-2022-04-04-armhf.img
test -f raspios-desktop-armhf-2023-12-06-armhf.img
zip raspios-desktop-armhf-2023-12-06-armhf.img.zip raspios-desktop-armhf-2023-12-06-armhf.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} raspios-desktop-armhf-2022-04-04-armhf.img.zip
run: gh release upload --clobber ${{github.ref}} raspios-desktop-armhf-2023-12-06-armhf.img.zip
build-raspios-lite-arm64:
needs: create-release
runs-on: ubuntu-latest
Expand All @@ -117,12 +117,12 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build raspios-lite-arm64.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f raspios-lite-arm64-2022-04-04-arm64.img
zip raspios-lite-arm64-2022-04-04-arm64.img.zip raspios-lite-arm64-2022-04-04-arm64.img
test -f raspios-lite-arm64-2023-12-11-arm64.img
zip raspios-lite-arm64-2023-12-11-arm64.img.zip raspios-lite-arm64-2023-12-11-arm64.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} raspios-lite-arm64-2022-04-04-arm64.img.zip
run: gh release upload --clobber ${{github.ref}} raspios-lite-arm64-2023-12-11-arm64.img.zip
build-raspios-lite-armhf:
needs: create-release
runs-on: ubuntu-latest
Expand All @@ -149,12 +149,12 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build raspios-lite-armhf.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f raspios-lite-armhf-2022-04-04-armhf.img
zip raspios-lite-armhf-2022-04-04-armhf.img.zip raspios-lite-armhf-2022-04-04-armhf.img
test -f raspios-lite-armhf-2023-12-11-armhf.img
zip raspios-lite-armhf-2023-12-11-armhf.img.zip raspios-lite-armhf-2023-12-11-armhf.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} raspios-lite-armhf-2022-04-04-armhf.img.zip
run: gh release upload --clobber ${{github.ref}} raspios-lite-armhf-2023-12-11-armhf.img.zip
build-ubuntu-server-arm64:
needs: create-release
runs-on: ubuntu-latest
Expand All @@ -181,12 +181,12 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build ubuntu-server-arm64.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f ubuntu-server-arm64-22.04-arm64.img
zip ubuntu-server-arm64-22.04-arm64.img.zip ubuntu-server-arm64-22.04-arm64.img
test -f ubuntu-server-arm64-22.04.3-arm64.img
zip ubuntu-server-arm64-22.04.3-arm64.img.zip ubuntu-server-arm64-22.04.3-arm64.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} ubuntu-server-arm64-22.04-arm64.img.zip
run: gh release upload --clobber ${{github.ref}} ubuntu-server-arm64-22.04.3-arm64.img.zip
build-ubuntu-server-armhf:
needs: create-release
runs-on: ubuntu-latest
Expand All @@ -213,9 +213,9 @@ jobs:
cp plugin/packer-builder-arm .
sudo packer build ubuntu-server-armhf.json | tee build.log || true
grep "::BUILD::SUCCESS" build.log
test -f ubuntu-server-armhf-22.04-armhf.img
zip ubuntu-server-armhf-22.04-armhf.img.zip ubuntu-server-armhf-22.04-armhf.img
test -f ubuntu-server-armhf-22.04.3-armhf.img
zip ubuntu-server-armhf-22.04.3-armhf.img.zip ubuntu-server-armhf-22.04.3-armhf.img
- name: Upload release asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload --clobber ${{github.ref}} ubuntu-server-armhf-22.04-armhf.img.zip
run: gh release upload --clobber ${{github.ref}} ubuntu-server-armhf-22.04.3-armhf.img.zip
5 changes: 5 additions & 0 deletions Debian12/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Debian 12 ARM64 Raspberry Pi Lite - USB Gadget

This is the *.img of a base image of Raspberry Pi ARM64 Lite, with the USB gadget mode auto installed. You will need atleast a 32 Gig SD card for the image.

The IP address will be 10.55.0.1.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Pre-built Raspberry Pi images to simplify using the Pi as a USB gadget.
# Pre-built Raspberry Pi images to simplify using the Pi as a USB gadget.

- The IP to connect to is: 10.55.0.1

The basic Raspberry Pi OS images are a faithful reproduction of the work done by [Ben Hardill][bh],
with some additional automation wrapped around to get to a publish release on GitHub.
Expand Down
6 changes: 3 additions & 3 deletions raspios-desktop-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2022-04-07/2022-04-04-raspios-bullseye-arm64.img.xz"
"https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2023-12-06/2023-12-05-raspios-bookworm-arm64.img.xz"
],
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2022-04-07/2022-04-04-raspios-bullseye-arm64.img.xz.sha256",
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2023-12-06/2023-12-05-raspios-bookworm-arm64.img.xz.sha256",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "raspios-desktop-arm64-2022-04-04-arm64.img",
"image_path": "raspios-desktop-arm64-2023-12-06-arm64.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down
6 changes: 3 additions & 3 deletions raspios-desktop-armhf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://downloads.raspberrypi.org/raspios_armhf/images/raspios_armhf-2022-04-07/2022-04-04-raspios-bullseye-armhf.img.xz"
"https://downloads.raspberrypi.org/raspios_armhf/images/raspios_armhf-2023-12-06/2023-12-05-raspios-bookworm-armhf.img.xz"
],
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_armhf/images/raspios_armhf-2022-04-07/2022-04-04-raspios-bullseye-armhf.img.xz.sha256",
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_armhf/images/raspios_armhf-2023-12-06/2023-12-05-raspios-bookworm-armhf.img.xz.sha256",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "raspios-desktop-armhf-2022-04-04-armhf.img",
"image_path": "raspios-desktop-armhf-2023-12-06-armhf.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down
6 changes: 3 additions & 3 deletions raspios-lite-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://downloads.raspberrypi.org/raspios_lite_arm64/images/raspios_lite_arm64-2022-04-07/2022-04-04-raspios-bullseye-arm64-lite.img.xz"
"https://downloads.raspberrypi.org/raspios_lite_arm64/images/raspios_lite_arm64-2023-12-11/2023-12-11-raspios-bookworm-arm64-lite.img.xz"
],
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_lite_arm64/images/raspios_lite_arm64-2022-04-07/2022-04-04-raspios-bullseye-arm64-lite.img.xz.sha256",
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_lite_arm64/images/raspios_lite_arm64-2023-12-11/2023-12-11-raspios-bookworm-arm64-lite.img.xz.sha256",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "raspios-lite-arm64-2022-04-04-arm64.img",
"image_path": "raspios-lite-arm64-2023-12-11-arm64.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down
6 changes: 3 additions & 3 deletions raspios-lite-armhf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2022-04-07/2022-04-04-raspios-bullseye-armhf-lite.img.xz"
"https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2023-12-11/2023-12-11-raspios-bookworm-armhf-lite.img.xz"
],
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2022-04-07/2022-04-04-raspios-bullseye-armhf-lite.img.xz.sha256",
"file_checksum_url": "https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2023-12-11/2023-12-11-raspios-bookworm-armhf-lite.img.xz.sha256",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "raspios-lite-armhf-2022-04-04-armhf.img",
"image_path": "raspios-lite-armhf-2023-12-11-armhf.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down
6 changes: 3 additions & 3 deletions ubuntu-server-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://cdimage.ubuntu.com/releases/22.04/release/ubuntu-22.04-preinstalled-server-arm64+raspi.img.xz"
"https://cdimage.ubuntu.com/releases/22.04/release/ubuntu-22.04.3-preinstalled-server-arm64+raspi.img.xz"
],
"file_checksum_url": "https://cdimage.ubuntu.com/releases/22.04/release/SHA256SUMS",
"file_checksum_url": "https://cdimage.ubuntu.com/releases/22.04.3/release/SHA256SUMS",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "ubuntu-server-arm64-22.04-arm64.img",
"image_path": "ubuntu-server-arm64-22.04.3-arm64.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down
6 changes: 3 additions & 3 deletions ubuntu-server-armhf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{
"type": "arm",
"file_urls": [
"https://cdimage.ubuntu.com/releases/22.04/release/ubuntu-22.04-preinstalled-server-armhf+raspi.img.xz"
"https://cdimage.ubuntu.com/releases/22.04/release/ubuntu-22.04.3-preinstalled-server-armhf+raspi.img.xz"
],
"file_checksum_url": "https://cdimage.ubuntu.com/releases/22.04/release/SHA256SUMS",
"file_checksum_url": "https://cdimage.ubuntu.com/releases/22.04.3/release/SHA256SUMS",
"file_checksum_type": "sha256",
"file_target_extension": "xz",
"file_unarchive_cmd": [
Expand All @@ -14,7 +14,7 @@
"$ARCHIVE_PATH"
],
"image_build_method": "reuse",
"image_path": "ubuntu-server-armhf-22.04-armhf.img",
"image_path": "ubuntu-server-armhf-22.04.3-armhf.img",
"image_size": "2G",
"image_type": "dos",
"image_partitions": [
Expand Down