From 58201949fcf75a473af6ad201488d238f4b19081 Mon Sep 17 00:00:00 2001 From: Kenneth Johansson Date: Thu, 15 Jun 2017 14:10:50 +0200 Subject: [PATCH] genconfig: trigger a rebuild of bcmkernel if the boardid change. This was not needed before as only the PROFILE changed the result. Now also boardid is going to produce a different kernel and CFE on ARM based socs. So we need to make sure that they are rebuilt even if the new board is using the same PROFILE. --- iop/scripts/genconfig.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index 6ea7d2184..79b1c4f77 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -292,6 +292,11 @@ function genconfig { # Needed to disable kmods for iopsys-brcm targets touch package/kernel/linux/Makefile + # we need to signal to bradcom SDK that we have changed the board id + # currently boardparms.c is the only place that is depending on inteno boardid name + # so just touch that file. + find build_dir/ -name boardparms.c -print0 | xargs -0 touch + # Set default values based on selected parameters v "$(make defconfig 2>&1)"