diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2024-09-27 19:17:45 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2024-11-12 13:03:20 +0900 |
commit | cd1aad8aaa2a12470563fd156f3ce3a8581d3ee6 (patch) | |
tree | 0bca021928a01280c81edad212e2d9fb2dc039bb | |
parent | df7620f0578285448a500a780246a7450936ea1f (diff) | |
download | linux-rpi-cd1aad8aaa2a12470563fd156f3ce3a8581d3ee6.tar.gz linux-rpi-cd1aad8aaa2a12470563fd156f3ce3a8581d3ee6.tar.bz2 linux-rpi-cd1aad8aaa2a12470563fd156f3ce3a8581d3ee6.zip |
script: build: enable inform_reboot and dm_bow out-of-tree modules
Because of TIZEN_INFORM_REBOOT and DM_BOW drop, it should be
built from linux-tizen-modules-source as module.
Also adjust module list with linux-tizen-modules commit:
https://git.tizen.org/cgit/platform/kernel/linux-tizen-modules/commit/?h=tizen&id=e60a1c0a5ec4e20aee046b58700e3320a4b8ee96
Change-Id: Ia1c5c44fe9b7453e51d430b032adf19d55a16b1b
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
-rwxr-xr-x | build-rpi4.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build-rpi4.sh b/build-rpi4.sh index 1267e32faffd..0b134abfa087 100755 --- a/build-rpi4.sh +++ b/build-rpi4.sh @@ -106,14 +106,16 @@ function mk_tizen_modules() ln -s ${PWD}/include kernel - export BUILD_logger=m export LOGGER_MAIN_BUFFER_SIZE=256 export LOGGER_EVENTS_BUFFER_SIZE=256 export LOGGER_RADIO_BUFFER_SIZE=256 export LOGGER_SYSTEM_BUFFER_SIZE=256 - export BUILD_proc_tsm=m + export BUILD_dm_bow=m + export BUILD_inform_reboot=m export BUILD_kdbus=m + export BUILD_logger=m + export BUILD_proc_tsm=m export BUILD_zlogger=m ARCH="${ARM_ARCH}" CROSS_COMPILE="${CROSS_COMPILER}" make -C kernel KERNELDIR=${BUILD_ROOT} |