diff options
author | Zoltan Herpai <wigyori@uid0.hu> | 2014-01-04 13:46:43 +0000 |
---|---|---|
committer | Zoltan Herpai <wigyori@uid0.hu> | 2014-01-04 13:46:43 +0000 |
commit | 9808a0830b3a81c9855286ea97b86b1f4705ad0a (patch) | |
tree | 6fde5aff5e637dff45ce1cb49925ed2a5a5aa884 /target | |
parent | 1ffc2deed468aa50456a97bee997545c3e4527bb (diff) | |
download | upstream-9808a0830b3a81c9855286ea97b86b1f4705ad0a.tar.gz upstream-9808a0830b3a81c9855286ea97b86b1f4705ad0a.tar.bz2 upstream-9808a0830b3a81c9855286ea97b86b1f4705ad0a.zip |
sunxi: move sunxi-sid (security ID) off to module
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 39196
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/sunxi/Makefile | 2 | ||||
-rw-r--r-- | target/linux/sunxi/config-3.12 | 2 | ||||
-rw-r--r-- | target/linux/sunxi/modules.mk | 16 |
3 files changed, 18 insertions, 2 deletions
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 <wigyori@uid0.hu> 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)) + |