Skip to content

Commit

Permalink
Fix minor issues
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Dye <[email protected]>
  • Loading branch information
ecdye committed Jun 22, 2024
1 parent 0b8a332 commit 177adf6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo -E bash -c set
sudo add-apt-repository ppa:canonical-server/server-backports
sudo apt-get update
sudo apt-get install --yes gnupg xz-utils expect systemd-container qemu-user-static qemu-utils qemu-system-arm
sudo apt-get install --yes gnupg xz-utils expect systemd-container qemu-user-static qemu-utils qemu-system-arm libfdt-dev
echo "imagexz=$(basename "$(curl "https://downloads.raspberrypi.org/raspios_lite_armhf_latest" -s -L -I -o /dev/null -w '%{url_effective}')")" >> $GITHUB_OUTPUT
echo "image=$(echo "$(basename "$(curl "https://downloads.raspberrypi.org/raspios_lite_armhf_latest" -s -L -I -o /dev/null -w '%{url_effective}')")" | sed -e 's/.xz//')" >> $GITHUB_OUTPUT
- name: Cache Raspberry Pi OS 32bit image
Expand Down
2 changes: 1 addition & 1 deletion tests/image.bash
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [[ $1 == "setup" ]]; then
cmake utils/dtmerge
make
sudo make install
cp ../tests/dtb/bcm2710-rpi-3-b.dtb custom.dtb
cp tests/dtb/bcm2710-rpi-3-b.dtb custom.dtb
# (dtparam=uart0=on)
dtmerge custom.dtb merged.dtb - uart0=on
mv merged.dtb custom.dtb
Expand Down
6 changes: 3 additions & 3 deletions tests/install-packages.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

export DEBIAN_FRONTEND="noninteractive"

apt-get --quiet update
apt-get --quiet upgrade --yes
apt-get --quiet install --fix-broken --yes
# apt-get --quiet update
# apt-get --quiet upgrade --yes
# apt-get --quiet install --fix-broken --yes
apt-get --quiet install --yes gcc make libc6-dev
apt-get --quiet autoremove --yes
systemctl mask rpi-eeprom-update.service hciuart.service systemd-logind.service
Expand Down

0 comments on commit 177adf6

Please sign in to comment.