2022-02-11 13:52:13 +00:00
|
|
|
CUSTOM_TARGET_DEPS := kernel_build.phony
|
|
|
|
|
2024-07-31 13:18:57 +00:00
|
|
|
LX_DIR := $(call select_from_ports,linux)/src/linux
|
2022-02-11 13:52:13 +00:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
|
|
|
|
LX_MK_ARGS = ARCH=$(LINUX_ARCH) CROSS_COMPILE=$(CROSS_DEV_PREFIX)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Linux kernel configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
# define 'LX_ENABLE' and 'LX_DISABLE'
|
|
|
|
include $(REP_DIR)/src/pc_linux/target.inc
|
|
|
|
|
|
|
|
# filter for make output of kernel build system
|
|
|
|
BUILD_OUTPUT_FILTER = 2>&1 | sed "s/^/ [Linux] /"
|
|
|
|
|
2022-03-10 14:25:50 +00:00
|
|
|
# do not confuse third-party sub-makes
|
|
|
|
unexport .SHELLFLAGS
|
|
|
|
|
2022-02-11 13:52:13 +00:00
|
|
|
kernel_config.tag:
|
|
|
|
$(MSG_CONFIG)Linux
|
|
|
|
$(VERBOSE)$(MAKE) -C $(LX_DIR) O=$(PWD) $(LX_MK_ARGS) tinyconfig $(BUILD_OUTPUT_FILTER)
|
|
|
|
$(VERBOSE)$(LX_DIR)/scripts/config $(addprefix --enable ,$(LX_ENABLE))
|
|
|
|
$(VERBOSE)$(LX_DIR)/scripts/config $(addprefix --disable ,$(LX_DISABLE))
|
|
|
|
$(VERBOSE)$(MAKE) $(LX_MK_ARGS) olddefconfig $(BUILD_OUTPUT_FILTER)
|
|
|
|
$(VERBOSE)$(MAKE) $(LX_MK_ARGS) prepare $(BUILD_OUTPUT_FILTER)
|
|
|
|
$(VERBOSE)touch $@
|
|
|
|
|
|
|
|
# update Linux kernel config on makefile changes
|
|
|
|
kernel_config.tag: $(MAKEFILE_LIST)
|
|
|
|
|
|
|
|
kernel_build.phony: kernel_config.tag
|