Skip to content

Commit 046bd27

Browse files
committed
build.sh: make devicetree-compiler required for arm64 fit creation
1 parent 3f3d1a2 commit 046bd27

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ function check_dep()
194194
then
195195
if [[ $@ =~ "build" ]];then
196196
NEEDED_PKGS+=" u-boot-tools bc gcc libc6-dev libncurses-dev ccache libssl-dev"
197+
if [[ "$ARCH" == "arm64" ]]; then
198+
NEEDED_PKGS+=" device-tree-compiler"
199+
fi
197200
fi
198201
if [[ $@ =~ "deb" ]];then
199202
NEEDED_PKGS+=" fakeroot"

0 commit comments

Comments
 (0)