Skip to content

Commit

Permalink
Fixed 2 (cubietruck & rock64) : Missing /usr/bin in path on cross-bui…
Browse files Browse the repository at this point in the history
…lding host, needed by the u-boot-install-sunxi script when calling mkimage
  • Loading branch information
Jérôme Maurin committed Dec 29, 2023
1 parent 6b27e3d commit e91f7f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cubietruck_bookworm_armhf_vmdb2-0.15.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@ steps:

- root-fs: root
shell: |
if ! which mkimage
then
PATH=$PATH:$ROOT/usr/bin
fi
TARGET="$ROOT/usr/lib/u-boot/Cubietruck" $ROOT/usr/bin/u-boot-install-sunxi {{ output }}
- create-file: /etc/network/interfaces.d/lo
Expand Down
4 changes: 4 additions & 0 deletions rock64_bookworm_arm64_vmdb2-0.15.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ steps:

- root-fs: root
shell: |
if ! which mkimage
then
PATH=$PATH:$ROOT/usr/bin
fi
TARGET="$ROOT/usr/lib/u-boot/rock64-rk3328" $ROOT/usr/bin/u-boot-install-rockchip {{ output }}
- create-file: /etc/network/interfaces.d/lo
Expand Down

0 comments on commit e91f7f2

Please sign in to comment.