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

WIP: Dasharo(coreboot+SeaBIOS) for PC Engines support #10

Open
wants to merge 5 commits into
base: hwio_2024_fixes
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
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: ['main']
tags:
- v*.*.*
- v*.*.*-rc*

env:
REGISTRY: ghcr.io
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
FROM coreboot/coreboot-sdk:2024-02-18_732134932b
FROM coreboot/coreboot-sdk:2024-03-30_cccada28f7

USER root

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
gpg \
guilt \
imagemagick \
uuid-runtime \
unzip \
libxcb-icccm4 \
libxcb-image0 \
libxcb-keysyms1 \
Expand All @@ -20,6 +19,8 @@ RUN apt-get update && \
libxcb-xinerama0 \
libxcb-xkb1 \
libxkbcommon-x11-0 \
unzip \
uuid-runtime \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down
Loading