Skip to content

Commit 7d68ccd

Browse files
committed
Add latest U-Boot to build
1 parent c9ed890 commit 7d68ccd

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,19 @@ jobs:
3737
debootstrap \
3838
qemu-user-static \
3939
systemd-container \
40-
fdisk
41-
40+
fdisk \
41+
gcc-arm-linux-gnueabihf
42+
- name: Build Uboot
43+
env:
44+
OS: bullseye
45+
run: |
46+
echo "OS=bullseye" >> $GITHUB_ENV
47+
git clone --branch $OS --single-branch https://dev.pyra-handheld.com/packages/pyra-uboot && cd pyra-uboot
48+
make -j"$num_cpus" ARCH=arm CROSS_COMPILE="arm-linux-gnueabihf-" omap5_pyra_4gb_defconfig
49+
make -j"$num_cpus" ARCH=arm CROSS_COMPILE="arm-linux-gnueabihf-"
50+
cp u-boot.img ../makeimg_data/uboot/u-boot.img
51+
cp MLO ../makeimg_data/uboot/MLO
52+
4253
- name: Run Makeimg
4354
env:
4455
OS: oldstable
@@ -80,8 +91,19 @@ jobs:
8091
debootstrap \
8192
qemu-user-static \
8293
systemd-container \
83-
fdisk
84-
94+
fdisk \
95+
gcc-arm-linux-gnueabihf
96+
- name: Build Uboot
97+
env:
98+
OS: bookworm
99+
run: |
100+
echo "OS=bookworm" >> $GITHUB_ENV
101+
git clone --branch $OS --single-branch https://dev.pyra-handheld.com/packages/pyra-uboot && cd pyra-uboot
102+
make -j"$num_cpus" ARCH=arm CROSS_COMPILE="arm-linux-gnueabihf-" omap5_pyra_4gb_defconfig
103+
make -j"$num_cpus" ARCH=arm CROSS_COMPILE="arm-linux-gnueabihf-"
104+
cp u-boot.img ../makeimg_data/uboot/u-boot.img
105+
cp MLO ../makeimg_data/uboot/MLO
106+
85107
- name: Run Makeimg
86108
env:
87109
OS: bookworm

0 commit comments

Comments
 (0)