Add an option for building the configs.ko module which provides kernel configuration via /proc/config.gz
Signed-off-by: Tim Harvey <[email protected]> --- package/kernel/modules/other.mk | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index f370f65..352af28 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -697,3 +697,18 @@ define KernelPackage/regmap/description endef $(eval $(call KernelPackage,regmap)) + +define KernelPackage/ikconfig + SUBMENU:=$(OTHER_MENU) + TITLE:=Kernel configuration via /proc/config.gz + KCONFIG:=CONFIG_IKCONFIG \ + CONFIG_IKCONFIG_PROC=y + FILES:=$(LINUX_DIR)/kernel/configs.ko + AUTOLOAD:=$(call AutoLoad,70,configs) +endef + +define KernelPackage/ikconfig/description + Kernel configuration via /proc/config.gz +endef + +$(eval $(call KernelPackage,ikconfig)) -- 1.7.5.4 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
