summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-05-12 02:19:48 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-05-12 02:21:07 +0300
commit2ca6e42ac500f4f9de50ad6d15dca2150cf070c4 (patch)
tree65fea966b6a94e62198e92151c49aed77b187c85
parentcfb9e844939965574d06ebda0b02c4b87788a991 (diff)
kbuild: Fix DT build
Introduction of the kernel component selection build option broke DT build. Fix it. Fixes: e7385853e45b ("kbuild: Add options to selectively compile kernel components") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rwxr-xr-xkbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kbuild.sh b/kbuild.sh
index 9eeaa56..93df105 100755
--- a/kbuild.sh
+++ b/kbuild.sh
@@ -248,7 +248,7 @@ fi
#
kernel_dtbs=
-if [[ ${do_build[dtbs]} == 1 ]] ; then
+if [[ ${do_build[dt]} == 1 ]] ; then
for dtb in ${dtbs[@]} ; do
dtb=${dtb/:*/}
kernel_dtbs="$kernel_dtbs $dtb"
@@ -305,7 +305,7 @@ copy_dtbs() {
local dest_dir=$1
local dtb
- if [[ ${do_build[dtbs]} != 1 ]] ; then
+ if [[ ${do_build[dt]} != 1 ]] ; then
return
fi