Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
DWSR committed Dec 31, 2022
1 parent 64b5b1e commit 8ae378a
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions u-boot/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,9 @@ steps:
- |
mkdir ${ODROID_HC4_U_BOOT}
tar -xjf u-boot.tar.bz2 --strip-components=1 -C ${ODROID_HC4_U_BOOT}
make -C ${ODROID_HC4_U_BOOT} odroid-hc4_defconfig
mkdir ${ODROID_HC4_AMLOGIC_BOOT_FIP}
tar -xf amlogic-boot-fip.tar.gz --strip-components=1 -C ${ODROID_HC4_AMLOGIC_BOOT_FIP}
cd ${DROID_HC4_AMLOGIC_BOOT_FIP}
./build-fip.sh odroid-hc4
cd ${ODROID_HC4_U_BOOT}
make odroid-hc4_defconfig
sed -i "s/CONFIG_TOOLS_LIBCRYPTO=y/# CONFIG_TOOLS_LIBCRYPTO is not set/" .config
build:
# sun50i_a64
- |
Expand Down Expand Up @@ -229,6 +227,11 @@ steps:
export BL31=$(pwd)/${RK3399_ARM_TRUSTED_FIRMWARE}/build/rk3399/release/bl31/bl31.elf
cd ${NANOPI_R4S_U_BOOT}
make -j $(nproc) HOSTLDLIBS_mkimage="-lssl -lcrypto"
# odroid-hc4
- |
mkdir ${ODROID_HC4_AMLOGIC_BOOT_FIP}
cd ${ODROID_HC4_U_BOOT}
make -j $(nproc) HOSTLDLIBS_mkimage="-lssl -lcrypto"
install:
# libretech_all_h3_cc_h5
- |
Expand Down Expand Up @@ -272,6 +275,13 @@ steps:
- |
mkdir -p /rootfs/nanopi_r4s
cp -v ${NANOPI_R4S_U_BOOT}/u-boot-rockchip.bin /rootfs/nanopi_r4s
# odroid-hc4
- |
mkdir -p /rootfs/odroid_hc4
export U_BOOT_BIN=$(pwd)/${ODROID_HC4_U_BOOT}/u-boot.bin
tar -xf amlogic-boot-fip.tar.gz --strip-components=1 -C ${ODROID_HC4_AMLOGIC_BOOT_FIP}
cd ${ODROID_HC4_AMLOGIC_BOOT_FIP}
./build-fip.sh odroid-hc4 ${U_BOOT_BIN} /rootfs/odroid_hc4
# {{ else }}
- install:
- |
Expand Down

0 comments on commit 8ae378a

Please sign in to comment.