From: Zoltan Herpai Date: Sat, 4 Jan 2014 13:46:43 +0000 (+0000) Subject: sunxi: move sunxi-sid (security ID) off to module X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=9808a0830b3a81c9855286ea97b86b1f4705ad0a;p=openwrt%2Fstaging%2Flynxis%2Fomap.git sunxi: move sunxi-sid (security ID) off to module Signed-off-by: Zoltan HERPAI SVN-Revision: 39196 --- diff --git a/target/linux/sunxi/Makefile b/target/linux/sunxi/Makefile index 0ababde87b..c340d86b8d 100644 --- a/target/linux/sunxi/Makefile +++ b/target/linux/sunxi/Makefile @@ -17,7 +17,7 @@ MAINTAINER:=Zoltan HERPAI LINUX_VERSION:=3.12.5 KERNELNAME:="zImage dtbs" -DEFAULT_PACKAGES += uboot-envtools uboot-sunxi +DEFAULT_PACKAGES += uboot-envtools uboot-sunxi kmod-eeprom-sunxi # A10: Cortex-A8 # A13: Cortex-A8 diff --git a/target/linux/sunxi/config-3.12 b/target/linux/sunxi/config-3.12 index a49d8cab27..3b0d0b327b 100644 --- a/target/linux/sunxi/config-3.12 +++ b/target/linux/sunxi/config-3.12 @@ -132,7 +132,7 @@ CONFIG_DTC=y CONFIG_DUMMY_CONSOLE=y # CONFIG_DW_DMAC_CORE is not set CONFIG_DYNAMIC_DEBUG=y -CONFIG_EEPROM_SUNXI_SID=y +# CONFIG_EEPROM_SUNXI_SID is not set CONFIG_ELF_CORE=y # CONFIG_EMBEDDED is not set CONFIG_ENABLE_MUST_CHECK=y diff --git a/target/linux/sunxi/modules.mk b/target/linux/sunxi/modules.mk index 8677a69494..5fffbc7a8b 100644 --- a/target/linux/sunxi/modules.mk +++ b/target/linux/sunxi/modules.mk @@ -22,3 +22,19 @@ endef $(eval $(call KernelPackage,rtc-sunxi)) +define KernelPackage/eeprom-sunxi + SUBMENU:=$(OTHER_MENU) + TITLE:=AllWinner Security ID fuse support + DEPENDS:=@TARGET_sunxi + KCONFIG:= \ + CONFIG_EEPROM_SUNXI_SID + FILES:=$(LINUX_DIR)/drivers/misc/eeprom/sunxi_sid.ko + AUTOLOAD:=$(call AutoLoad,50,sunxi_sid) +endef + +define KernelPackage/eeprom-sunxi/description + Support for the AllWinner Security ID fuse support +endef + +$(eval $(call KernelPackage,eeprom-sunxi)) +