[LEDE-DEV] [PATCH 10/12] at91: reorganize at91 subtargets

John Crispin john at phrozen.org
Sun Apr 29 23:14:32 PDT 2018



On 02/04/18 18:34, Sandeep Sheriker Mallikarjun wrote:
> reorganizing at91 subtargets based on sama5 soc features and this fix
> below problems.
>    1. able to set neon flags to sama5d2 & sama5d4 subtargets.
>    2. fix the make clean which removes all the subtargets in bin folder.
>    3. able to configure kernel specific to subtarget.
>    4. able to set vfpu4 flags to samad3 subtargets.
>
> Signed-off-by: Sandeep Sheriker Mallikarjun <sandeepsheriker.mallikarjun at microchip.com>

Hi,

due to me letting these rot too long 10 11 and 12/12 dont apply any 
longer. copuld you rebase/send them please ?

     John

> ---
>   package/boot/at91bootstrap/Makefile                |   12 +-
>   package/boot/uboot-at91/Makefile                   |   18 +-
>   target/linux/at91/Makefile                         |    2 +-
>   target/linux/at91/image/Makefile                   |   51 +-
>   target/linux/at91/image/sama5.mk                   |  101 --
>   target/linux/at91/image/sama5d2.mk                 |   23 +
>   target/linux/at91/image/sama5d3.mk                 |   33 +
>   target/linux/at91/image/sama5d4.mk                 |   20 +
>   target/linux/at91/sama5/target.mk                  |    9 -
>   .../linux/at91/{sama5 => sama5d2}/config-default   |    0
>   target/linux/at91/sama5d2/target.mk                |   10 +
>   target/linux/at91/sama5d3/config-default           | 1311 ++++++++++++++++++++
>   target/linux/at91/sama5d3/target.mk                |   10 +
>   target/linux/at91/sama5d4/config-default           | 1311 ++++++++++++++++++++
>   target/linux/at91/sama5d4/target.mk                |   10 +
>   15 files changed, 2798 insertions(+), 123 deletions(-)
>   delete mode 100644 target/linux/at91/image/sama5.mk
>   create mode 100644 target/linux/at91/image/sama5d2.mk
>   create mode 100644 target/linux/at91/image/sama5d3.mk
>   create mode 100644 target/linux/at91/image/sama5d4.mk
>   delete mode 100644 target/linux/at91/sama5/target.mk
>   rename target/linux/at91/{sama5 => sama5d2}/config-default (100%)
>   create mode 100644 target/linux/at91/sama5d2/target.mk
>   create mode 100644 target/linux/at91/sama5d3/config-default
>   create mode 100644 target/linux/at91/sama5d3/target.mk
>   create mode 100644 target/linux/at91/sama5d4/config-default
>   create mode 100644 target/linux/at91/sama5d4/target.mk
>
> diff --git a/package/boot/at91bootstrap/Makefile b/package/boot/at91bootstrap/Makefile
> index fbe44c4..b350555 100644
> --- a/package/boot/at91bootstrap/Makefile
> +++ b/package/boot/at91bootstrap/Makefile
> @@ -24,63 +24,73 @@ include $(INCLUDE_DIR)/package.mk
>   
>   define AT91Bootstrap/Default
>     BUILD_TARGET:=at91
> -  BUILD_SUBTARGET:=sama5
>     HIDDEN:=1
>     AT91BOOTSTRAP_IMAGE:=at91bootstrap.bin
>   endef
>   
>   define AT91Bootstrap/sama5d2_xplaineddf_uboot
>     TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SPI Flash)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d2_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d2_xplaineddf_qspi_uboot
>     TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (QSPI Flash)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d2_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d2_xplainedsd_uboot
>     TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SDcard/EMMC)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d2_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d3_xplainednf_uboot
>     TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (Nand Flash)
> +  BUILD_SUBTARGET:=sama5d3
>     BUILD_DEVICES:=at91-sama5d3_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d3_xplainedsd_uboot
>     TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (SDcard)
> +  BUILD_SUBTARGET:=sama5d3
>     BUILD_DEVICES:=at91-sama5d3_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d4_xplainednf_uboot_secure
>     TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (Nand Flash)
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d4_xplaineddf_uboot_secure
>     TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SPI Flash)
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d4_xplainedsd_uboot_secure
>     TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SDcard)
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define AT91Bootstrap/sama5d27_som1_eksd_uboot
>     TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (SDcard0)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d27_som1_ek
>   endef
>   
>   define AT91Bootstrap/sama5d27_som1_eksd1_uboot
>     TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (SDcard1)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d27_som1_ek
>   endef
>   
>   define AT91Bootstrap/sama5d27_som1_ekqspi_uboot
>     TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (QSPI Flash)
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d27_som1_ek
>   endef
>   
> diff --git a/package/boot/uboot-at91/Makefile b/package/boot/uboot-at91/Makefile
> index 73a2d62..b336321 100644
> --- a/package/boot/uboot-at91/Makefile
> +++ b/package/boot/uboot-at91/Makefile
> @@ -40,55 +40,55 @@ endef
>   
>   define U-Boot/sama5d3_xplained_nandflash
>     NAME:=SAMA5D3 Xplained board (NandFlash)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d3
>     BUILD_DEVICES:=at91-sama5d3_xplained
>   endef
>   
>   define U-Boot/sama5d3_xplained_mmc
>     NAME:=SAMA5D3 Xplained board (SDcard)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d3
>     BUILD_DEVICES:=at91-sama5d3_xplained
>   endef
>   
>   define U-Boot/sama5d2_xplained_spiflash
>     NAME:=SAMA5D2 Xplained board (SPI Flash)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d2_xplained
>   endef
>   
>   define U-Boot/sama5d2_xplained_mmc
>     NAME:=SAMA5D2 Xplained board (SDcard/EMMC)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d2_xplained
>   endef
>   
>   define U-Boot/sama5d4_xplained_spiflash
>     NAME:=SAMA5D4 Xplained board (SPI Flash)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define U-Boot/sama5d4_xplained_mmc
>     NAME:=SAMA5D4 Xplained board (SDcard)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define U-Boot/sama5d4_xplained_nandflash
>     NAME:=SAMA5D4 Xplained board (NandFlash)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d4
>     BUILD_DEVICES:=at91-sama5d4_xplained
>   endef
>   
>   define U-Boot/sama5d27_som1_ek_mmc
>     NAME:=SAMA5D27 SOM1 Ek (SDCard)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d27_som1_ek
>   endef
>   
>   define U-Boot/sama5d27_som1_ek_spiflash
>     NAME:=SAMA5D27 SOM1 Ek (QSPI Flash)
> -  BUILD_SUBTARGET:=sama5
> +  BUILD_SUBTARGET:=sama5d2
>     BUILD_DEVICES:=at91-sama5d27_som1_ek
>   endef
>   
> diff --git a/target/linux/at91/Makefile b/target/linux/at91/Makefile
> index cae3c62..d71e085 100644
> --- a/target/linux/at91/Makefile
> +++ b/target/linux/at91/Makefile
> @@ -11,7 +11,7 @@ BOARD:=at91
>   MAINTAINER:=Claudio Mignanti <c.mignanti at gmail.com>
>   BOARDNAME:=Microchip (Atmel AT91)
>   FEATURES:=ext4 squashfs targz usb usbgadget ubifs
> -SUBTARGETS:=sama5 legacy
> +SUBTARGETS:=sama5d2 sama5d3 sama5d4 legacy
>   
>   KERNEL_PATCHVER:=4.9
>   
> diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile
> index 93180dd..49d93aa 100644
> --- a/target/linux/at91/image/Makefile
> +++ b/target/linux/at91/image/Makefile
> @@ -16,10 +16,21 @@ endef
>   ifeq ($(SUBTARGET),legacy)
>   include ./legacy.mk
>   endif
> -ifeq ($(SUBTARGET),sama5)
> -include ./sama5.mk
> +ifeq ($(SUBTARGET),sama5d2)
> +include ./sama5d2.mk
> +endif
> +ifeq ($(SUBTARGET),sama5d3)
> +include ./sama5d3.mk
> +endif
> +ifeq ($(SUBTARGET),sama5d4)
> +include ./sama5d4.mk
>   endif
>   
> +AT91_SD_BOOT_PARTSIZE:=64
> +FAT32_BLOCK_SIZE:=1024
> +FAT32_BLOCKS:=$(shell echo \
> +  $$(($(AT91_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
> +
>   define Device/Default
>     $(Device/default-nand)
>     PROFILES := Default
> @@ -35,6 +46,42 @@ define Device/dtb
>     KERNEL := kernel-bin | lzma | uImage lzma
>   endef
>   
> +define Build/at91-sdcard
> +  $(if $(findstring ext4,$@), \
> +  rm -f $@.boot
> +  mkfs.fat -C $@.boot $(FAT32_BLOCKS)
> +
> +  mcopy -i $@.boot $(KDIR)/zImage ::zImage
> +
> +  $(foreach dts,$(DEVICE_DTS), \
> +     mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb \
> +        ::$(dts).dtb)
> +
> +  mcopy -i $@.boot \
> +    $(BIN_DIR)/u-boot-$(DEVICE_NAME:at91-%=%)_mmc/u-boot.bin \
> +    ::u-boot.bin
> +
> +  mcopy -i $@.boot \
> +    $(BIN_DIR)/at91bootstrap-$(DEVICE_NAME:at91-%=%)sd*/at91bootstrap.bin \
> +    ::BOOT.bin
> +
> +  ./gen_at91_sdcard_img.sh \
> +      $@.img \
> +      $@.boot \
> +      $(KDIR)/root.ext4 \
> +      $(AT91_SD_BOOT_PARTSIZE) \
> +      $(CONFIG_TARGET_ROOTFS_PARTSIZE)
> +
> +  gzip -nc9 $@.img > $@
> +
> +  rm -f $@.img $@.boot )
> +endef
> +
> +define Device/evaluation-sdimage
> +  IMAGES += sdcard.img.gz
> +  IMAGE/sdcard.img.gz := at91-sdcard
> +endef
> +
>   define Device/evaluation
>     KERNEL_INSTALL := 1
>     KERNEL_SUFFIX := -uImage
> diff --git a/target/linux/at91/image/sama5.mk b/target/linux/at91/image/sama5.mk
> deleted file mode 100644
> index fd7a534..0000000
> --- a/target/linux/at91/image/sama5.mk
> +++ /dev/null
> @@ -1,101 +0,0 @@
> -AT91_SD_BOOT_PARTSIZE:=64
> -FAT32_BLOCK_SIZE:=1024
> -FAT32_BLOCKS:=$(shell echo \
> -  $$(($(AT91_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
> -
> -define Build/at91-sdcard
> -  $(if $(findstring ext4,$@), \
> -  rm -f $@.boot
> -  mkfs.fat -C $@.boot $(FAT32_BLOCKS)
> -
> -  mcopy -i $@.boot $(KDIR)/zImage ::zImage
> -
> -  $(foreach dts,$(DEVICE_DTS), \
> -     mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb \
> -        ::$(dts).dtb)
> -
> -  mcopy -i $@.boot \
> -    $(BIN_DIR)/u-boot-$(DEVICE_NAME:at91-%=%)_mmc/u-boot.bin \
> -    ::u-boot.bin
> -
> -  mcopy -i $@.boot \
> -    $(BIN_DIR)/at91bootstrap-$(DEVICE_NAME:at91-%=%)sd*/at91bootstrap.bin \
> -    ::BOOT.bin
> -
> -  ./gen_at91_sdcard_img.sh \
> -      $@.img \
> -      $@.boot \
> -      $(KDIR)/root.ext4 \
> -      $(AT91_SD_BOOT_PARTSIZE) \
> -      $(CONFIG_TARGET_ROOTFS_PARTSIZE)
> -
> -  gzip -nc9 $@.img > $@
> -
> -  rm -f $@.img $@.boot )
> -endef
> -
> -define Device/evaluation-sdimage
> -  IMAGES += sdcard.img.gz
> -  IMAGE/sdcard.img.gz := at91-sdcard
> -endef
> -
> -define Device/default-nand
> -  BLOCKSIZE := 128k
> -  PAGESIZE := 2048
> -  SUBPAGESIZE := 2048
> -  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
> -endef
> -
> -define Device/at91-sama5d3_xplained
> -  $(Device/evaluation-dtb)
> -  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D3 Xplained
> -  KERNEL_SIZE := 6144k
> -  $(Device/evaluation-sdimage)
> -endef
> -TARGET_DEVICES += at91-sama5d3_xplained
> -
> -define Device/at91-sama5d2_xplained
> -  $(Device/evaluation-dtb)
> -  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D2 Xplained
> -  KERNEL_SIZE := 6144k
> -  $(Device/evaluation-sdimage)
> -endef
> -TARGET_DEVICES += at91-sama5d2_xplained
> -
> -define Device/at91-sama5d4_xplained
> -  $(Device/evaluation-dtb)
> -  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D4 Xplained
> -  KERNEL_SIZE := 6144k
> -  BLOCKSIZE := 256k
> -  PAGESIZE := 4096
> -  SUBPAGESIZE := 2048
> -  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 248KiB -c 2082 -x lzo
> -  $(Device/evaluation-sdimage)
> -endef
> -TARGET_DEVICES += at91-sama5d4_xplained
> -
> -define Device/at91-sama5d27_som1_ek
> -  $(Device/evaluation-dtb)
> -  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D27 SOM1 Ek
> -  KERNEL_SIZE := 6144k
> -  $(Device/evaluation-sdimage)
> -endef
> -TARGET_DEVICES += at91-sama5d27_som1_ek
> -
> -ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
> - ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"")
> -  define Device/wb50n
> -    $(Device/evaluation-fit)
> -    DEVICE_TITLE := Laird WB50N
> -    DEVICE_PACKAGES := \
> -	  kmod-mmc-at91 kmod-ath6kl-sdio ath6k-firmware \
> -	  kmod-usb-storage kmod-fs-vfat kmod-fs-msdos \
> -	  kmod-leds-gpio
> -    BLOCKSIZE := 128k
> -    PAGESIZE := 2048
> -    SUBPAGESIZE := 2048
> -    MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 955
> -  endef
> -  TARGET_DEVICES += wb50n
> - endif
> -endif
> diff --git a/target/linux/at91/image/sama5d2.mk b/target/linux/at91/image/sama5d2.mk
> new file mode 100644
> index 0000000..28a6f93
> --- /dev/null
> +++ b/target/linux/at91/image/sama5d2.mk
> @@ -0,0 +1,23 @@
> +
> +define Device/default-nand
> +  BLOCKSIZE := 128k
> +  PAGESIZE := 2048
> +  SUBPAGESIZE := 2048
> +  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
> +endef
> +
> +define Device/at91-sama5d2_xplained
> +  $(Device/evaluation-dtb)
> +  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D2 Xplained
> +  KERNEL_SIZE := 6144k
> +  $(Device/evaluation-sdimage)
> +endef
> +TARGET_DEVICES += at91-sama5d2_xplained
> +
> +define Device/at91-sama5d27_som1_ek
> +  $(Device/evaluation-dtb)
> +  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D27 SOM1 Ek
> +  KERNEL_SIZE := 6144k
> +  $(Device/evaluation-sdimage)
> +endef
> +TARGET_DEVICES += at91-sama5d27_som1_ek
> diff --git a/target/linux/at91/image/sama5d3.mk b/target/linux/at91/image/sama5d3.mk
> new file mode 100644
> index 0000000..f48c981
> --- /dev/null
> +++ b/target/linux/at91/image/sama5d3.mk
> @@ -0,0 +1,33 @@
> +
> +define Device/default-nand
> +  BLOCKSIZE := 128k
> +  PAGESIZE := 2048
> +  SUBPAGESIZE := 2048
> +  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
> +endef
> +
> +define Device/at91-sama5d3_xplained
> +  $(Device/evaluation-dtb)
> +  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D3 Xplained
> +  KERNEL_SIZE := 6144k
> +  $(Device/evaluation-sdimage)
> +endef
> +TARGET_DEVICES += at91-sama5d3_xplained
> +
> +ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
> + ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"")
> +  define Device/wb50n
> +    $(Device/evaluation-fit)
> +    DEVICE_TITLE := Laird WB50N
> +    DEVICE_PACKAGES := \
> +	  kmod-mmc-at91 kmod-ath6kl-sdio ath6k-firmware \
> +	  kmod-usb-storage kmod-fs-vfat kmod-fs-msdos \
> +	  kmod-leds-gpio
> +    BLOCKSIZE := 128k
> +    PAGESIZE := 2048
> +    SUBPAGESIZE := 2048
> +    MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 955
> +  endef
> +  TARGET_DEVICES += wb50n
> + endif
> +endif
> diff --git a/target/linux/at91/image/sama5d4.mk b/target/linux/at91/image/sama5d4.mk
> new file mode 100644
> index 0000000..60cbe31
> --- /dev/null
> +++ b/target/linux/at91/image/sama5d4.mk
> @@ -0,0 +1,20 @@
> +
> +define Device/default-nand
> +  BLOCKSIZE := 128k
> +  PAGESIZE := 2048
> +  SUBPAGESIZE := 2048
> +  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 124KiB -c 2048
> +endef
> +
> +define Device/at91-sama5d4_xplained
> +  $(Device/evaluation-dtb)
> +  DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D4 Xplained
> +  KERNEL_SIZE := 6144k
> +  BLOCKSIZE := 256k
> +  PAGESIZE := 4096
> +  SUBPAGESIZE := 2048
> +  MKUBIFS_OPTS := -m $$(PAGESIZE) -e 248KiB -c 2082 -x lzo
> +  $(Device/evaluation-sdimage)
> +endef
> +TARGET_DEVICES += at91-sama5d4_xplained
> +
> diff --git a/target/linux/at91/sama5/target.mk b/target/linux/at91/sama5/target.mk
> deleted file mode 100644
> index 2e452dc..0000000
> --- a/target/linux/at91/sama5/target.mk
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -BOARDNAME:=SAMA5 boards(Cortex-A5)
> -CPU_TYPE:=cortex-a5
> -
> -DEFAULT_PACKAGES += kmod-usb2
> -
> -define Target/Description
> -	Build generic firmware for Microchip(Atmel AT91) SAMA5 MPU's
> -	using the ARMv7 instruction set.
> -endef
> diff --git a/target/linux/at91/sama5/config-default b/target/linux/at91/sama5d2/config-default
> similarity index 100%
> rename from target/linux/at91/sama5/config-default
> rename to target/linux/at91/sama5d2/config-default
> diff --git a/target/linux/at91/sama5d2/target.mk b/target/linux/at91/sama5d2/target.mk
> new file mode 100644
> index 0000000..63f50ae
> --- /dev/null
> +++ b/target/linux/at91/sama5d2/target.mk
> @@ -0,0 +1,10 @@
> +BOARDNAME:=SAMA5D2 boards(Cortex-A5)
> +CPU_TYPE:=cortex-a5
> +CPU_SUBTYPE:=neon-vfpv4
> +FEATURES+=fpu
> +DEFAULT_PACKAGES += kmod-usb2
> +
> +define Target/Description
> +	Build generic firmware for Microchip(Atmel AT91) SAMA5D2 MPU's
> +	using the ARMv7 instruction set.
> +endef
> diff --git a/target/linux/at91/sama5d3/config-default b/target/linux/at91/sama5d3/config-default
> new file mode 100644
> index 0000000..51b983c
> --- /dev/null
> +++ b/target/linux/at91/sama5d3/config-default
> @@ -0,0 +1,1311 @@
> +CONFIG_POSIX_MQUEUE=y
> +CONFIG_POSIX_MQUEUE_SYSCTL=y
> +CONFIG_CROSS_MEMORY_ATTACH=y
> +CONFIG_FHANDLE=y
> +CONFIG_TICK_ONESHOT=y
> +CONFIG_NO_HZ_COMMON=y
> +# CONFIG_HZ_PERIODIC is not set
> +CONFIG_NO_HZ_IDLE=y
> +# CONFIG_NO_HZ is not set
> +CONFIG_HIGH_RES_TIMERS=y
> +CONFIG_PAGE_COUNTER=y
> +CONFIG_MEMCG=y
> +# CONFIG_BLK_CGROUP is not set
> +CONFIG_CGROUP_SCHED=y
> +CONFIG_FAIR_GROUP_SCHED=y
> +CONFIG_CFS_BANDWIDTH=y
> +CONFIG_RT_GROUP_SCHED=y
> +# CONFIG_CGROUP_PIDS is not set
> +CONFIG_CGROUP_FREEZER=y
> +# CONFIG_CPUSETS is not set
> +CONFIG_CGROUP_DEVICE=y
> +CONFIG_CGROUP_CPUACCT=y
> +# CONFIG_CGROUP_DEBUG is not set
> +# CONFIG_CHECKPOINT_RESTORE is not set
> +CONFIG_NAMESPACES=y
> +CONFIG_UTS_NS=y
> +CONFIG_IPC_NS=y
> +CONFIG_USER_NS=y
> +CONFIG_PID_NS=y
> +CONFIG_NET_NS=y
> +# CONFIG_SCHED_AUTOGROUP is not set
> +# CONFIG_SYSFS_DEPRECATED is not set
> +# CONFIG_RELAY is not set
> +CONFIG_BLK_DEV_INITRD=y
> +CONFIG_INITRAMFS_SOURCE=""
> +CONFIG_RD_GZIP=y
> +CONFIG_RD_BZIP2=y
> +CONFIG_RD_LZMA=y
> +CONFIG_RD_XZ=y
> +CONFIG_RD_LZO=y
> +CONFIG_RD_LZ4=y
> +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
> +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
> +CONFIG_SYSCTL=y
> +CONFIG_ANON_INODES=y
> +CONFIG_HAVE_UID16=y
> +CONFIG_BPF=y
> +CONFIG_EXPERT=y
> +CONFIG_UID16=y
> +CONFIG_MULTIUSER=y
> +# CONFIG_SGETMASK_SYSCALL is not set
> +CONFIG_SYSFS_SYSCALL=y
> +# CONFIG_SYSCTL_SYSCALL is not set
> +# CONFIG_KALLSYMS is not set
> +CONFIG_PRINTK=y
> +CONFIG_PRINTK_NMI=y
> +CONFIG_BUG=y
> +CONFIG_ELF_CORE=y
> +CONFIG_BASE_FULL=y
> +CONFIG_FUTEX=y
> +CONFIG_EPOLL=y
> +CONFIG_SIGNALFD=y
> +CONFIG_TIMERFD=y
> +CONFIG_EVENTFD=y
> +# CONFIG_BPF_SYSCALL is not set
> +CONFIG_SHMEM=y
> +CONFIG_AIO=y
> +CONFIG_ADVISE_SYSCALLS=y
> +# CONFIG_USERFAULTFD is not set
> +CONFIG_MEMBARRIER=y
> +CONFIG_EMBEDDED=y
> +CONFIG_HAVE_PERF_EVENTS=y
> +CONFIG_PERF_USE_VMALLOC=y
> +CONFIG_JUMP_LABEL=y
> +# CONFIG_STATIC_KEYS_SELFTEST is not set
> +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
> +CONFIG_ARCH_USE_BUILTIN_BSWAP=y
> +# CONFIG_CPU_NO_EFFICIENT_FFS is not set
> +CONFIG_MODULE_FORCE_LOAD=y
> +CONFIG_MODULE_FORCE_UNLOAD=y
> +CONFIG_ARCH_MULTI_V7=y
> +CONFIG_ARCH_MULTI_V6_V7=y
> +# CONFIG_ARCH_MULTI_CPU_AUTO is not set
> +# CONFIG_ARCH_VIRT is not set
> +# CONFIG_ARCH_MVEBU is not set
> +# CONFIG_ARCH_ALPINE is not set
> +# CONFIG_ARCH_ARTPEC is not set
> +CONFIG_ARCH_AT91=y
> +CONFIG_SOC_SAMA5D2=y
> +CONFIG_SOC_SAMA5D3=y
> +CONFIG_SOC_SAMA5D4=y
> +# CONFIG_AT91_VDEC_G1 is not set
> +CONFIG_HAVE_AT91_UTMI=y
> +CONFIG_HAVE_AT91_USB_CLK=y
> +CONFIG_COMMON_CLK_AT91=y
> +CONFIG_HAVE_AT91_SMD=y
> +CONFIG_HAVE_AT91_H32MX=y
> +CONFIG_HAVE_AT91_GENERATED_CLK=y
> +CONFIG_HAVE_AT91_AUDIO_PLL=y
> +CONFIG_SOC_SAM_V7=y
> +CONFIG_SOC_SAMA5=y
> +# CONFIG_ARCH_BCM is not set
> +# CONFIG_ARCH_BERLIN is not set
> +# CONFIG_ARCH_DIGICOLOR is not set
> +# CONFIG_ARCH_HIGHBANK is not set
> +# CONFIG_ARCH_HISI is not set
> +# CONFIG_ARCH_KEYSTONE is not set
> +# CONFIG_ARCH_MESON is not set
> +# CONFIG_ARCH_MXC is not set
> +# CONFIG_ARCH_MEDIATEK is not set
> +# CONFIG_ARCH_OMAP3 is not set
> +# CONFIG_ARCH_OMAP4 is not set
> +# CONFIG_SOC_OMAP5 is not set
> +# CONFIG_SOC_AM33XX is not set
> +# CONFIG_SOC_AM43XX is not set
> +# CONFIG_SOC_DRA7XX is not set
> +# CONFIG_ARCH_MMP is not set
> +# CONFIG_ARCH_QCOM is not set
> +# CONFIG_ARCH_REALVIEW is not set
> +# CONFIG_ARCH_ROCKCHIP is not set
> +# CONFIG_ARCH_SOCFPGA is not set
> +# CONFIG_PLAT_SPEAR is not set
> +# CONFIG_ARCH_STI is not set
> +# CONFIG_ARCH_S5PV210 is not set
> +# CONFIG_ARCH_EXYNOS is not set
> +# CONFIG_ARCH_RENESAS is not set
> +# CONFIG_ARCH_SUNXI is not set
> +# CONFIG_ARCH_SIRF is not set
> +# CONFIG_ARCH_TANGO is not set
> +# CONFIG_ARCH_TEGRA is not set
> +# CONFIG_ARCH_UNIPHIER is not set
> +# CONFIG_ARCH_U8500 is not set
> +# CONFIG_ARCH_VEXPRESS is not set
> +# CONFIG_ARCH_WM8850 is not set
> +# CONFIG_ARCH_ZX is not set
> +# CONFIG_ARCH_ZYNQ is not set
> +CONFIG_CPU_V7=y
> +CONFIG_CPU_32v6K=y
> +CONFIG_CPU_32v7=y
> +CONFIG_CPU_ABRT_EV7=y
> +CONFIG_CPU_PABRT_V7=y
> +CONFIG_CPU_CACHE_V7=y
> +CONFIG_CPU_CACHE_VIPT=y
> +CONFIG_CPU_COPY_V6=y
> +CONFIG_CPU_TLB_V7=y
> +CONFIG_CPU_HAS_ASID=y
> +CONFIG_CPU_CP15=y
> +CONFIG_CPU_CP15_MMU=y
> +# CONFIG_ARM_LPAE is not set
> +# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
> +CONFIG_ARM_THUMB=y
> +# CONFIG_ARM_THUMBEE is not set
> +CONFIG_ARM_VIRT_EXT=y
> +# CONFIG_SWP_EMULATE is not set
> +# CONFIG_CPU_ICACHE_DISABLE is not set
> +# CONFIG_CPU_DCACHE_DISABLE is not set
> +# CONFIG_CPU_BPREDICT_DISABLE is not set
> +CONFIG_KUSER_HELPERS=y
> +# CONFIG_VDSO is not set
> +CONFIG_OUTER_CACHE=y
> +CONFIG_OUTER_CACHE_SYNC=y
> +CONFIG_MIGHT_HAVE_CACHE_L2X0=y
> +CONFIG_CACHE_L2X0=y
> +# CONFIG_PL310_ERRATA_588369 is not set
> +# CONFIG_PL310_ERRATA_727915 is not set
> +# CONFIG_PL310_ERRATA_753970 is not set
> +# CONFIG_PL310_ERRATA_769419 is not set
> +CONFIG_ARM_L1_CACHE_SHIFT_6=y
> +CONFIG_ARM_L1_CACHE_SHIFT=6
> +CONFIG_ARM_DMA_MEM_BUFFERABLE=y
> +CONFIG_ARM_HEAVY_MB=y
> +CONFIG_DEBUG_RODATA=y
> +CONFIG_DEBUG_ALIGN_RODATA=y
> +CONFIG_MULTI_IRQ_HANDLER=y
> +# CONFIG_ARM_ERRATA_430973 is not set
> +# CONFIG_ARM_ERRATA_720789 is not set
> +# CONFIG_ARM_ERRATA_754322 is not set
> +# CONFIG_ARM_ERRATA_775420 is not set
> +# CONFIG_ARM_ERRATA_773022 is not set
> +# CONFIG_ARM_ERRATA_818325_852422 is not set
> +# CONFIG_ARM_ERRATA_821420 is not set
> +# CONFIG_ARM_ERRATA_825619 is not set
> +# CONFIG_ARM_ERRATA_852421 is not set
> +# CONFIG_ARM_ERRATA_852423 is not set
> +# CONFIG_PCI is not set
> +# CONFIG_PCI_DOMAINS_GENERIC is not set
> +# CONFIG_PCI_SYSCALL is not set
> +# CONFIG_PCCARD is not set
> +CONFIG_HAVE_SMP=y
> +# CONFIG_SMP is not set
> +# CONFIG_HAVE_ARM_ARCH_TIMER is not set
> +CONFIG_VMSPLIT_3G=y
> +# CONFIG_VMSPLIT_3G_OPT is not set
> +# CONFIG_VMSPLIT_2G is not set
> +# CONFIG_VMSPLIT_1G is not set
> +CONFIG_PAGE_OFFSET=0xC0000000
> +# CONFIG_ARM_PSCI is not set
> +CONFIG_ARCH_NR_GPIO=0
> +CONFIG_PREEMPT_NONE=y
> +# CONFIG_PREEMPT_VOLUNTARY is not set
> +# CONFIG_PREEMPT is not set
> +CONFIG_HZ_FIXED=0
> +CONFIG_HZ_100=y
> +# CONFIG_HZ_200 is not set
> +# CONFIG_HZ_250 is not set
> +# CONFIG_HZ_300 is not set
> +# CONFIG_HZ_500 is not set
> +# CONFIG_HZ_1000 is not set
> +CONFIG_HZ=100
> +CONFIG_SCHED_HRTICK=y
> +# CONFIG_THUMB2_KERNEL is not set
> +CONFIG_ARM_PATCH_IDIV=y
> +CONFIG_AEABI=y
> +# CONFIG_OABI_COMPAT is not set
> +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set
> +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
> +CONFIG_HAVE_ARCH_PFN_VALID=y
> +# CONFIG_HIGHMEM is not set
> +CONFIG_CPU_SW_DOMAIN_PAN=y
> +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
> +# CONFIG_ARM_MODULE_PLTS is not set
> +CONFIG_FLATMEM=y
> +CONFIG_FLAT_NODE_MEM_MAP=y
> +CONFIG_HAVE_MEMBLOCK=y
> +CONFIG_NO_BOOTMEM=y
> +CONFIG_MEMORY_ISOLATION=y
> +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
> +CONFIG_SPLIT_PTLOCK_CPUS=4
> +CONFIG_COMPACTION=y
> +CONFIG_MIGRATION=y
> +# CONFIG_PHYS_ADDR_T_64BIT is not set
> +# CONFIG_KSM is not set
> +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
> +CONFIG_NEED_PER_CPU_KM=y
> +# CONFIG_CLEANCACHE is not set
> +CONFIG_CMA=y
> +# CONFIG_CMA_DEBUG is not set
> +CONFIG_CMA_DEBUGFS=y
> +CONFIG_CMA_AREAS=7
> +# CONFIG_ZPOOL is not set
> +# CONFIG_ZBUD is not set
> +# CONFIG_ZSMALLOC is not set
> +CONFIG_GENERIC_EARLY_IOREMAP=y
> +# CONFIG_IDLE_PAGE_TRACKING is not set
> +CONFIG_FRAME_VECTOR=y
> +CONFIG_FORCE_MAX_ZONEORDER=15
> +CONFIG_ALIGNMENT_TRAP=y
> +CONFIG_UACCESS_WITH_MEMCPY=y
> +# CONFIG_SECCOMP is not set
> +CONFIG_SWIOTLB=y
> +CONFIG_IOMMU_HELPER=y
> +# CONFIG_PARAVIRT is not set
> +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
> +# CONFIG_XEN is not set
> +CONFIG_USE_OF=y
> +# CONFIG_ATAGS is not set
> +CONFIG_ZBOOT_ROM_TEXT=0x0
> +CONFIG_ZBOOT_ROM_BSS=0x0
> +# CONFIG_ARM_APPENDED_DTB is not set
> +CONFIG_CMDLINE="console=ttyS0,115200 initrd=0x21100000,25165824 root=/dev/ram0 rw"
> +CONFIG_KEXEC=y
> +# CONFIG_CRASH_DUMP is not set
> +CONFIG_AUTO_ZRELADDR=y
> +# CONFIG_EFI is not set
> +# CONFIG_CPU_FREQ is not set
> +CONFIG_CPU_IDLE=y
> +# CONFIG_CPU_IDLE_GOV_LADDER is not set
> +CONFIG_CPU_IDLE_GOV_MENU=y
> +# CONFIG_ARM_CPUIDLE is not set
> +CONFIG_ARM_AT91_CPUIDLE=y
> +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
> +CONFIG_VFP=y
> +CONFIG_VFPv3=y
> +CONFIG_NEON=y
> +CONFIG_KERNEL_MODE_NEON=y
> +# CONFIG_DNS_RESOLVER is not set
> +# CONFIG_BATMAN_ADV is not set
> +CONFIG_CAN_M_CAN=y
> +CONFIG_WEXT_CORE=y
> +CONFIG_WEXT_PROC=y
> +CONFIG_CFG80211=y
> +# CONFIG_NL80211_TESTMODE is not set
> +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
> +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
> +# CONFIG_CFG80211_DEFAULT_PS is not set
> +# CONFIG_CFG80211_DEBUGFS is not set
> +# CONFIG_CFG80211_INTERNAL_REGDB is not set
> +CONFIG_CFG80211_CRDA_SUPPORT=y
> +CONFIG_CFG80211_WEXT=y
> +# CONFIG_LIB80211 is not set
> +CONFIG_MAC80211=y
> +CONFIG_MAC80211_HAS_RC=y
> +CONFIG_MAC80211_RC_MINSTREL=y
> +CONFIG_MAC80211_RC_MINSTREL_HT=y
> +# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
> +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
> +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
> +# CONFIG_MAC80211_MESH is not set
> +CONFIG_MAC80211_LEDS=y
> +# CONFIG_MAC80211_DEBUGFS is not set
> +# CONFIG_MAC80211_MESSAGE_TRACING is not set
> +# CONFIG_MAC80211_DEBUG_MENU is not set
> +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
> +CONFIG_RFKILL=y
> +CONFIG_RFKILL_LEDS=y
> +# CONFIG_RFKILL_INPUT is not set
> +CONFIG_RFKILL_REGULATOR=y
> +# CONFIG_RFKILL_GPIO is not set
> +# CONFIG_NET_9P is not set
> +# CONFIG_CAIF is not set
> +# CONFIG_CEPH_LIB is not set
> +# CONFIG_NFC is not set
> +# CONFIG_LWTUNNEL is not set
> +CONFIG_DST_CACHE=y
> +# CONFIG_NET_DEVLINK is not set
> +CONFIG_MAY_USE_DEVLINK=y
> +CONFIG_HAVE_CBPF_JIT=y
> +CONFIG_CMA_SIZE_MBYTES=16
> +CONFIG_CMA_SIZE_SEL_MBYTES=y
> +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
> +# CONFIG_CMA_SIZE_SEL_MIN is not set
> +# CONFIG_CMA_SIZE_SEL_MAX is not set
> +CONFIG_CMA_ALIGNMENT=8
> +# CONFIG_BRCMSTB_GISB_ARB is not set
> +# CONFIG_VEXPRESS_CONFIG is not set
> +# CONFIG_CONNECTOR is not set
> +CONFIG_MTD=y
> +CONFIG_MTD_TESTS=m
> +# CONFIG_MTD_REDBOOT_PARTS is not set
> +CONFIG_MTD_CMDLINE_PARTS=y
> +# CONFIG_MTD_AFS_PARTS is not set
> +CONFIG_MTD_OF_PARTS=y
> +# CONFIG_MTD_AR7_PARTS is not set
> +# CONFIG_MTD_DATAFLASH is not set
> +CONFIG_MTD_M25P80=y
> +CONFIG_MTD_SPI_NOR=y
> +# CONFIG_MTD_MT81xx_NOR is not set
> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
> +CONFIG_SPI_ATMEL_QUADSPI=y
> +# CONFIG_SPI_CADENCE_QUADSPI is not set
> +CONFIG_MTD_UBI=y
> +CONFIG_MTD_UBI_WL_THRESHOLD=4096
> +CONFIG_MTD_UBI_BEB_LIMIT=20
> +CONFIG_MTD_UBI_FASTMAP=y
> +CONFIG_MTD_UBI_GLUEBI=m
> +# CONFIG_MTD_UBI_BLOCK is not set
> +CONFIG_DTC=y
> +CONFIG_OF=y
> +# CONFIG_OF_UNITTEST is not set
> +CONFIG_OF_FLATTREE=y
> +CONFIG_OF_EARLY_FLATTREE=y
> +CONFIG_OF_ADDRESS=y
> +CONFIG_OF_IRQ=y
> +CONFIG_OF_NET=y
> +CONFIG_OF_MDIO=y
> +CONFIG_OF_RESERVED_MEM=y
> +# CONFIG_OF_OVERLAY is not set
> +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
> +# CONFIG_PARPORT is not set
> +CONFIG_BLK_DEV=y
> +# CONFIG_BLK_DEV_NULL_BLK is not set
> +# CONFIG_BLK_DEV_COW_COMMON is not set
> +CONFIG_BLK_DEV_LOOP=y
> +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
> +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
> +# CONFIG_BLK_DEV_DRBD is not set
> +# CONFIG_BLK_DEV_NBD is not set
> +CONFIG_BLK_DEV_RAM=y
> +CONFIG_BLK_DEV_RAM_COUNT=4
> +CONFIG_BLK_DEV_RAM_SIZE=8192
> +# CONFIG_CDROM_PKTCDVD is not set
> +# CONFIG_ATA_OVER_ETH is not set
> +# CONFIG_MG_DISK is not set
> +# CONFIG_BLK_DEV_RBD is not set
> +# CONFIG_NVME_TARGET is not set
> +# CONFIG_NET_VENDOR_ARC is not set
> +# CONFIG_NET_VENDOR_CIRRUS is not set
> +# CONFIG_DM9000 is not set
> +# CONFIG_DNET is not set
> +# CONFIG_NET_VENDOR_EZCHIP is not set
> +# CONFIG_NET_VENDOR_HISILICON is not set
> +# CONFIG_NET_VENDOR_MICROCHIP is not set
> +# CONFIG_NET_VENDOR_QUALCOMM is not set
> +# CONFIG_NET_VENDOR_RENESAS is not set
> +# CONFIG_NET_VENDOR_ROCKER is not set
> +# CONFIG_NET_VENDOR_SAMSUNG is not set
> +# CONFIG_NET_VENDOR_SYNOPSYS is not set
> +# CONFIG_NET_VENDOR_VIA is not set
> +# CONFIG_NET_VENDOR_WIZNET is not set
> +# CONFIG_DAVICOM_PHY is not set
> +# CONFIG_USB_HSO is not set
> +CONFIG_LIBERTAS_THINFIRM=m
> +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set
> +CONFIG_LIBERTAS_THINFIRM_USB=m
> +CONFIG_RTL8187_LEDS=y
> +# CONFIG_INPUT_POLLDEV is not set
> +# CONFIG_INPUT_MOUSEDEV is not set
> +# CONFIG_INPUT_JOYDEV is not set
> +CONFIG_INPUT_EVDEV=y
> +# CONFIG_INPUT_EVBUG is not set
> +# CONFIG_TOUCHSCREEN_ADS7846 is not set
> +# CONFIG_TOUCHSCREEN_AD7877 is not set
> +# CONFIG_TOUCHSCREEN_AD7879 is not set
> +CONFIG_TOUCHSCREEN_ATMEL_MXT=y
> +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set
> +CONFIG_INPUT_MISC=y
> +# CONFIG_INPUT_AD714X is not set
> +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
> +CONFIG_INPUT_ATMEL_PTC=m
> +# CONFIG_INPUT_BMA150 is not set
> +# CONFIG_INPUT_E3X0_BUTTON is not set
> +# CONFIG_INPUT_MMA8450 is not set
> +# CONFIG_INPUT_MPU3050 is not set
> +# CONFIG_INPUT_GP2A is not set
> +# CONFIG_INPUT_GPIO_BEEPER is not set
> +# CONFIG_INPUT_GPIO_TILT_POLLED is not set
> +# CONFIG_INPUT_GPIO_DECODER is not set
> +# CONFIG_INPUT_ATI_REMOTE2 is not set
> +# CONFIG_INPUT_KEYSPAN_REMOTE is not set
> +# CONFIG_INPUT_KXTJ9 is not set
> +# CONFIG_INPUT_POWERMATE is not set
> +# CONFIG_INPUT_YEALINK is not set
> +# CONFIG_INPUT_CM109 is not set
> +# CONFIG_INPUT_REGULATOR_HAPTIC is not set
> +# CONFIG_INPUT_UINPUT is not set
> +# CONFIG_INPUT_PCF8574 is not set
> +# CONFIG_INPUT_PWM_BEEPER is not set
> +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
> +# CONFIG_INPUT_ADXL34X is not set
> +# CONFIG_INPUT_IMS_PCU is not set
> +# CONFIG_INPUT_CMA3000 is not set
> +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set
> +# CONFIG_INPUT_DRV260X_HAPTICS is not set
> +# CONFIG_INPUT_DRV2665_HAPTICS is not set
> +# CONFIG_INPUT_DRV2667_HAPTICS is not set
> +CONFIG_GENERIC_PINCONF=y
> +# CONFIG_DEBUG_PINCTRL is not set
> +CONFIG_PINCTRL_AT91PIO4=y
> +# CONFIG_PINCTRL_AMD is not set
> +CONFIG_POWER_RESET_AT91_SAMA5D2_SHDWC=y
> +CONFIG_BATTERY_ACT8945A=y
> +CONFIG_SAMA5D4_WATCHDOG=y
> +# CONFIG_CADENCE_WATCHDOG is not set
> +# CONFIG_DW_WATCHDOG is not set
> +# CONFIG_MAX63XX_WATCHDOG is not set
> +# CONFIG_MEN_A21_WDT is not set
> +CONFIG_MFD_ACT8945A=y
> +CONFIG_MFD_ATMEL_FLEXCOM=y
> +CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
> +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
> +CONFIG_REGULATOR_ACT8865=y
> +CONFIG_REGULATOR_ACT8945A=y
> +# CONFIG_REGULATOR_AD5398 is not set
> +# CONFIG_REGULATOR_ANATOP is not set
> +# CONFIG_REGULATOR_DA9210 is not set
> +# CONFIG_REGULATOR_DA9211 is not set
> +# CONFIG_REGULATOR_FAN53555 is not set
> +# CONFIG_REGULATOR_GPIO is not set
> +# CONFIG_REGULATOR_ISL9305 is not set
> +# CONFIG_REGULATOR_ISL6271A is not set
> +# CONFIG_REGULATOR_LP3971 is not set
> +# CONFIG_REGULATOR_LP3972 is not set
> +# CONFIG_REGULATOR_LP872X is not set
> +# CONFIG_REGULATOR_LP8755 is not set
> +# CONFIG_REGULATOR_LTC3589 is not set
> +# CONFIG_REGULATOR_LTC3676 is not set
> +# CONFIG_REGULATOR_MAX1586 is not set
> +# CONFIG_REGULATOR_MAX8649 is not set
> +# CONFIG_REGULATOR_MAX8660 is not set
> +# CONFIG_REGULATOR_MAX8952 is not set
> +# CONFIG_REGULATOR_MT6311 is not set
> +# CONFIG_REGULATOR_PFUZE100 is not set
> +# CONFIG_REGULATOR_PV88060 is not set
> +# CONFIG_REGULATOR_PV88080 is not set
> +# CONFIG_REGULATOR_PV88090 is not set
> +# CONFIG_REGULATOR_PWM is not set
> +# CONFIG_REGULATOR_TPS51632 is not set
> +# CONFIG_REGULATOR_TPS62360 is not set
> +# CONFIG_REGULATOR_TPS65023 is not set
> +# CONFIG_REGULATOR_TPS6507X is not set
> +# CONFIG_REGULATOR_TPS6524X is not set
> +CONFIG_MEDIA_SUPPORT=y
> +CONFIG_MEDIA_CONTROLLER=y
> +# CONFIG_MEDIA_CONTROLLER_DVB is not set
> +CONFIG_VIDEO_V4L2_SUBDEV_API=y
> +# CONFIG_VIDEO_XILINX is not set
> +CONFIG_VIDEO_ATMEL_ISC=y
> +CONFIG_VIDEO_ATMEL_ISI=y
> +# CONFIG_V4L_MEM2MEM_DRIVERS is not set
> +# CONFIG_V4L_TEST_DRIVERS is not set
> +# CONFIG_VIDEO_ADV7180 is not set
> +# CONFIG_VIDEO_ADV7604 is not set
> +# CONFIG_VIDEO_ADV7842 is not set
> +# CONFIG_VIDEO_AD5820 is not set
> +# CONFIG_VIDEO_TC358743 is not set
> +# CONFIG_VIDEO_ADV7511 is not set
> +# CONFIG_VIDEO_AD9389B is not set
> +CONFIG_VIDEO_OV7740=m
> +CONFIG_VIDEO_OV9650=m
> +# CONFIG_VIDEO_MT9M032 is not set
> +# CONFIG_VIDEO_MT9P031 is not set
> +# CONFIG_VIDEO_MT9T001 is not set
> +# CONFIG_VIDEO_MT9V032 is not set
> +# CONFIG_VIDEO_NOON010PC30 is not set
> +# CONFIG_VIDEO_M5MOLS is not set
> +# CONFIG_VIDEO_S5K6AA is not set
> +# CONFIG_VIDEO_S5K6A3 is not set
> +# CONFIG_VIDEO_S5K4ECGX is not set
> +# CONFIG_VIDEO_S5K5BAF is not set
> +# CONFIG_VIDEO_SMIAPP is not set
> +# CONFIG_VIDEO_S5C73M3 is not set
> +# CONFIG_VIDEO_ADP1653 is not set
> +# CONFIG_VIDEO_AS3645A is not set
> +# CONFIG_VIDEO_LM3560 is not set
> +# CONFIG_VIDEO_LM3646 is not set
> +# CONFIG_VIDEO_GS1662 is not set
> +CONFIG_DRM_SII902X=y
> +# CONFIG_FB_BACKLIGHT is not set
> +# CONFIG_FB_MODE_HELPERS is not set
> +# CONFIG_FB_ATMEL is not set
> +CONFIG_LCD_CLASS_DEVICE=y
> +# CONFIG_LCD_L4F00242T03 is not set
> +# CONFIG_LCD_LMS283GF05 is not set
> +# CONFIG_LCD_LTV350QV is not set
> +# CONFIG_LCD_ILI922X is not set
> +# CONFIG_LCD_ILI9320 is not set
> +# CONFIG_LCD_TDO24M is not set
> +# CONFIG_LCD_VGG2432A4 is not set
> +# CONFIG_LCD_PLATFORM is not set
> +# CONFIG_LCD_S6E63M0 is not set
> +# CONFIG_LCD_LD9040 is not set
> +# CONFIG_LCD_AMS369FG06 is not set
> +# CONFIG_LCD_LMS501KF03 is not set
> +# CONFIG_LCD_HX8357 is not set
> +CONFIG_BACKLIGHT_CLASS_DEVICE=y
> +# CONFIG_BACKLIGHT_GENERIC is not set
> +CONFIG_BACKLIGHT_PWM=y
> +# CONFIG_BACKLIGHT_PM8941_WLED is not set
> +# CONFIG_BACKLIGHT_ADP8860 is not set
> +# CONFIG_BACKLIGHT_ADP8870 is not set
> +# CONFIG_BACKLIGHT_LM3630A is not set
> +# CONFIG_BACKLIGHT_LM3639 is not set
> +# CONFIG_BACKLIGHT_LP855X is not set
> +# CONFIG_BACKLIGHT_GPIO is not set
> +# CONFIG_BACKLIGHT_LV5207LP is not set
> +# CONFIG_BACKLIGHT_BD6107 is not set
> +# CONFIG_SND_HRTIMER is not set
> +# CONFIG_SND_DYNAMIC_MINORS is not set
> +# CONFIG_SND_AT91_SOC_SAM9G20_WM8731 is not set
> +# CONFIG_SND_AT91_SOC_SAM9X5_WM8731 is not set
> +CONFIG_SND_ATMEL_SOC_CLASSD=y
> +CONFIG_SND_ATMEL_SOC_PDMIC=y
> +CONFIG_SND_ATMEL_SOC_I2S=y
> +# CONFIG_SND_SOC_WM8731 is not set
> +CONFIG_MMC_SDHCI=y
> +CONFIG_MMC_SDHCI_IO_ACCESSORS=y
> +CONFIG_MMC_SDHCI_PLTFM=y
> +# CONFIG_MMC_SDHCI_OF_ARASAN is not set
> +CONFIG_MMC_SDHCI_OF_AT91=y
> +# CONFIG_MMC_SDHCI_F_SDH30 is not set
> +CONFIG_MMC_ATMELMCI=y
> +# CONFIG_MMC_SPI is not set
> +# CONFIG_MMC_DW is not set
> +CONFIG_LEDS_REGULATOR=m
> +# CONFIG_LEDS_BD2802 is not set
> +# CONFIG_LEDS_LT3593 is not set
> +CONFIG_LEDS_BLINKM=m
> +# CONFIG_RTC_DRV_AT91SAM9 is not set
> +CONFIG_AT_XDMAC=y
> +CONFIG_STAGING=y
> +# CONFIG_PRISM2_USB is not set
> +# CONFIG_COMEDI is not set
> +# CONFIG_RTLLIB is not set
> +# CONFIG_R8712U is not set
> +# CONFIG_R8188EU is not set
> +# CONFIG_VT6656 is not set
> +# CONFIG_ADIS16201 is not set
> +# CONFIG_ADIS16203 is not set
> +# CONFIG_ADIS16209 is not set
> +# CONFIG_ADIS16240 is not set
> +# CONFIG_SCA3000 is not set
> +# CONFIG_AD7606 is not set
> +# CONFIG_AD7780 is not set
> +# CONFIG_AD7816 is not set
> +# CONFIG_AD7192 is not set
> +# CONFIG_AD7280 is not set
> +# CONFIG_ADT7316 is not set
> +# CONFIG_AD7150 is not set
> +# CONFIG_AD7152 is not set
> +# CONFIG_AD7746 is not set
> +# CONFIG_AD9832 is not set
> +# CONFIG_AD9834 is not set
> +# CONFIG_ADIS16060 is not set
> +# CONFIG_AD5933 is not set
> +# CONFIG_SENSORS_ISL29018 is not set
> +# CONFIG_SENSORS_ISL29028 is not set
> +# CONFIG_TSL2583 is not set
> +# CONFIG_TSL2x7x is not set
> +# CONFIG_ADE7753 is not set
> +# CONFIG_ADE7754 is not set
> +# CONFIG_ADE7758 is not set
> +# CONFIG_ADE7759 is not set
> +# CONFIG_ADE7854 is not set
> +# CONFIG_AD2S90 is not set
> +# CONFIG_AD2S1200 is not set
> +# CONFIG_AD2S1210 is not set
> +# Speakup console speech
> +# CONFIG_SPEAKUP is not set
> +# CONFIG_STAGING_MEDIA is not set
> +# CONFIG_STAGING_BOARD is not set
> +# CONFIG_LTE_GDM724X is not set
> +# CONFIG_MTD_SPINAND_MT29F is not set
> +# CONFIG_LNET is not set
> +# CONFIG_GS_FPGABOOT is not set
> +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
> +# CONFIG_FB_TFT is not set
> +# CONFIG_MOST is not set
> +# CONFIG_KS7010 is not set
> +# CONFIG_GREYBUS is not set
> +# CONFIG_GOLDFISH is not set
> +# CONFIG_CHROME_PLATFORMS is not set
> +CONFIG_CLKDEV_LOOKUP=y
> +CONFIG_HAVE_CLK_PREPARE=y
> +CONFIG_COMMON_CLK=y
> +# CONFIG_COMMON_CLK_SI5351 is not set
> +# CONFIG_COMMON_CLK_SI514 is not set
> +# CONFIG_COMMON_CLK_SI570 is not set
> +# CONFIG_COMMON_CLK_CDCE706 is not set
> +# CONFIG_COMMON_CLK_CDCE925 is not set
> +# CONFIG_COMMON_CLK_CS2000_CP is not set
> +# CONFIG_CLK_QORIQ is not set
> +# CONFIG_COMMON_CLK_NXP is not set
> +# CONFIG_COMMON_CLK_PWM is not set
> +# CONFIG_COMMON_CLK_PXA is not set
> +# CONFIG_COMMON_CLK_PIC32 is not set
> +CONFIG_CLKSRC_OF=y
> +CONFIG_CLKSRC_PROBE=y
> +# CONFIG_ARM_TIMER_SP804 is not set
> +CONFIG_ATMEL_PIT=y
> +# CONFIG_SH_TIMER_CMT is not set
> +# CONFIG_SH_TIMER_MTU2 is not set
> +# CONFIG_SH_TIMER_TMU is not set
> +# CONFIG_EM_TIMER_STI is not set
> +# CONFIG_MAILBOX is not set
> +# CONFIG_IOMMU_SUPPORT is not set
> +# CONFIG_STE_MODEM_RPROC is not set
> +CONFIG_AT91_SOC_ID=y
> +# CONFIG_SOC_BRCMSTB is not set
> +# CONFIG_SUNXI_SRAM is not set
> +# CONFIG_SOC_TI is not set
> +# CONFIG_PM_DEVFREQ is not set
> +# CONFIG_EXTCON is not set
> +CONFIG_MEMORY=y
> +CONFIG_ATMEL_SDRAMC=y
> +CONFIG_ATMEL_EBI=y
> +CONFIG_IIO=y
> +CONFIG_IIO_BUFFER=y
> +# CONFIG_IIO_BUFFER_CB is not set
> +CONFIG_IIO_KFIFO_BUF=y
> +CONFIG_IIO_TRIGGERED_BUFFER=y
> +# CONFIG_IIO_CONFIGFS is not set
> +CONFIG_IIO_TRIGGER=y
> +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
> +# CONFIG_IIO_SW_DEVICE is not set
> +# CONFIG_IIO_SW_TRIGGER is not set
> +# CONFIG_BMA180 is not set
> +# CONFIG_BMA220 is not set
> +# CONFIG_BMC150_ACCEL is not set
> +# CONFIG_DMARD06 is not set
> +# CONFIG_DMARD09 is not set
> +# CONFIG_IIO_ST_ACCEL_3AXIS is not set
> +# CONFIG_KXSD9 is not set
> +# CONFIG_KXCJK1013 is not set
> +# CONFIG_MC3230 is not set
> +# CONFIG_MMA7455_I2C is not set
> +# CONFIG_MMA7455_SPI is not set
> +# CONFIG_MMA7660 is not set
> +# CONFIG_MMA8452 is not set
> +# CONFIG_MMA9551 is not set
> +# CONFIG_MMA9553 is not set
> +# CONFIG_MXC4005 is not set
> +# CONFIG_MXC6255 is not set
> +# CONFIG_STK8312 is not set
> +# CONFIG_STK8BA50 is not set
> +# CONFIG_AD7266 is not set
> +# CONFIG_AD7291 is not set
> +# CONFIG_AD7298 is not set
> +# CONFIG_AD7476 is not set
> +# CONFIG_AD7791 is not set
> +# CONFIG_AD7793 is not set
> +# CONFIG_AD7887 is not set
> +# CONFIG_AD7923 is not set
> +# CONFIG_AD799X is not set
> +CONFIG_AT91_ADC=y
> +CONFIG_AT91_SAMA5D2_ADC=y
> +# CONFIG_CC10001_ADC is not set
> +# CONFIG_HI8435 is not set
> +# CONFIG_INA2XX_ADC is not set
> +# CONFIG_LTC2485 is not set
> +# CONFIG_MAX1027 is not set
> +# CONFIG_MAX1363 is not set
> +# CONFIG_MCP320X is not set
> +# CONFIG_MCP3422 is not set
> +# CONFIG_NAU7802 is not set
> +# CONFIG_TI_ADC081C is not set
> +# CONFIG_TI_ADC0832 is not set
> +# CONFIG_TI_ADC12138 is not set
> +# CONFIG_TI_ADC128S052 is not set
> +# CONFIG_TI_ADC161S626 is not set
> +# CONFIG_TI_ADS1015 is not set
> +# CONFIG_TI_ADS8688 is not set
> +# CONFIG_VF610_ADC is not set
> +# CONFIG_AD8366 is not set
> +# CONFIG_ATLAS_PH_SENSOR is not set
> +# CONFIG_IAQCORE is not set
> +# CONFIG_VZ89X is not set
> +# CONFIG_IIO_SSP_SENSORHUB is not set
> +# CONFIG_AD5064 is not set
> +# CONFIG_AD5360 is not set
> +# CONFIG_AD5380 is not set
> +# CONFIG_AD5421 is not set
> +# CONFIG_AD5446 is not set
> +# CONFIG_AD5449 is not set
> +# CONFIG_AD5592R is not set
> +# CONFIG_AD5593R is not set
> +# CONFIG_AD5504 is not set
> +# CONFIG_AD5624R_SPI is not set
> +# CONFIG_AD5686 is not set
> +# CONFIG_AD5755 is not set
> +# CONFIG_AD5761 is not set
> +# CONFIG_AD5764 is not set
> +# CONFIG_AD5791 is not set
> +# CONFIG_AD7303 is not set
> +# CONFIG_AD8801 is not set
> +# CONFIG_M62332 is not set
> +# CONFIG_MAX517 is not set
> +# CONFIG_MAX5821 is not set
> +# CONFIG_MCP4725 is not set
> +# CONFIG_MCP4922 is not set
> +# CONFIG_VF610_DAC is not set
> +# CONFIG_AD9523 is not set
> +# CONFIG_ADF4350 is not set
> +# CONFIG_ADIS16080 is not set
> +# CONFIG_ADIS16130 is not set
> +# CONFIG_ADIS16136 is not set
> +# CONFIG_ADIS16260 is not set
> +# CONFIG_ADXRS450 is not set
> +# CONFIG_BMG160 is not set
> +# CONFIG_IIO_ST_GYRO_3AXIS is not set
> +# CONFIG_ITG3200 is not set
> +# CONFIG_AFE4403 is not set
> +# CONFIG_AFE4404 is not set
> +# CONFIG_MAX30100 is not set
> +# CONFIG_AM2315 is not set
> +# CONFIG_DHT11 is not set
> +# CONFIG_HDC100X is not set
> +# CONFIG_HTU21 is not set
> +# CONFIG_SI7005 is not set
> +# CONFIG_SI7020 is not set
> +# CONFIG_ADIS16400 is not set
> +# CONFIG_ADIS16480 is not set
> +# CONFIG_BMI160_I2C is not set
> +# CONFIG_BMI160_SPI is not set
> +# CONFIG_KMX61 is not set
> +# CONFIG_INV_MPU6050_SPI is not set
> +# CONFIG_ADJD_S311 is not set
> +# CONFIG_AL3320A is not set
> +# CONFIG_APDS9300 is not set
> +# CONFIG_APDS9960 is not set
> +# CONFIG_BH1750 is not set
> +# CONFIG_BH1780 is not set
> +# CONFIG_CM32181 is not set
> +# CONFIG_CM3232 is not set
> +# CONFIG_CM3323 is not set
> +# CONFIG_CM36651 is not set
> +# CONFIG_GP2AP020A00F is not set
> +# CONFIG_ISL29125 is not set
> +# CONFIG_JSA1212 is not set
> +# CONFIG_RPR0521 is not set
> +# CONFIG_LTR501 is not set
> +# CONFIG_MAX44000 is not set
> +# CONFIG_OPT3001 is not set
> +# CONFIG_PA12203001 is not set
> +# CONFIG_SI1145 is not set
> +# CONFIG_STK3310 is not set
> +# CONFIG_TCS3414 is not set
> +# CONFIG_TCS3472 is not set
> +# CONFIG_SENSORS_TSL2563 is not set
> +# CONFIG_TSL4531 is not set
> +# CONFIG_US5182D is not set
> +# CONFIG_VCNL4000 is not set
> +# CONFIG_VEML6070 is not set
> +# CONFIG_AK8974 is not set
> +# CONFIG_AK8975 is not set
> +# CONFIG_AK09911 is not set
> +# CONFIG_BMC150_MAGN_I2C is not set
> +# CONFIG_BMC150_MAGN_SPI is not set
> +# CONFIG_MAG3110 is not set
> +# CONFIG_MMC35240 is not set
> +# CONFIG_IIO_ST_MAGN_3AXIS is not set
> +# CONFIG_SENSORS_HMC5843_I2C is not set
> +# CONFIG_SENSORS_HMC5843_SPI is not set
> +# CONFIG_IIO_INTERRUPT_TRIGGER is not set
> +# CONFIG_IIO_SYSFS_TRIGGER is not set
> +# CONFIG_DS1803 is not set
> +# CONFIG_MAX5487 is not set
> +# CONFIG_MCP4131 is not set
> +# CONFIG_MCP4531 is not set
> +# CONFIG_TPL0102 is not set
> +# CONFIG_BMP280 is not set
> +# CONFIG_HP03 is not set
> +# CONFIG_MPL115_I2C is not set
> +# CONFIG_MPL115_SPI is not set
> +# CONFIG_MPL3115 is not set
> +# CONFIG_MS5611 is not set
> +# CONFIG_MS5637 is not set
> +# CONFIG_IIO_ST_PRESS is not set
> +# CONFIG_T5403 is not set
> +# CONFIG_HP206C is not set
> +# CONFIG_ZPA2326 is not set
> +# CONFIG_AS3935 is not set
> +# CONFIG_LIDAR_LITE_V2 is not set
> +# CONFIG_SX9500 is not set
> +# CONFIG_MAXIM_THERMOCOUPLE is not set
> +# CONFIG_MLX90614 is not set
> +# CONFIG_TMP006 is not set
> +# CONFIG_TSYS01 is not set
> +# CONFIG_TSYS02D is not set
> +CONFIG_PWM=y
> +CONFIG_PWM_SYSFS=y
> +CONFIG_PWM_ATMEL=y
> +CONFIG_PWM_ATMEL_HLCDC_PWM=y
> +CONFIG_PWM_ATMEL_TCB=y
> +# CONFIG_PWM_FSL_FTM is not set
> +# CONFIG_PWM_PCA9685 is not set
> +CONFIG_IRQCHIP=y
> +CONFIG_ARM_GIC_MAX_NR=1
> +CONFIG_ATMEL_AIC5_IRQ=y
> +# CONFIG_IPACK_BUS is not set
> +# CONFIG_RESET_CONTROLLER is not set
> +# CONFIG_FMC is not set
> +# CONFIG_GENERIC_PHY is not set
> +# CONFIG_PHY_PXA_28NM_HSIC is not set
> +# CONFIG_PHY_PXA_28NM_USB2 is not set
> +# CONFIG_BCM_KONA_USB2_PHY is not set
> +# CONFIG_POWERCAP is not set
> +# CONFIG_MCB is not set
> +# CONFIG_RAS is not set
> +# CONFIG_ANDROID is not set
> +CONFIG_NVMEM=y
> +# CONFIG_STM is not set
> +# CONFIG_INTEL_TH is not set
> +# CONFIG_FPGA is not set
> +# CONFIG_FIRMWARE_MEMMAP is not set
> +# CONFIG_FW_CFG_SYSFS is not set
> +CONFIG_HAVE_ARM_SMCCC=y
> +CONFIG_DCACHE_WORD_ACCESS=y
> +# CONFIG_EXT2_FS is not set
> +# CONFIG_EXT3_FS is not set
> +CONFIG_EXT4_FS=y
> +CONFIG_EXT4_USE_FOR_EXT2=y
> +# CONFIG_EXT4_FS_POSIX_ACL is not set
> +# CONFIG_EXT4_FS_SECURITY is not set
> +# CONFIG_EXT4_ENCRYPTION is not set
> +# CONFIG_EXT4_DEBUG is not set
> +CONFIG_JBD2=y
> +# CONFIG_JBD2_DEBUG is not set
> +CONFIG_FS_MBCACHE=y
> +# CONFIG_REISERFS_FS is not set
> +# CONFIG_JFS_FS is not set
> +# CONFIG_XFS_FS is not set
> +# CONFIG_GFS2_FS is not set
> +# CONFIG_OCFS2_FS is not set
> +# CONFIG_BTRFS_FS is not set
> +# CONFIG_NILFS2_FS is not set
> +# CONFIG_F2FS_FS is not set
> +# CONFIG_FS_POSIX_ACL is not set
> +CONFIG_EXPORTFS=y
> +# CONFIG_EXPORTFS_BLOCK_OPS is not set
> +CONFIG_FILE_LOCKING=y
> +CONFIG_MANDATORY_FILE_LOCKING=y
> +# CONFIG_FS_ENCRYPTION is not set
> +CONFIG_FSNOTIFY=y
> +CONFIG_DNOTIFY=y
> +CONFIG_INOTIFY_USER=y
> +CONFIG_FANOTIFY=y
> +# CONFIG_QUOTA is not set
> +# CONFIG_QUOTACTL is not set
> +# CONFIG_AUTOFS4_FS is not set
> +# CONFIG_FUSE_FS is not set
> +CONFIG_OVERLAY_FS=y
> +# CONFIG_FSCACHE is not set
> +# CONFIG_ISO9660_FS is not set
> +# CONFIG_UDF_FS is not set
> +CONFIG_FAT_FS=y
> +# CONFIG_MSDOS_FS is not set
> +CONFIG_VFAT_FS=y
> +CONFIG_FAT_DEFAULT_CODEPAGE=437
> +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
> +# CONFIG_FAT_DEFAULT_UTF8 is not set
> +# CONFIG_NTFS_FS is not set
> +CONFIG_PROC_FS=y
> +CONFIG_PROC_SYSCTL=y
> +CONFIG_PROC_PAGE_MONITOR=y
> +# CONFIG_PROC_CHILDREN is not set
> +CONFIG_KERNFS=y
> +CONFIG_SYSFS=y
> +CONFIG_TMPFS=y
> +# CONFIG_TMPFS_POSIX_ACL is not set
> +# CONFIG_TMPFS_XATTR is not set
> +# CONFIG_HUGETLB_PAGE is not set
> +CONFIG_CONFIGFS_FS=y
> +CONFIG_MISC_FILESYSTEMS=y
> +# CONFIG_ORANGEFS_FS is not set
> +# CONFIG_ADFS_FS is not set
> +# CONFIG_AFFS_FS is not set
> +# CONFIG_ECRYPT_FS is not set
> +# CONFIG_HFS_FS is not set
> +# CONFIG_HFSPLUS_FS is not set
> +# CONFIG_BEFS_FS is not set
> +# CONFIG_BFS_FS is not set
> +# CONFIG_EFS_FS is not set
> +# CONFIG_JFFS2_FS is not set
> +CONFIG_UBIFS_FS=y
> +CONFIG_UBIFS_FS_ADVANCED_COMPR=y
> +CONFIG_UBIFS_FS_LZO=y
> +CONFIG_UBIFS_FS_ZLIB=y
> +# CONFIG_UBIFS_ATIME_SUPPORT is not set
> +# CONFIG_LOGFS is not set
> +# CONFIG_CRAMFS is not set
> +# CONFIG_SQUASHFS is not set
> +# CONFIG_VXFS_FS is not set
> +# CONFIG_MINIX_FS is not set
> +# CONFIG_OMFS_FS is not set
> +# CONFIG_HPFS_FS is not set
> +# CONFIG_QNX4FS_FS is not set
> +# CONFIG_QNX6FS_FS is not set
> +# CONFIG_ROMFS_FS is not set
> +# CONFIG_PSTORE is not set
> +# CONFIG_SYSV_FS is not set
> +# CONFIG_UFS_FS is not set
> +CONFIG_NETWORK_FILESYSTEMS=y
> +CONFIG_NFS_FS=y
> +CONFIG_NFS_V2=y
> +CONFIG_NFS_V3=y
> +# CONFIG_NFS_V3_ACL is not set
> +# CONFIG_NFS_V4 is not set
> +# CONFIG_NFS_SWAP is not set
> +CONFIG_ROOT_NFS=y
> +# CONFIG_NFSD is not set
> +CONFIG_GRACE_PERIOD=y
> +CONFIG_LOCKD=y
> +CONFIG_LOCKD_V4=y
> +CONFIG_NFS_COMMON=y
> +CONFIG_SUNRPC=y
> +# CONFIG_SUNRPC_DEBUG is not set
> +# CONFIG_CEPH_FS is not set
> +# CONFIG_CIFS is not set
> +# CONFIG_NCP_FS is not set
> +# CONFIG_CODA_FS is not set
> +# CONFIG_AFS_FS is not set
> +CONFIG_NLS=y
> +CONFIG_NLS_DEFAULT="iso8859-1"
> +CONFIG_NLS_CODEPAGE_437=y
> +# CONFIG_NLS_CODEPAGE_737 is not set
> +# CONFIG_NLS_CODEPAGE_775 is not set
> +CONFIG_NLS_CODEPAGE_850=y
> +# CONFIG_NLS_CODEPAGE_852 is not set
> +# CONFIG_NLS_CODEPAGE_855 is not set
> +# CONFIG_NLS_CODEPAGE_857 is not set
> +# CONFIG_NLS_CODEPAGE_860 is not set
> +# CONFIG_NLS_CODEPAGE_861 is not set
> +# CONFIG_NLS_CODEPAGE_862 is not set
> +# CONFIG_NLS_CODEPAGE_863 is not set
> +# CONFIG_NLS_CODEPAGE_864 is not set
> +# CONFIG_NLS_CODEPAGE_865 is not set
> +# CONFIG_NLS_CODEPAGE_866 is not set
> +# CONFIG_NLS_CODEPAGE_869 is not set
> +# CONFIG_NLS_CODEPAGE_936 is not set
> +# CONFIG_NLS_CODEPAGE_950 is not set
> +# CONFIG_NLS_CODEPAGE_932 is not set
> +# CONFIG_NLS_CODEPAGE_949 is not set
> +# CONFIG_NLS_CODEPAGE_874 is not set
> +# CONFIG_NLS_ISO8859_8 is not set
> +# CONFIG_NLS_CODEPAGE_1250 is not set
> +# CONFIG_NLS_CODEPAGE_1251 is not set
> +# CONFIG_NLS_ASCII is not set
> +CONFIG_NLS_ISO8859_1=y
> +# CONFIG_NLS_ISO8859_2 is not set
> +# CONFIG_NLS_ISO8859_3 is not set
> +# CONFIG_NLS_ISO8859_4 is not set
> +# CONFIG_NLS_ISO8859_5 is not set
> +# CONFIG_NLS_ISO8859_6 is not set
> +# CONFIG_NLS_ISO8859_7 is not set
> +# CONFIG_NLS_ISO8859_9 is not set
> +# CONFIG_NLS_ISO8859_13 is not set
> +# CONFIG_NLS_ISO8859_14 is not set
> +# CONFIG_NLS_ISO8859_15 is not set
> +# CONFIG_NLS_KOI8_R is not set
> +# CONFIG_NLS_KOI8_U is not set
> +# CONFIG_NLS_MAC_ROMAN is not set
> +# CONFIG_NLS_MAC_CELTIC is not set
> +# CONFIG_NLS_MAC_CENTEURO is not set
> +# CONFIG_NLS_MAC_CROATIAN is not set
> +# CONFIG_NLS_MAC_CYRILLIC is not set
> +# CONFIG_NLS_MAC_GAELIC is not set
> +# CONFIG_NLS_MAC_GREEK is not set
> +# CONFIG_NLS_MAC_ICELAND is not set
> +# CONFIG_NLS_MAC_INUIT is not set
> +# CONFIG_NLS_MAC_ROMANIAN is not set
> +# CONFIG_NLS_MAC_TURKISH is not set
> +CONFIG_NLS_UTF8=y
> +# CONFIG_DLM is not set
> +# CONFIG_PRINTK_TIME is not set
> +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
> +# CONFIG_BOOT_PRINTK_DELAY is not set
> +# CONFIG_DYNAMIC_DEBUG is not set
> +# CONFIG_DEBUG_INFO is not set
> +CONFIG_ENABLE_WARN_DEPRECATED=y
> +CONFIG_ENABLE_MUST_CHECK=y
> +CONFIG_FRAME_WARN=1024
> +CONFIG_STRIP_ASM_SYMS=y
> +# CONFIG_READABLE_ASM is not set
> +# CONFIG_UNUSED_SYMBOLS is not set
> +# CONFIG_PAGE_OWNER is not set
> +CONFIG_DEBUG_FS=y
> +# CONFIG_HEADERS_CHECK is not set
> +# CONFIG_DEBUG_SECTION_MISMATCH is not set
> +CONFIG_SECTION_MISMATCH_WARN_ONLY=y
> +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
> +# CONFIG_MAGIC_SYSRQ is not set
> +CONFIG_DEBUG_KERNEL=y
> +# CONFIG_PAGE_EXTENSION is not set
> +# CONFIG_DEBUG_PAGEALLOC is not set
> +# CONFIG_PAGE_POISONING is not set
> +# CONFIG_DEBUG_OBJECTS is not set
> +# CONFIG_DEBUG_SLAB is not set
> +CONFIG_HAVE_DEBUG_KMEMLEAK=y
> +# CONFIG_DEBUG_KMEMLEAK is not set
> +# CONFIG_DEBUG_STACK_USAGE is not set
> +# CONFIG_DEBUG_VM is not set
> +CONFIG_DEBUG_MEMORY_INIT=y
> +# CONFIG_DEBUG_SHIRQ is not set
> +# CONFIG_LOCKUP_DETECTOR is not set
> +# CONFIG_DETECT_HUNG_TASK is not set
> +# CONFIG_WQ_WATCHDOG is not set
> +# CONFIG_PANIC_ON_OOPS is not set
> +CONFIG_PANIC_ON_OOPS_VALUE=0
> +CONFIG_PANIC_TIMEOUT=0
> +# CONFIG_SCHED_DEBUG is not set
> +# CONFIG_SCHED_INFO is not set
> +# CONFIG_SCHEDSTATS is not set
> +# CONFIG_SCHED_STACK_END_CHECK is not set
> +# CONFIG_DEBUG_TIMEKEEPING is not set
> +# CONFIG_TIMER_STATS is not set
> +# CONFIG_DEBUG_RT_MUTEXES is not set
> +# CONFIG_DEBUG_SPINLOCK is not set
> +# CONFIG_DEBUG_MUTEXES is not set
> +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
> +# CONFIG_DEBUG_LOCK_ALLOC is not set
> +# CONFIG_PROVE_LOCKING is not set
> +# CONFIG_LOCK_STAT is not set
> +# CONFIG_DEBUG_ATOMIC_SLEEP is not set
> +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
> +# CONFIG_LOCK_TORTURE_TEST is not set
> +# CONFIG_STACKTRACE is not set
> +# CONFIG_DEBUG_KOBJECT is not set
> +CONFIG_DEBUG_BUGVERBOSE=y
> +# CONFIG_DEBUG_LIST is not set
> +# CONFIG_DEBUG_PI_LIST is not set
> +# CONFIG_DEBUG_SG is not set
> +# CONFIG_DEBUG_NOTIFIERS is not set
> +# CONFIG_DEBUG_CREDENTIALS is not set
> +# CONFIG_PROVE_RCU is not set
> +# CONFIG_SPARSE_RCU_POINTER is not set
> +# CONFIG_TORTURE_TEST is not set
> +# CONFIG_RCU_PERF_TEST is not set
> +# CONFIG_RCU_TORTURE_TEST is not set
> +# CONFIG_RCU_TRACE is not set
> +# CONFIG_RCU_EQS_DEBUG is not set
> +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
> +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
> +# CONFIG_NOTIFIER_ERROR_INJECTION is not set
> +# CONFIG_FAULT_INJECTION is not set
> +# CONFIG_LATENCYTOP is not set
> +CONFIG_HAVE_FUNCTION_TRACER=y
> +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
> +CONFIG_HAVE_DYNAMIC_FTRACE=y
> +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
> +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
> +CONFIG_HAVE_C_RECORDMCOUNT=y
> +CONFIG_TRACING_SUPPORT=y
> +# CONFIG_FTRACE is not set
> +# CONFIG_LKDTM is not set
> +# CONFIG_TEST_LIST_SORT is not set
> +# CONFIG_BACKTRACE_SELF_TEST is not set
> +# CONFIG_RBTREE_TEST is not set
> +# CONFIG_INTERVAL_TREE_TEST is not set
> +# CONFIG_PERCPU_TEST is not set
> +# CONFIG_ATOMIC64_SELFTEST is not set
> +# CONFIG_TEST_HEXDUMP is not set
> +# CONFIG_TEST_STRING_HELPERS is not set
> +# CONFIG_TEST_KSTRTOX is not set
> +# CONFIG_TEST_PRINTF is not set
> +# CONFIG_TEST_BITMAP is not set
> +# CONFIG_TEST_UUID is not set
> +# CONFIG_TEST_RHASHTABLE is not set
> +# CONFIG_TEST_HASH is not set
> +# CONFIG_DMA_API_DEBUG is not set
> +# CONFIG_TEST_LKM is not set
> +# CONFIG_TEST_USER_COPY is not set
> +# CONFIG_TEST_BPF is not set
> +# CONFIG_TEST_FIRMWARE is not set
> +# CONFIG_TEST_UDELAY is not set
> +# CONFIG_MEMTEST is not set
> +# CONFIG_TEST_STATIC_KEYS is not set
> +# CONFIG_SAMPLES is not set
> +CONFIG_HAVE_ARCH_KGDB=y
> +# CONFIG_KGDB is not set
> +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set
> +# CONFIG_UBSAN is not set
> +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
> +# CONFIG_STRICT_DEVMEM is not set
> +# CONFIG_ARM_PTDUMP is not set
> +CONFIG_ARM_UNWIND=y
> +CONFIG_DEBUG_USER=y
> +# CONFIG_DEBUG_LL is not set
> +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
> +# CONFIG_DEBUG_UART_8250 is not set
> +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
> +# CONFIG_PID_IN_CONTEXTIDR is not set
> +# CONFIG_DEBUG_SET_MODULE_RONX is not set
> +# CONFIG_CORESIGHT is not set
> +CONFIG_KEYS=y
> +# CONFIG_PERSISTENT_KEYRINGS is not set
> +# CONFIG_BIG_KEYS is not set
> +# CONFIG_ENCRYPTED_KEYS is not set
> +# CONFIG_KEY_DH_OPERATIONS is not set
> +# CONFIG_SECURITY_DMESG_RESTRICT is not set
> +# CONFIG_SECURITY is not set
> +# CONFIG_SECURITYFS is not set
> +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
> +CONFIG_HAVE_ARCH_HARDENED_USERCOPY=y
> +# CONFIG_HARDENED_USERCOPY is not set
> +CONFIG_DEFAULT_SECURITY_DAC=y
> +CONFIG_DEFAULT_SECURITY=""
> +CONFIG_CRYPTO=y
> +CONFIG_CRYPTO_ALGAPI=y
> +CONFIG_CRYPTO_ALGAPI2=y
> +CONFIG_CRYPTO_AEAD=y
> +CONFIG_CRYPTO_AEAD2=y
> +CONFIG_CRYPTO_BLKCIPHER=y
> +CONFIG_CRYPTO_BLKCIPHER2=y
> +CONFIG_CRYPTO_HASH=y
> +CONFIG_CRYPTO_HASH2=y
> +CONFIG_CRYPTO_RNG=y
> +CONFIG_CRYPTO_RNG2=y
> +CONFIG_CRYPTO_RNG_DEFAULT=y
> +CONFIG_CRYPTO_AKCIPHER2=y
> +CONFIG_CRYPTO_KPP2=y
> +# CONFIG_CRYPTO_RSA is not set
> +# CONFIG_CRYPTO_DH is not set
> +# CONFIG_CRYPTO_ECDH is not set
> +CONFIG_CRYPTO_MANAGER=y
> +CONFIG_CRYPTO_MANAGER2=y
> +# CONFIG_CRYPTO_USER is not set
> +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
> +CONFIG_CRYPTO_GF128MUL=y
> +CONFIG_CRYPTO_NULL=y
> +CONFIG_CRYPTO_NULL2=y
> +CONFIG_CRYPTO_WORKQUEUE=y
> +# CONFIG_CRYPTO_CRYPTD is not set
> +# CONFIG_CRYPTO_MCRYPTD is not set
> +# CONFIG_CRYPTO_AUTHENC is not set
> +# CONFIG_CRYPTO_TEST is not set
> +CONFIG_CRYPTO_CCM=y
> +CONFIG_CRYPTO_GCM=y
> +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
> +CONFIG_CRYPTO_SEQIV=y
> +CONFIG_CRYPTO_ECHAINIV=m
> +# CONFIG_CRYPTO_CBC is not set
> +CONFIG_CRYPTO_CTR=y
> +# CONFIG_CRYPTO_CTS is not set
> +# CONFIG_CRYPTO_ECB is not set
> +# CONFIG_CRYPTO_LRW is not set
> +# CONFIG_CRYPTO_PCBC is not set
> +# CONFIG_CRYPTO_XTS is not set
> +# CONFIG_CRYPTO_KEYWRAP is not set
> +# CONFIG_CRYPTO_CMAC is not set
> +CONFIG_CRYPTO_HMAC=y
> +# CONFIG_CRYPTO_XCBC is not set
> +# CONFIG_CRYPTO_VMAC is not set
> +CONFIG_CRYPTO_CRC32C=y
> +# CONFIG_CRYPTO_CRC32 is not set
> +# CONFIG_CRYPTO_CRCT10DIF is not set
> +CONFIG_CRYPTO_GHASH=y
> +# CONFIG_CRYPTO_POLY1305 is not set
> +# CONFIG_CRYPTO_MD4 is not set
> +# CONFIG_CRYPTO_MD5 is not set
> +# CONFIG_CRYPTO_MICHAEL_MIC is not set
> +# CONFIG_CRYPTO_RMD128 is not set
> +# CONFIG_CRYPTO_RMD160 is not set
> +# CONFIG_CRYPTO_RMD256 is not set
> +# CONFIG_CRYPTO_RMD320 is not set
> +# CONFIG_CRYPTO_SHA1 is not set
> +CONFIG_CRYPTO_SHA256=y
> +# CONFIG_CRYPTO_SHA512 is not set
> +# CONFIG_CRYPTO_SHA3 is not set
> +# CONFIG_CRYPTO_TGR192 is not set
> +# CONFIG_CRYPTO_WP512 is not set
> +CONFIG_CRYPTO_AES=y
> +# CONFIG_CRYPTO_ANUBIS is not set
> +CONFIG_CRYPTO_ARC4=y
> +# CONFIG_CRYPTO_BLOWFISH is not set
> +# CONFIG_CRYPTO_CAMELLIA is not set
> +# CONFIG_CRYPTO_CAST5 is not set
> +# CONFIG_CRYPTO_CAST6 is not set
> +CONFIG_CRYPTO_DES=y
> +# CONFIG_CRYPTO_FCRYPT is not set
> +# CONFIG_CRYPTO_KHAZAD is not set
> +# CONFIG_CRYPTO_SALSA20 is not set
> +# CONFIG_CRYPTO_CHACHA20 is not set
> +# CONFIG_CRYPTO_SEED is not set
> +# CONFIG_CRYPTO_SERPENT is not set
> +# CONFIG_CRYPTO_TEA is not set
> +# CONFIG_CRYPTO_TWOFISH is not set
> +CONFIG_CRYPTO_DEFLATE=y
> +CONFIG_CRYPTO_LZO=y
> +# CONFIG_CRYPTO_842 is not set
> +# CONFIG_CRYPTO_LZ4 is not set
> +# CONFIG_CRYPTO_LZ4HC is not set
> +# CONFIG_CRYPTO_ANSI_CPRNG is not set
> +CONFIG_CRYPTO_DRBG_MENU=y
> +CONFIG_CRYPTO_DRBG_HMAC=y
> +# CONFIG_CRYPTO_DRBG_HASH is not set
> +# CONFIG_CRYPTO_DRBG_CTR is not set
> +CONFIG_CRYPTO_DRBG=y
> +CONFIG_CRYPTO_JITTERENTROPY=y
> +CONFIG_CRYPTO_USER_API=m
> +CONFIG_CRYPTO_USER_API_HASH=m
> +CONFIG_CRYPTO_USER_API_SKCIPHER=m
> +# CONFIG_CRYPTO_USER_API_RNG is not set
> +# CONFIG_CRYPTO_USER_API_AEAD is not set
> +CONFIG_CRYPTO_HW=y
> +# CONFIG_CRYPTO_DEV_ATMEL_AUTHENC is not set
> +CONFIG_CRYPTO_DEV_ATMEL_AES=y
> +CONFIG_CRYPTO_DEV_ATMEL_TDES=y
> +CONFIG_CRYPTO_DEV_ATMEL_SHA=y
> +# CONFIG_ASYMMETRIC_KEY_TYPE is not set
> +# CONFIG_ARM_CRYPTO is not set
> +# CONFIG_BINARY_PRINTF is not set
> +CONFIG_BITREVERSE=y
> +CONFIG_HAVE_ARCH_BITREVERSE=y
> +CONFIG_RATIONAL=y
> +CONFIG_GENERIC_STRNCPY_FROM_USER=y
> +CONFIG_GENERIC_STRNLEN_USER=y
> +CONFIG_GENERIC_NET_UTILS=y
> +CONFIG_GENERIC_PCI_IOMAP=y
> +CONFIG_GENERIC_IO=y
> +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
> +CONFIG_CRC_CCITT=m
> +CONFIG_CRC16=y
> +# CONFIG_CRC_T10DIF is not set
> +CONFIG_CRC_ITU_T=m
> +CONFIG_CRC32=y
> +# CONFIG_CRC32_SELFTEST is not set
> +CONFIG_CRC32_SLICEBY8=y
> +# CONFIG_CRC32_SLICEBY4 is not set
> +# CONFIG_CRC32_SARWATE is not set
> +# CONFIG_CRC32_BIT is not set
> +# CONFIG_CRC7 is not set
> +# CONFIG_LIBCRC32C is not set
> +# CONFIG_CRC8 is not set
> +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
> +# CONFIG_RANDOM32_SELFTEST is not set
> +CONFIG_ZLIB_INFLATE=y
> +CONFIG_ZLIB_DEFLATE=y
> +CONFIG_LZO_COMPRESS=y
> +CONFIG_LZO_DECOMPRESS=y
> +CONFIG_LZ4_DECOMPRESS=y
> +CONFIG_XZ_DEC=y
> +CONFIG_XZ_DEC_X86=y
> +CONFIG_XZ_DEC_POWERPC=y
> +CONFIG_XZ_DEC_IA64=y
> +CONFIG_XZ_DEC_ARM=y
> +CONFIG_XZ_DEC_ARMTHUMB=y
> +CONFIG_XZ_DEC_SPARC=y
> +CONFIG_XZ_DEC_BCJ=y
> +# CONFIG_XZ_DEC_TEST is not set
> +CONFIG_DECOMPRESS_GZIP=y
> +CONFIG_DECOMPRESS_BZIP2=y
> +CONFIG_DECOMPRESS_LZMA=y
> +CONFIG_DECOMPRESS_XZ=y
> +CONFIG_DECOMPRESS_LZO=y
> +CONFIG_DECOMPRESS_LZ4=y
> +CONFIG_GENERIC_ALLOCATOR=y
> +CONFIG_ASSOCIATIVE_ARRAY=y
> +CONFIG_HAS_IOMEM=y
> +CONFIG_HAS_IOPORT_MAP=y
> +CONFIG_HAS_DMA=y
> +CONFIG_DQL=y
> +CONFIG_NLATTR=y
> +# CONFIG_CORDIC is not set
> +# CONFIG_DDR is not set
> +# CONFIG_IRQ_POLL is not set
> +CONFIG_LIBFDT=y
> +# CONFIG_SG_SPLIT is not set
> +CONFIG_SG_POOL=y
> +CONFIG_ARCH_HAS_SG_CHAIN=y
> +CONFIG_SBITMAP=y
> +# CONFIG_VIRTUALIZATION is not set
> diff --git a/target/linux/at91/sama5d3/target.mk b/target/linux/at91/sama5d3/target.mk
> new file mode 100644
> index 0000000..d30931b
> --- /dev/null
> +++ b/target/linux/at91/sama5d3/target.mk
> @@ -0,0 +1,10 @@
> +BOARDNAME:=SAMA5D3 boards(Cortex-A5)
> +CPU_TYPE:=cortex-a5
> +CPU_SUBTYPE:=vfpv4
> +FEATURES+=fpu
> +DEFAULT_PACKAGES += kmod-usb2
> +
> +define Target/Description
> +	Build generic firmware for Microchip(Atmel AT91) SAMA5D3 MPU's
> +	using the ARMv7 instruction set.
> +endef
> diff --git a/target/linux/at91/sama5d4/config-default b/target/linux/at91/sama5d4/config-default
> new file mode 100644
> index 0000000..51b983c
> --- /dev/null
> +++ b/target/linux/at91/sama5d4/config-default
> @@ -0,0 +1,1311 @@
> +CONFIG_POSIX_MQUEUE=y
> +CONFIG_POSIX_MQUEUE_SYSCTL=y
> +CONFIG_CROSS_MEMORY_ATTACH=y
> +CONFIG_FHANDLE=y
> +CONFIG_TICK_ONESHOT=y
> +CONFIG_NO_HZ_COMMON=y
> +# CONFIG_HZ_PERIODIC is not set
> +CONFIG_NO_HZ_IDLE=y
> +# CONFIG_NO_HZ is not set
> +CONFIG_HIGH_RES_TIMERS=y
> +CONFIG_PAGE_COUNTER=y
> +CONFIG_MEMCG=y
> +# CONFIG_BLK_CGROUP is not set
> +CONFIG_CGROUP_SCHED=y
> +CONFIG_FAIR_GROUP_SCHED=y
> +CONFIG_CFS_BANDWIDTH=y
> +CONFIG_RT_GROUP_SCHED=y
> +# CONFIG_CGROUP_PIDS is not set
> +CONFIG_CGROUP_FREEZER=y
> +# CONFIG_CPUSETS is not set
> +CONFIG_CGROUP_DEVICE=y
> +CONFIG_CGROUP_CPUACCT=y
> +# CONFIG_CGROUP_DEBUG is not set
> +# CONFIG_CHECKPOINT_RESTORE is not set
> +CONFIG_NAMESPACES=y
> +CONFIG_UTS_NS=y
> +CONFIG_IPC_NS=y
> +CONFIG_USER_NS=y
> +CONFIG_PID_NS=y
> +CONFIG_NET_NS=y
> +# CONFIG_SCHED_AUTOGROUP is not set
> +# CONFIG_SYSFS_DEPRECATED is not set
> +# CONFIG_RELAY is not set
> +CONFIG_BLK_DEV_INITRD=y
> +CONFIG_INITRAMFS_SOURCE=""
> +CONFIG_RD_GZIP=y
> +CONFIG_RD_BZIP2=y
> +CONFIG_RD_LZMA=y
> +CONFIG_RD_XZ=y
> +CONFIG_RD_LZO=y
> +CONFIG_RD_LZ4=y
> +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
> +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
> +CONFIG_SYSCTL=y
> +CONFIG_ANON_INODES=y
> +CONFIG_HAVE_UID16=y
> +CONFIG_BPF=y
> +CONFIG_EXPERT=y
> +CONFIG_UID16=y
> +CONFIG_MULTIUSER=y
> +# CONFIG_SGETMASK_SYSCALL is not set
> +CONFIG_SYSFS_SYSCALL=y
> +# CONFIG_SYSCTL_SYSCALL is not set
> +# CONFIG_KALLSYMS is not set
> +CONFIG_PRINTK=y
> +CONFIG_PRINTK_NMI=y
> +CONFIG_BUG=y
> +CONFIG_ELF_CORE=y
> +CONFIG_BASE_FULL=y
> +CONFIG_FUTEX=y
> +CONFIG_EPOLL=y
> +CONFIG_SIGNALFD=y
> +CONFIG_TIMERFD=y
> +CONFIG_EVENTFD=y
> +# CONFIG_BPF_SYSCALL is not set
> +CONFIG_SHMEM=y
> +CONFIG_AIO=y
> +CONFIG_ADVISE_SYSCALLS=y
> +# CONFIG_USERFAULTFD is not set
> +CONFIG_MEMBARRIER=y
> +CONFIG_EMBEDDED=y
> +CONFIG_HAVE_PERF_EVENTS=y
> +CONFIG_PERF_USE_VMALLOC=y
> +CONFIG_JUMP_LABEL=y
> +# CONFIG_STATIC_KEYS_SELFTEST is not set
> +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
> +CONFIG_ARCH_USE_BUILTIN_BSWAP=y
> +# CONFIG_CPU_NO_EFFICIENT_FFS is not set
> +CONFIG_MODULE_FORCE_LOAD=y
> +CONFIG_MODULE_FORCE_UNLOAD=y
> +CONFIG_ARCH_MULTI_V7=y
> +CONFIG_ARCH_MULTI_V6_V7=y
> +# CONFIG_ARCH_MULTI_CPU_AUTO is not set
> +# CONFIG_ARCH_VIRT is not set
> +# CONFIG_ARCH_MVEBU is not set
> +# CONFIG_ARCH_ALPINE is not set
> +# CONFIG_ARCH_ARTPEC is not set
> +CONFIG_ARCH_AT91=y
> +CONFIG_SOC_SAMA5D2=y
> +CONFIG_SOC_SAMA5D3=y
> +CONFIG_SOC_SAMA5D4=y
> +# CONFIG_AT91_VDEC_G1 is not set
> +CONFIG_HAVE_AT91_UTMI=y
> +CONFIG_HAVE_AT91_USB_CLK=y
> +CONFIG_COMMON_CLK_AT91=y
> +CONFIG_HAVE_AT91_SMD=y
> +CONFIG_HAVE_AT91_H32MX=y
> +CONFIG_HAVE_AT91_GENERATED_CLK=y
> +CONFIG_HAVE_AT91_AUDIO_PLL=y
> +CONFIG_SOC_SAM_V7=y
> +CONFIG_SOC_SAMA5=y
> +# CONFIG_ARCH_BCM is not set
> +# CONFIG_ARCH_BERLIN is not set
> +# CONFIG_ARCH_DIGICOLOR is not set
> +# CONFIG_ARCH_HIGHBANK is not set
> +# CONFIG_ARCH_HISI is not set
> +# CONFIG_ARCH_KEYSTONE is not set
> +# CONFIG_ARCH_MESON is not set
> +# CONFIG_ARCH_MXC is not set
> +# CONFIG_ARCH_MEDIATEK is not set
> +# CONFIG_ARCH_OMAP3 is not set
> +# CONFIG_ARCH_OMAP4 is not set
> +# CONFIG_SOC_OMAP5 is not set
> +# CONFIG_SOC_AM33XX is not set
> +# CONFIG_SOC_AM43XX is not set
> +# CONFIG_SOC_DRA7XX is not set
> +# CONFIG_ARCH_MMP is not set
> +# CONFIG_ARCH_QCOM is not set
> +# CONFIG_ARCH_REALVIEW is not set
> +# CONFIG_ARCH_ROCKCHIP is not set
> +# CONFIG_ARCH_SOCFPGA is not set
> +# CONFIG_PLAT_SPEAR is not set
> +# CONFIG_ARCH_STI is not set
> +# CONFIG_ARCH_S5PV210 is not set
> +# CONFIG_ARCH_EXYNOS is not set
> +# CONFIG_ARCH_RENESAS is not set
> +# CONFIG_ARCH_SUNXI is not set
> +# CONFIG_ARCH_SIRF is not set
> +# CONFIG_ARCH_TANGO is not set
> +# CONFIG_ARCH_TEGRA is not set
> +# CONFIG_ARCH_UNIPHIER is not set
> +# CONFIG_ARCH_U8500 is not set
> +# CONFIG_ARCH_VEXPRESS is not set
> +# CONFIG_ARCH_WM8850 is not set
> +# CONFIG_ARCH_ZX is not set
> +# CONFIG_ARCH_ZYNQ is not set
> +CONFIG_CPU_V7=y
> +CONFIG_CPU_32v6K=y
> +CONFIG_CPU_32v7=y
> +CONFIG_CPU_ABRT_EV7=y
> +CONFIG_CPU_PABRT_V7=y
> +CONFIG_CPU_CACHE_V7=y
> +CONFIG_CPU_CACHE_VIPT=y
> +CONFIG_CPU_COPY_V6=y
> +CONFIG_CPU_TLB_V7=y
> +CONFIG_CPU_HAS_ASID=y
> +CONFIG_CPU_CP15=y
> +CONFIG_CPU_CP15_MMU=y
> +# CONFIG_ARM_LPAE is not set
> +# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
> +CONFIG_ARM_THUMB=y
> +# CONFIG_ARM_THUMBEE is not set
> +CONFIG_ARM_VIRT_EXT=y
> +# CONFIG_SWP_EMULATE is not set
> +# CONFIG_CPU_ICACHE_DISABLE is not set
> +# CONFIG_CPU_DCACHE_DISABLE is not set
> +# CONFIG_CPU_BPREDICT_DISABLE is not set
> +CONFIG_KUSER_HELPERS=y
> +# CONFIG_VDSO is not set
> +CONFIG_OUTER_CACHE=y
> +CONFIG_OUTER_CACHE_SYNC=y
> +CONFIG_MIGHT_HAVE_CACHE_L2X0=y
> +CONFIG_CACHE_L2X0=y
> +# CONFIG_PL310_ERRATA_588369 is not set
> +# CONFIG_PL310_ERRATA_727915 is not set
> +# CONFIG_PL310_ERRATA_753970 is not set
> +# CONFIG_PL310_ERRATA_769419 is not set
> +CONFIG_ARM_L1_CACHE_SHIFT_6=y
> +CONFIG_ARM_L1_CACHE_SHIFT=6
> +CONFIG_ARM_DMA_MEM_BUFFERABLE=y
> +CONFIG_ARM_HEAVY_MB=y
> +CONFIG_DEBUG_RODATA=y
> +CONFIG_DEBUG_ALIGN_RODATA=y
> +CONFIG_MULTI_IRQ_HANDLER=y
> +# CONFIG_ARM_ERRATA_430973 is not set
> +# CONFIG_ARM_ERRATA_720789 is not set
> +# CONFIG_ARM_ERRATA_754322 is not set
> +# CONFIG_ARM_ERRATA_775420 is not set
> +# CONFIG_ARM_ERRATA_773022 is not set
> +# CONFIG_ARM_ERRATA_818325_852422 is not set
> +# CONFIG_ARM_ERRATA_821420 is not set
> +# CONFIG_ARM_ERRATA_825619 is not set
> +# CONFIG_ARM_ERRATA_852421 is not set
> +# CONFIG_ARM_ERRATA_852423 is not set
> +# CONFIG_PCI is not set
> +# CONFIG_PCI_DOMAINS_GENERIC is not set
> +# CONFIG_PCI_SYSCALL is not set
> +# CONFIG_PCCARD is not set
> +CONFIG_HAVE_SMP=y
> +# CONFIG_SMP is not set
> +# CONFIG_HAVE_ARM_ARCH_TIMER is not set
> +CONFIG_VMSPLIT_3G=y
> +# CONFIG_VMSPLIT_3G_OPT is not set
> +# CONFIG_VMSPLIT_2G is not set
> +# CONFIG_VMSPLIT_1G is not set
> +CONFIG_PAGE_OFFSET=0xC0000000
> +# CONFIG_ARM_PSCI is not set
> +CONFIG_ARCH_NR_GPIO=0
> +CONFIG_PREEMPT_NONE=y
> +# CONFIG_PREEMPT_VOLUNTARY is not set
> +# CONFIG_PREEMPT is not set
> +CONFIG_HZ_FIXED=0
> +CONFIG_HZ_100=y
> +# CONFIG_HZ_200 is not set
> +# CONFIG_HZ_250 is not set
> +# CONFIG_HZ_300 is not set
> +# CONFIG_HZ_500 is not set
> +# CONFIG_HZ_1000 is not set
> +CONFIG_HZ=100
> +CONFIG_SCHED_HRTICK=y
> +# CONFIG_THUMB2_KERNEL is not set
> +CONFIG_ARM_PATCH_IDIV=y
> +CONFIG_AEABI=y
> +# CONFIG_OABI_COMPAT is not set
> +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set
> +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set
> +CONFIG_HAVE_ARCH_PFN_VALID=y
> +# CONFIG_HIGHMEM is not set
> +CONFIG_CPU_SW_DOMAIN_PAN=y
> +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
> +# CONFIG_ARM_MODULE_PLTS is not set
> +CONFIG_FLATMEM=y
> +CONFIG_FLAT_NODE_MEM_MAP=y
> +CONFIG_HAVE_MEMBLOCK=y
> +CONFIG_NO_BOOTMEM=y
> +CONFIG_MEMORY_ISOLATION=y
> +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
> +CONFIG_SPLIT_PTLOCK_CPUS=4
> +CONFIG_COMPACTION=y
> +CONFIG_MIGRATION=y
> +# CONFIG_PHYS_ADDR_T_64BIT is not set
> +# CONFIG_KSM is not set
> +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
> +CONFIG_NEED_PER_CPU_KM=y
> +# CONFIG_CLEANCACHE is not set
> +CONFIG_CMA=y
> +# CONFIG_CMA_DEBUG is not set
> +CONFIG_CMA_DEBUGFS=y
> +CONFIG_CMA_AREAS=7
> +# CONFIG_ZPOOL is not set
> +# CONFIG_ZBUD is not set
> +# CONFIG_ZSMALLOC is not set
> +CONFIG_GENERIC_EARLY_IOREMAP=y
> +# CONFIG_IDLE_PAGE_TRACKING is not set
> +CONFIG_FRAME_VECTOR=y
> +CONFIG_FORCE_MAX_ZONEORDER=15
> +CONFIG_ALIGNMENT_TRAP=y
> +CONFIG_UACCESS_WITH_MEMCPY=y
> +# CONFIG_SECCOMP is not set
> +CONFIG_SWIOTLB=y
> +CONFIG_IOMMU_HELPER=y
> +# CONFIG_PARAVIRT is not set
> +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
> +# CONFIG_XEN is not set
> +CONFIG_USE_OF=y
> +# CONFIG_ATAGS is not set
> +CONFIG_ZBOOT_ROM_TEXT=0x0
> +CONFIG_ZBOOT_ROM_BSS=0x0
> +# CONFIG_ARM_APPENDED_DTB is not set
> +CONFIG_CMDLINE="console=ttyS0,115200 initrd=0x21100000,25165824 root=/dev/ram0 rw"
> +CONFIG_KEXEC=y
> +# CONFIG_CRASH_DUMP is not set
> +CONFIG_AUTO_ZRELADDR=y
> +# CONFIG_EFI is not set
> +# CONFIG_CPU_FREQ is not set
> +CONFIG_CPU_IDLE=y
> +# CONFIG_CPU_IDLE_GOV_LADDER is not set
> +CONFIG_CPU_IDLE_GOV_MENU=y
> +# CONFIG_ARM_CPUIDLE is not set
> +CONFIG_ARM_AT91_CPUIDLE=y
> +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
> +CONFIG_VFP=y
> +CONFIG_VFPv3=y
> +CONFIG_NEON=y
> +CONFIG_KERNEL_MODE_NEON=y
> +# CONFIG_DNS_RESOLVER is not set
> +# CONFIG_BATMAN_ADV is not set
> +CONFIG_CAN_M_CAN=y
> +CONFIG_WEXT_CORE=y
> +CONFIG_WEXT_PROC=y
> +CONFIG_CFG80211=y
> +# CONFIG_NL80211_TESTMODE is not set
> +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
> +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
> +# CONFIG_CFG80211_DEFAULT_PS is not set
> +# CONFIG_CFG80211_DEBUGFS is not set
> +# CONFIG_CFG80211_INTERNAL_REGDB is not set
> +CONFIG_CFG80211_CRDA_SUPPORT=y
> +CONFIG_CFG80211_WEXT=y
> +# CONFIG_LIB80211 is not set
> +CONFIG_MAC80211=y
> +CONFIG_MAC80211_HAS_RC=y
> +CONFIG_MAC80211_RC_MINSTREL=y
> +CONFIG_MAC80211_RC_MINSTREL_HT=y
> +# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
> +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
> +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
> +# CONFIG_MAC80211_MESH is not set
> +CONFIG_MAC80211_LEDS=y
> +# CONFIG_MAC80211_DEBUGFS is not set
> +# CONFIG_MAC80211_MESSAGE_TRACING is not set
> +# CONFIG_MAC80211_DEBUG_MENU is not set
> +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
> +CONFIG_RFKILL=y
> +CONFIG_RFKILL_LEDS=y
> +# CONFIG_RFKILL_INPUT is not set
> +CONFIG_RFKILL_REGULATOR=y
> +# CONFIG_RFKILL_GPIO is not set
> +# CONFIG_NET_9P is not set
> +# CONFIG_CAIF is not set
> +# CONFIG_CEPH_LIB is not set
> +# CONFIG_NFC is not set
> +# CONFIG_LWTUNNEL is not set
> +CONFIG_DST_CACHE=y
> +# CONFIG_NET_DEVLINK is not set
> +CONFIG_MAY_USE_DEVLINK=y
> +CONFIG_HAVE_CBPF_JIT=y
> +CONFIG_CMA_SIZE_MBYTES=16
> +CONFIG_CMA_SIZE_SEL_MBYTES=y
> +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
> +# CONFIG_CMA_SIZE_SEL_MIN is not set
> +# CONFIG_CMA_SIZE_SEL_MAX is not set
> +CONFIG_CMA_ALIGNMENT=8
> +# CONFIG_BRCMSTB_GISB_ARB is not set
> +# CONFIG_VEXPRESS_CONFIG is not set
> +# CONFIG_CONNECTOR is not set
> +CONFIG_MTD=y
> +CONFIG_MTD_TESTS=m
> +# CONFIG_MTD_REDBOOT_PARTS is not set
> +CONFIG_MTD_CMDLINE_PARTS=y
> +# CONFIG_MTD_AFS_PARTS is not set
> +CONFIG_MTD_OF_PARTS=y
> +# CONFIG_MTD_AR7_PARTS is not set
> +# CONFIG_MTD_DATAFLASH is not set
> +CONFIG_MTD_M25P80=y
> +CONFIG_MTD_SPI_NOR=y
> +# CONFIG_MTD_MT81xx_NOR is not set
> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
> +CONFIG_SPI_ATMEL_QUADSPI=y
> +# CONFIG_SPI_CADENCE_QUADSPI is not set
> +CONFIG_MTD_UBI=y
> +CONFIG_MTD_UBI_WL_THRESHOLD=4096
> +CONFIG_MTD_UBI_BEB_LIMIT=20
> +CONFIG_MTD_UBI_FASTMAP=y
> +CONFIG_MTD_UBI_GLUEBI=m
> +# CONFIG_MTD_UBI_BLOCK is not set
> +CONFIG_DTC=y
> +CONFIG_OF=y
> +# CONFIG_OF_UNITTEST is not set
> +CONFIG_OF_FLATTREE=y
> +CONFIG_OF_EARLY_FLATTREE=y
> +CONFIG_OF_ADDRESS=y
> +CONFIG_OF_IRQ=y
> +CONFIG_OF_NET=y
> +CONFIG_OF_MDIO=y
> +CONFIG_OF_RESERVED_MEM=y
> +# CONFIG_OF_OVERLAY is not set
> +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
> +# CONFIG_PARPORT is not set
> +CONFIG_BLK_DEV=y
> +# CONFIG_BLK_DEV_NULL_BLK is not set
> +# CONFIG_BLK_DEV_COW_COMMON is not set
> +CONFIG_BLK_DEV_LOOP=y
> +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
> +# CONFIG_BLK_DEV_CRYPTOLOOP is not set
> +# CONFIG_BLK_DEV_DRBD is not set
> +# CONFIG_BLK_DEV_NBD is not set
> +CONFIG_BLK_DEV_RAM=y
> +CONFIG_BLK_DEV_RAM_COUNT=4
> +CONFIG_BLK_DEV_RAM_SIZE=8192
> +# CONFIG_CDROM_PKTCDVD is not set
> +# CONFIG_ATA_OVER_ETH is not set
> +# CONFIG_MG_DISK is not set
> +# CONFIG_BLK_DEV_RBD is not set
> +# CONFIG_NVME_TARGET is not set
> +# CONFIG_NET_VENDOR_ARC is not set
> +# CONFIG_NET_VENDOR_CIRRUS is not set
> +# CONFIG_DM9000 is not set
> +# CONFIG_DNET is not set
> +# CONFIG_NET_VENDOR_EZCHIP is not set
> +# CONFIG_NET_VENDOR_HISILICON is not set
> +# CONFIG_NET_VENDOR_MICROCHIP is not set
> +# CONFIG_NET_VENDOR_QUALCOMM is not set
> +# CONFIG_NET_VENDOR_RENESAS is not set
> +# CONFIG_NET_VENDOR_ROCKER is not set
> +# CONFIG_NET_VENDOR_SAMSUNG is not set
> +# CONFIG_NET_VENDOR_SYNOPSYS is not set
> +# CONFIG_NET_VENDOR_VIA is not set
> +# CONFIG_NET_VENDOR_WIZNET is not set
> +# CONFIG_DAVICOM_PHY is not set
> +# CONFIG_USB_HSO is not set
> +CONFIG_LIBERTAS_THINFIRM=m
> +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set
> +CONFIG_LIBERTAS_THINFIRM_USB=m
> +CONFIG_RTL8187_LEDS=y
> +# CONFIG_INPUT_POLLDEV is not set
> +# CONFIG_INPUT_MOUSEDEV is not set
> +# CONFIG_INPUT_JOYDEV is not set
> +CONFIG_INPUT_EVDEV=y
> +# CONFIG_INPUT_EVBUG is not set
> +# CONFIG_TOUCHSCREEN_ADS7846 is not set
> +# CONFIG_TOUCHSCREEN_AD7877 is not set
> +# CONFIG_TOUCHSCREEN_AD7879 is not set
> +CONFIG_TOUCHSCREEN_ATMEL_MXT=y
> +# CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set
> +CONFIG_INPUT_MISC=y
> +# CONFIG_INPUT_AD714X is not set
> +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
> +CONFIG_INPUT_ATMEL_PTC=m
> +# CONFIG_INPUT_BMA150 is not set
> +# CONFIG_INPUT_E3X0_BUTTON is not set
> +# CONFIG_INPUT_MMA8450 is not set
> +# CONFIG_INPUT_MPU3050 is not set
> +# CONFIG_INPUT_GP2A is not set
> +# CONFIG_INPUT_GPIO_BEEPER is not set
> +# CONFIG_INPUT_GPIO_TILT_POLLED is not set
> +# CONFIG_INPUT_GPIO_DECODER is not set
> +# CONFIG_INPUT_ATI_REMOTE2 is not set
> +# CONFIG_INPUT_KEYSPAN_REMOTE is not set
> +# CONFIG_INPUT_KXTJ9 is not set
> +# CONFIG_INPUT_POWERMATE is not set
> +# CONFIG_INPUT_YEALINK is not set
> +# CONFIG_INPUT_CM109 is not set
> +# CONFIG_INPUT_REGULATOR_HAPTIC is not set
> +# CONFIG_INPUT_UINPUT is not set
> +# CONFIG_INPUT_PCF8574 is not set
> +# CONFIG_INPUT_PWM_BEEPER is not set
> +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
> +# CONFIG_INPUT_ADXL34X is not set
> +# CONFIG_INPUT_IMS_PCU is not set
> +# CONFIG_INPUT_CMA3000 is not set
> +# CONFIG_INPUT_SOC_BUTTON_ARRAY is not set
> +# CONFIG_INPUT_DRV260X_HAPTICS is not set
> +# CONFIG_INPUT_DRV2665_HAPTICS is not set
> +# CONFIG_INPUT_DRV2667_HAPTICS is not set
> +CONFIG_GENERIC_PINCONF=y
> +# CONFIG_DEBUG_PINCTRL is not set
> +CONFIG_PINCTRL_AT91PIO4=y
> +# CONFIG_PINCTRL_AMD is not set
> +CONFIG_POWER_RESET_AT91_SAMA5D2_SHDWC=y
> +CONFIG_BATTERY_ACT8945A=y
> +CONFIG_SAMA5D4_WATCHDOG=y
> +# CONFIG_CADENCE_WATCHDOG is not set
> +# CONFIG_DW_WATCHDOG is not set
> +# CONFIG_MAX63XX_WATCHDOG is not set
> +# CONFIG_MEN_A21_WDT is not set
> +CONFIG_MFD_ACT8945A=y
> +CONFIG_MFD_ATMEL_FLEXCOM=y
> +CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
> +# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
> +CONFIG_REGULATOR_ACT8865=y
> +CONFIG_REGULATOR_ACT8945A=y
> +# CONFIG_REGULATOR_AD5398 is not set
> +# CONFIG_REGULATOR_ANATOP is not set
> +# CONFIG_REGULATOR_DA9210 is not set
> +# CONFIG_REGULATOR_DA9211 is not set
> +# CONFIG_REGULATOR_FAN53555 is not set
> +# CONFIG_REGULATOR_GPIO is not set
> +# CONFIG_REGULATOR_ISL9305 is not set
> +# CONFIG_REGULATOR_ISL6271A is not set
> +# CONFIG_REGULATOR_LP3971 is not set
> +# CONFIG_REGULATOR_LP3972 is not set
> +# CONFIG_REGULATOR_LP872X is not set
> +# CONFIG_REGULATOR_LP8755 is not set
> +# CONFIG_REGULATOR_LTC3589 is not set
> +# CONFIG_REGULATOR_LTC3676 is not set
> +# CONFIG_REGULATOR_MAX1586 is not set
> +# CONFIG_REGULATOR_MAX8649 is not set
> +# CONFIG_REGULATOR_MAX8660 is not set
> +# CONFIG_REGULATOR_MAX8952 is not set
> +# CONFIG_REGULATOR_MT6311 is not set
> +# CONFIG_REGULATOR_PFUZE100 is not set
> +# CONFIG_REGULATOR_PV88060 is not set
> +# CONFIG_REGULATOR_PV88080 is not set
> +# CONFIG_REGULATOR_PV88090 is not set
> +# CONFIG_REGULATOR_PWM is not set
> +# CONFIG_REGULATOR_TPS51632 is not set
> +# CONFIG_REGULATOR_TPS62360 is not set
> +# CONFIG_REGULATOR_TPS65023 is not set
> +# CONFIG_REGULATOR_TPS6507X is not set
> +# CONFIG_REGULATOR_TPS6524X is not set
> +CONFIG_MEDIA_SUPPORT=y
> +CONFIG_MEDIA_CONTROLLER=y
> +# CONFIG_MEDIA_CONTROLLER_DVB is not set
> +CONFIG_VIDEO_V4L2_SUBDEV_API=y
> +# CONFIG_VIDEO_XILINX is not set
> +CONFIG_VIDEO_ATMEL_ISC=y
> +CONFIG_VIDEO_ATMEL_ISI=y
> +# CONFIG_V4L_MEM2MEM_DRIVERS is not set
> +# CONFIG_V4L_TEST_DRIVERS is not set
> +# CONFIG_VIDEO_ADV7180 is not set
> +# CONFIG_VIDEO_ADV7604 is not set
> +# CONFIG_VIDEO_ADV7842 is not set
> +# CONFIG_VIDEO_AD5820 is not set
> +# CONFIG_VIDEO_TC358743 is not set
> +# CONFIG_VIDEO_ADV7511 is not set
> +# CONFIG_VIDEO_AD9389B is not set
> +CONFIG_VIDEO_OV7740=m
> +CONFIG_VIDEO_OV9650=m
> +# CONFIG_VIDEO_MT9M032 is not set
> +# CONFIG_VIDEO_MT9P031 is not set
> +# CONFIG_VIDEO_MT9T001 is not set
> +# CONFIG_VIDEO_MT9V032 is not set
> +# CONFIG_VIDEO_NOON010PC30 is not set
> +# CONFIG_VIDEO_M5MOLS is not set
> +# CONFIG_VIDEO_S5K6AA is not set
> +# CONFIG_VIDEO_S5K6A3 is not set
> +# CONFIG_VIDEO_S5K4ECGX is not set
> +# CONFIG_VIDEO_S5K5BAF is not set
> +# CONFIG_VIDEO_SMIAPP is not set
> +# CONFIG_VIDEO_S5C73M3 is not set
> +# CONFIG_VIDEO_ADP1653 is not set
> +# CONFIG_VIDEO_AS3645A is not set
> +# CONFIG_VIDEO_LM3560 is not set
> +# CONFIG_VIDEO_LM3646 is not set
> +# CONFIG_VIDEO_GS1662 is not set
> +CONFIG_DRM_SII902X=y
> +# CONFIG_FB_BACKLIGHT is not set
> +# CONFIG_FB_MODE_HELPERS is not set
> +# CONFIG_FB_ATMEL is not set
> +CONFIG_LCD_CLASS_DEVICE=y
> +# CONFIG_LCD_L4F00242T03 is not set
> +# CONFIG_LCD_LMS283GF05 is not set
> +# CONFIG_LCD_LTV350QV is not set
> +# CONFIG_LCD_ILI922X is not set
> +# CONFIG_LCD_ILI9320 is not set
> +# CONFIG_LCD_TDO24M is not set
> +# CONFIG_LCD_VGG2432A4 is not set
> +# CONFIG_LCD_PLATFORM is not set
> +# CONFIG_LCD_S6E63M0 is not set
> +# CONFIG_LCD_LD9040 is not set
> +# CONFIG_LCD_AMS369FG06 is not set
> +# CONFIG_LCD_LMS501KF03 is not set
> +# CONFIG_LCD_HX8357 is not set
> +CONFIG_BACKLIGHT_CLASS_DEVICE=y
> +# CONFIG_BACKLIGHT_GENERIC is not set
> +CONFIG_BACKLIGHT_PWM=y
> +# CONFIG_BACKLIGHT_PM8941_WLED is not set
> +# CONFIG_BACKLIGHT_ADP8860 is not set
> +# CONFIG_BACKLIGHT_ADP8870 is not set
> +# CONFIG_BACKLIGHT_LM3630A is not set
> +# CONFIG_BACKLIGHT_LM3639 is not set
> +# CONFIG_BACKLIGHT_LP855X is not set
> +# CONFIG_BACKLIGHT_GPIO is not set
> +# CONFIG_BACKLIGHT_LV5207LP is not set
> +# CONFIG_BACKLIGHT_BD6107 is not set
> +# CONFIG_SND_HRTIMER is not set
> +# CONFIG_SND_DYNAMIC_MINORS is not set
> +# CONFIG_SND_AT91_SOC_SAM9G20_WM8731 is not set
> +# CONFIG_SND_AT91_SOC_SAM9X5_WM8731 is not set
> +CONFIG_SND_ATMEL_SOC_CLASSD=y
> +CONFIG_SND_ATMEL_SOC_PDMIC=y
> +CONFIG_SND_ATMEL_SOC_I2S=y
> +# CONFIG_SND_SOC_WM8731 is not set
> +CONFIG_MMC_SDHCI=y
> +CONFIG_MMC_SDHCI_IO_ACCESSORS=y
> +CONFIG_MMC_SDHCI_PLTFM=y
> +# CONFIG_MMC_SDHCI_OF_ARASAN is not set
> +CONFIG_MMC_SDHCI_OF_AT91=y
> +# CONFIG_MMC_SDHCI_F_SDH30 is not set
> +CONFIG_MMC_ATMELMCI=y
> +# CONFIG_MMC_SPI is not set
> +# CONFIG_MMC_DW is not set
> +CONFIG_LEDS_REGULATOR=m
> +# CONFIG_LEDS_BD2802 is not set
> +# CONFIG_LEDS_LT3593 is not set
> +CONFIG_LEDS_BLINKM=m
> +# CONFIG_RTC_DRV_AT91SAM9 is not set
> +CONFIG_AT_XDMAC=y
> +CONFIG_STAGING=y
> +# CONFIG_PRISM2_USB is not set
> +# CONFIG_COMEDI is not set
> +# CONFIG_RTLLIB is not set
> +# CONFIG_R8712U is not set
> +# CONFIG_R8188EU is not set
> +# CONFIG_VT6656 is not set
> +# CONFIG_ADIS16201 is not set
> +# CONFIG_ADIS16203 is not set
> +# CONFIG_ADIS16209 is not set
> +# CONFIG_ADIS16240 is not set
> +# CONFIG_SCA3000 is not set
> +# CONFIG_AD7606 is not set
> +# CONFIG_AD7780 is not set
> +# CONFIG_AD7816 is not set
> +# CONFIG_AD7192 is not set
> +# CONFIG_AD7280 is not set
> +# CONFIG_ADT7316 is not set
> +# CONFIG_AD7150 is not set
> +# CONFIG_AD7152 is not set
> +# CONFIG_AD7746 is not set
> +# CONFIG_AD9832 is not set
> +# CONFIG_AD9834 is not set
> +# CONFIG_ADIS16060 is not set
> +# CONFIG_AD5933 is not set
> +# CONFIG_SENSORS_ISL29018 is not set
> +# CONFIG_SENSORS_ISL29028 is not set
> +# CONFIG_TSL2583 is not set
> +# CONFIG_TSL2x7x is not set
> +# CONFIG_ADE7753 is not set
> +# CONFIG_ADE7754 is not set
> +# CONFIG_ADE7758 is not set
> +# CONFIG_ADE7759 is not set
> +# CONFIG_ADE7854 is not set
> +# CONFIG_AD2S90 is not set
> +# CONFIG_AD2S1200 is not set
> +# CONFIG_AD2S1210 is not set
> +# Speakup console speech
> +# CONFIG_SPEAKUP is not set
> +# CONFIG_STAGING_MEDIA is not set
> +# CONFIG_STAGING_BOARD is not set
> +# CONFIG_LTE_GDM724X is not set
> +# CONFIG_MTD_SPINAND_MT29F is not set
> +# CONFIG_LNET is not set
> +# CONFIG_GS_FPGABOOT is not set
> +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
> +# CONFIG_FB_TFT is not set
> +# CONFIG_MOST is not set
> +# CONFIG_KS7010 is not set
> +# CONFIG_GREYBUS is not set
> +# CONFIG_GOLDFISH is not set
> +# CONFIG_CHROME_PLATFORMS is not set
> +CONFIG_CLKDEV_LOOKUP=y
> +CONFIG_HAVE_CLK_PREPARE=y
> +CONFIG_COMMON_CLK=y
> +# CONFIG_COMMON_CLK_SI5351 is not set
> +# CONFIG_COMMON_CLK_SI514 is not set
> +# CONFIG_COMMON_CLK_SI570 is not set
> +# CONFIG_COMMON_CLK_CDCE706 is not set
> +# CONFIG_COMMON_CLK_CDCE925 is not set
> +# CONFIG_COMMON_CLK_CS2000_CP is not set
> +# CONFIG_CLK_QORIQ is not set
> +# CONFIG_COMMON_CLK_NXP is not set
> +# CONFIG_COMMON_CLK_PWM is not set
> +# CONFIG_COMMON_CLK_PXA is not set
> +# CONFIG_COMMON_CLK_PIC32 is not set
> +CONFIG_CLKSRC_OF=y
> +CONFIG_CLKSRC_PROBE=y
> +# CONFIG_ARM_TIMER_SP804 is not set
> +CONFIG_ATMEL_PIT=y
> +# CONFIG_SH_TIMER_CMT is not set
> +# CONFIG_SH_TIMER_MTU2 is not set
> +# CONFIG_SH_TIMER_TMU is not set
> +# CONFIG_EM_TIMER_STI is not set
> +# CONFIG_MAILBOX is not set
> +# CONFIG_IOMMU_SUPPORT is not set
> +# CONFIG_STE_MODEM_RPROC is not set
> +CONFIG_AT91_SOC_ID=y
> +# CONFIG_SOC_BRCMSTB is not set
> +# CONFIG_SUNXI_SRAM is not set
> +# CONFIG_SOC_TI is not set
> +# CONFIG_PM_DEVFREQ is not set
> +# CONFIG_EXTCON is not set
> +CONFIG_MEMORY=y
> +CONFIG_ATMEL_SDRAMC=y
> +CONFIG_ATMEL_EBI=y
> +CONFIG_IIO=y
> +CONFIG_IIO_BUFFER=y
> +# CONFIG_IIO_BUFFER_CB is not set
> +CONFIG_IIO_KFIFO_BUF=y
> +CONFIG_IIO_TRIGGERED_BUFFER=y
> +# CONFIG_IIO_CONFIGFS is not set
> +CONFIG_IIO_TRIGGER=y
> +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
> +# CONFIG_IIO_SW_DEVICE is not set
> +# CONFIG_IIO_SW_TRIGGER is not set
> +# CONFIG_BMA180 is not set
> +# CONFIG_BMA220 is not set
> +# CONFIG_BMC150_ACCEL is not set
> +# CONFIG_DMARD06 is not set
> +# CONFIG_DMARD09 is not set
> +# CONFIG_IIO_ST_ACCEL_3AXIS is not set
> +# CONFIG_KXSD9 is not set
> +# CONFIG_KXCJK1013 is not set
> +# CONFIG_MC3230 is not set
> +# CONFIG_MMA7455_I2C is not set
> +# CONFIG_MMA7455_SPI is not set
> +# CONFIG_MMA7660 is not set
> +# CONFIG_MMA8452 is not set
> +# CONFIG_MMA9551 is not set
> +# CONFIG_MMA9553 is not set
> +# CONFIG_MXC4005 is not set
> +# CONFIG_MXC6255 is not set
> +# CONFIG_STK8312 is not set
> +# CONFIG_STK8BA50 is not set
> +# CONFIG_AD7266 is not set
> +# CONFIG_AD7291 is not set
> +# CONFIG_AD7298 is not set
> +# CONFIG_AD7476 is not set
> +# CONFIG_AD7791 is not set
> +# CONFIG_AD7793 is not set
> +# CONFIG_AD7887 is not set
> +# CONFIG_AD7923 is not set
> +# CONFIG_AD799X is not set
> +CONFIG_AT91_ADC=y
> +CONFIG_AT91_SAMA5D2_ADC=y
> +# CONFIG_CC10001_ADC is not set
> +# CONFIG_HI8435 is not set
> +# CONFIG_INA2XX_ADC is not set
> +# CONFIG_LTC2485 is not set
> +# CONFIG_MAX1027 is not set
> +# CONFIG_MAX1363 is not set
> +# CONFIG_MCP320X is not set
> +# CONFIG_MCP3422 is not set
> +# CONFIG_NAU7802 is not set
> +# CONFIG_TI_ADC081C is not set
> +# CONFIG_TI_ADC0832 is not set
> +# CONFIG_TI_ADC12138 is not set
> +# CONFIG_TI_ADC128S052 is not set
> +# CONFIG_TI_ADC161S626 is not set
> +# CONFIG_TI_ADS1015 is not set
> +# CONFIG_TI_ADS8688 is not set
> +# CONFIG_VF610_ADC is not set
> +# CONFIG_AD8366 is not set
> +# CONFIG_ATLAS_PH_SENSOR is not set
> +# CONFIG_IAQCORE is not set
> +# CONFIG_VZ89X is not set
> +# CONFIG_IIO_SSP_SENSORHUB is not set
> +# CONFIG_AD5064 is not set
> +# CONFIG_AD5360 is not set
> +# CONFIG_AD5380 is not set
> +# CONFIG_AD5421 is not set
> +# CONFIG_AD5446 is not set
> +# CONFIG_AD5449 is not set
> +# CONFIG_AD5592R is not set
> +# CONFIG_AD5593R is not set
> +# CONFIG_AD5504 is not set
> +# CONFIG_AD5624R_SPI is not set
> +# CONFIG_AD5686 is not set
> +# CONFIG_AD5755 is not set
> +# CONFIG_AD5761 is not set
> +# CONFIG_AD5764 is not set
> +# CONFIG_AD5791 is not set
> +# CONFIG_AD7303 is not set
> +# CONFIG_AD8801 is not set
> +# CONFIG_M62332 is not set
> +# CONFIG_MAX517 is not set
> +# CONFIG_MAX5821 is not set
> +# CONFIG_MCP4725 is not set
> +# CONFIG_MCP4922 is not set
> +# CONFIG_VF610_DAC is not set
> +# CONFIG_AD9523 is not set
> +# CONFIG_ADF4350 is not set
> +# CONFIG_ADIS16080 is not set
> +# CONFIG_ADIS16130 is not set
> +# CONFIG_ADIS16136 is not set
> +# CONFIG_ADIS16260 is not set
> +# CONFIG_ADXRS450 is not set
> +# CONFIG_BMG160 is not set
> +# CONFIG_IIO_ST_GYRO_3AXIS is not set
> +# CONFIG_ITG3200 is not set
> +# CONFIG_AFE4403 is not set
> +# CONFIG_AFE4404 is not set
> +# CONFIG_MAX30100 is not set
> +# CONFIG_AM2315 is not set
> +# CONFIG_DHT11 is not set
> +# CONFIG_HDC100X is not set
> +# CONFIG_HTU21 is not set
> +# CONFIG_SI7005 is not set
> +# CONFIG_SI7020 is not set
> +# CONFIG_ADIS16400 is not set
> +# CONFIG_ADIS16480 is not set
> +# CONFIG_BMI160_I2C is not set
> +# CONFIG_BMI160_SPI is not set
> +# CONFIG_KMX61 is not set
> +# CONFIG_INV_MPU6050_SPI is not set
> +# CONFIG_ADJD_S311 is not set
> +# CONFIG_AL3320A is not set
> +# CONFIG_APDS9300 is not set
> +# CONFIG_APDS9960 is not set
> +# CONFIG_BH1750 is not set
> +# CONFIG_BH1780 is not set
> +# CONFIG_CM32181 is not set
> +# CONFIG_CM3232 is not set
> +# CONFIG_CM3323 is not set
> +# CONFIG_CM36651 is not set
> +# CONFIG_GP2AP020A00F is not set
> +# CONFIG_ISL29125 is not set
> +# CONFIG_JSA1212 is not set
> +# CONFIG_RPR0521 is not set
> +# CONFIG_LTR501 is not set
> +# CONFIG_MAX44000 is not set
> +# CONFIG_OPT3001 is not set
> +# CONFIG_PA12203001 is not set
> +# CONFIG_SI1145 is not set
> +# CONFIG_STK3310 is not set
> +# CONFIG_TCS3414 is not set
> +# CONFIG_TCS3472 is not set
> +# CONFIG_SENSORS_TSL2563 is not set
> +# CONFIG_TSL4531 is not set
> +# CONFIG_US5182D is not set
> +# CONFIG_VCNL4000 is not set
> +# CONFIG_VEML6070 is not set
> +# CONFIG_AK8974 is not set
> +# CONFIG_AK8975 is not set
> +# CONFIG_AK09911 is not set
> +# CONFIG_BMC150_MAGN_I2C is not set
> +# CONFIG_BMC150_MAGN_SPI is not set
> +# CONFIG_MAG3110 is not set
> +# CONFIG_MMC35240 is not set
> +# CONFIG_IIO_ST_MAGN_3AXIS is not set
> +# CONFIG_SENSORS_HMC5843_I2C is not set
> +# CONFIG_SENSORS_HMC5843_SPI is not set
> +# CONFIG_IIO_INTERRUPT_TRIGGER is not set
> +# CONFIG_IIO_SYSFS_TRIGGER is not set
> +# CONFIG_DS1803 is not set
> +# CONFIG_MAX5487 is not set
> +# CONFIG_MCP4131 is not set
> +# CONFIG_MCP4531 is not set
> +# CONFIG_TPL0102 is not set
> +# CONFIG_BMP280 is not set
> +# CONFIG_HP03 is not set
> +# CONFIG_MPL115_I2C is not set
> +# CONFIG_MPL115_SPI is not set
> +# CONFIG_MPL3115 is not set
> +# CONFIG_MS5611 is not set
> +# CONFIG_MS5637 is not set
> +# CONFIG_IIO_ST_PRESS is not set
> +# CONFIG_T5403 is not set
> +# CONFIG_HP206C is not set
> +# CONFIG_ZPA2326 is not set
> +# CONFIG_AS3935 is not set
> +# CONFIG_LIDAR_LITE_V2 is not set
> +# CONFIG_SX9500 is not set
> +# CONFIG_MAXIM_THERMOCOUPLE is not set
> +# CONFIG_MLX90614 is not set
> +# CONFIG_TMP006 is not set
> +# CONFIG_TSYS01 is not set
> +# CONFIG_TSYS02D is not set
> +CONFIG_PWM=y
> +CONFIG_PWM_SYSFS=y
> +CONFIG_PWM_ATMEL=y
> +CONFIG_PWM_ATMEL_HLCDC_PWM=y
> +CONFIG_PWM_ATMEL_TCB=y
> +# CONFIG_PWM_FSL_FTM is not set
> +# CONFIG_PWM_PCA9685 is not set
> +CONFIG_IRQCHIP=y
> +CONFIG_ARM_GIC_MAX_NR=1
> +CONFIG_ATMEL_AIC5_IRQ=y
> +# CONFIG_IPACK_BUS is not set
> +# CONFIG_RESET_CONTROLLER is not set
> +# CONFIG_FMC is not set
> +# CONFIG_GENERIC_PHY is not set
> +# CONFIG_PHY_PXA_28NM_HSIC is not set
> +# CONFIG_PHY_PXA_28NM_USB2 is not set
> +# CONFIG_BCM_KONA_USB2_PHY is not set
> +# CONFIG_POWERCAP is not set
> +# CONFIG_MCB is not set
> +# CONFIG_RAS is not set
> +# CONFIG_ANDROID is not set
> +CONFIG_NVMEM=y
> +# CONFIG_STM is not set
> +# CONFIG_INTEL_TH is not set
> +# CONFIG_FPGA is not set
> +# CONFIG_FIRMWARE_MEMMAP is not set
> +# CONFIG_FW_CFG_SYSFS is not set
> +CONFIG_HAVE_ARM_SMCCC=y
> +CONFIG_DCACHE_WORD_ACCESS=y
> +# CONFIG_EXT2_FS is not set
> +# CONFIG_EXT3_FS is not set
> +CONFIG_EXT4_FS=y
> +CONFIG_EXT4_USE_FOR_EXT2=y
> +# CONFIG_EXT4_FS_POSIX_ACL is not set
> +# CONFIG_EXT4_FS_SECURITY is not set
> +# CONFIG_EXT4_ENCRYPTION is not set
> +# CONFIG_EXT4_DEBUG is not set
> +CONFIG_JBD2=y
> +# CONFIG_JBD2_DEBUG is not set
> +CONFIG_FS_MBCACHE=y
> +# CONFIG_REISERFS_FS is not set
> +# CONFIG_JFS_FS is not set
> +# CONFIG_XFS_FS is not set
> +# CONFIG_GFS2_FS is not set
> +# CONFIG_OCFS2_FS is not set
> +# CONFIG_BTRFS_FS is not set
> +# CONFIG_NILFS2_FS is not set
> +# CONFIG_F2FS_FS is not set
> +# CONFIG_FS_POSIX_ACL is not set
> +CONFIG_EXPORTFS=y
> +# CONFIG_EXPORTFS_BLOCK_OPS is not set
> +CONFIG_FILE_LOCKING=y
> +CONFIG_MANDATORY_FILE_LOCKING=y
> +# CONFIG_FS_ENCRYPTION is not set
> +CONFIG_FSNOTIFY=y
> +CONFIG_DNOTIFY=y
> +CONFIG_INOTIFY_USER=y
> +CONFIG_FANOTIFY=y
> +# CONFIG_QUOTA is not set
> +# CONFIG_QUOTACTL is not set
> +# CONFIG_AUTOFS4_FS is not set
> +# CONFIG_FUSE_FS is not set
> +CONFIG_OVERLAY_FS=y
> +# CONFIG_FSCACHE is not set
> +# CONFIG_ISO9660_FS is not set
> +# CONFIG_UDF_FS is not set
> +CONFIG_FAT_FS=y
> +# CONFIG_MSDOS_FS is not set
> +CONFIG_VFAT_FS=y
> +CONFIG_FAT_DEFAULT_CODEPAGE=437
> +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
> +# CONFIG_FAT_DEFAULT_UTF8 is not set
> +# CONFIG_NTFS_FS is not set
> +CONFIG_PROC_FS=y
> +CONFIG_PROC_SYSCTL=y
> +CONFIG_PROC_PAGE_MONITOR=y
> +# CONFIG_PROC_CHILDREN is not set
> +CONFIG_KERNFS=y
> +CONFIG_SYSFS=y
> +CONFIG_TMPFS=y
> +# CONFIG_TMPFS_POSIX_ACL is not set
> +# CONFIG_TMPFS_XATTR is not set
> +# CONFIG_HUGETLB_PAGE is not set
> +CONFIG_CONFIGFS_FS=y
> +CONFIG_MISC_FILESYSTEMS=y
> +# CONFIG_ORANGEFS_FS is not set
> +# CONFIG_ADFS_FS is not set
> +# CONFIG_AFFS_FS is not set
> +# CONFIG_ECRYPT_FS is not set
> +# CONFIG_HFS_FS is not set
> +# CONFIG_HFSPLUS_FS is not set
> +# CONFIG_BEFS_FS is not set
> +# CONFIG_BFS_FS is not set
> +# CONFIG_EFS_FS is not set
> +# CONFIG_JFFS2_FS is not set
> +CONFIG_UBIFS_FS=y
> +CONFIG_UBIFS_FS_ADVANCED_COMPR=y
> +CONFIG_UBIFS_FS_LZO=y
> +CONFIG_UBIFS_FS_ZLIB=y
> +# CONFIG_UBIFS_ATIME_SUPPORT is not set
> +# CONFIG_LOGFS is not set
> +# CONFIG_CRAMFS is not set
> +# CONFIG_SQUASHFS is not set
> +# CONFIG_VXFS_FS is not set
> +# CONFIG_MINIX_FS is not set
> +# CONFIG_OMFS_FS is not set
> +# CONFIG_HPFS_FS is not set
> +# CONFIG_QNX4FS_FS is not set
> +# CONFIG_QNX6FS_FS is not set
> +# CONFIG_ROMFS_FS is not set
> +# CONFIG_PSTORE is not set
> +# CONFIG_SYSV_FS is not set
> +# CONFIG_UFS_FS is not set
> +CONFIG_NETWORK_FILESYSTEMS=y
> +CONFIG_NFS_FS=y
> +CONFIG_NFS_V2=y
> +CONFIG_NFS_V3=y
> +# CONFIG_NFS_V3_ACL is not set
> +# CONFIG_NFS_V4 is not set
> +# CONFIG_NFS_SWAP is not set
> +CONFIG_ROOT_NFS=y
> +# CONFIG_NFSD is not set
> +CONFIG_GRACE_PERIOD=y
> +CONFIG_LOCKD=y
> +CONFIG_LOCKD_V4=y
> +CONFIG_NFS_COMMON=y
> +CONFIG_SUNRPC=y
> +# CONFIG_SUNRPC_DEBUG is not set
> +# CONFIG_CEPH_FS is not set
> +# CONFIG_CIFS is not set
> +# CONFIG_NCP_FS is not set
> +# CONFIG_CODA_FS is not set
> +# CONFIG_AFS_FS is not set
> +CONFIG_NLS=y
> +CONFIG_NLS_DEFAULT="iso8859-1"
> +CONFIG_NLS_CODEPAGE_437=y
> +# CONFIG_NLS_CODEPAGE_737 is not set
> +# CONFIG_NLS_CODEPAGE_775 is not set
> +CONFIG_NLS_CODEPAGE_850=y
> +# CONFIG_NLS_CODEPAGE_852 is not set
> +# CONFIG_NLS_CODEPAGE_855 is not set
> +# CONFIG_NLS_CODEPAGE_857 is not set
> +# CONFIG_NLS_CODEPAGE_860 is not set
> +# CONFIG_NLS_CODEPAGE_861 is not set
> +# CONFIG_NLS_CODEPAGE_862 is not set
> +# CONFIG_NLS_CODEPAGE_863 is not set
> +# CONFIG_NLS_CODEPAGE_864 is not set
> +# CONFIG_NLS_CODEPAGE_865 is not set
> +# CONFIG_NLS_CODEPAGE_866 is not set
> +# CONFIG_NLS_CODEPAGE_869 is not set
> +# CONFIG_NLS_CODEPAGE_936 is not set
> +# CONFIG_NLS_CODEPAGE_950 is not set
> +# CONFIG_NLS_CODEPAGE_932 is not set
> +# CONFIG_NLS_CODEPAGE_949 is not set
> +# CONFIG_NLS_CODEPAGE_874 is not set
> +# CONFIG_NLS_ISO8859_8 is not set
> +# CONFIG_NLS_CODEPAGE_1250 is not set
> +# CONFIG_NLS_CODEPAGE_1251 is not set
> +# CONFIG_NLS_ASCII is not set
> +CONFIG_NLS_ISO8859_1=y
> +# CONFIG_NLS_ISO8859_2 is not set
> +# CONFIG_NLS_ISO8859_3 is not set
> +# CONFIG_NLS_ISO8859_4 is not set
> +# CONFIG_NLS_ISO8859_5 is not set
> +# CONFIG_NLS_ISO8859_6 is not set
> +# CONFIG_NLS_ISO8859_7 is not set
> +# CONFIG_NLS_ISO8859_9 is not set
> +# CONFIG_NLS_ISO8859_13 is not set
> +# CONFIG_NLS_ISO8859_14 is not set
> +# CONFIG_NLS_ISO8859_15 is not set
> +# CONFIG_NLS_KOI8_R is not set
> +# CONFIG_NLS_KOI8_U is not set
> +# CONFIG_NLS_MAC_ROMAN is not set
> +# CONFIG_NLS_MAC_CELTIC is not set
> +# CONFIG_NLS_MAC_CENTEURO is not set
> +# CONFIG_NLS_MAC_CROATIAN is not set
> +# CONFIG_NLS_MAC_CYRILLIC is not set
> +# CONFIG_NLS_MAC_GAELIC is not set
> +# CONFIG_NLS_MAC_GREEK is not set
> +# CONFIG_NLS_MAC_ICELAND is not set
> +# CONFIG_NLS_MAC_INUIT is not set
> +# CONFIG_NLS_MAC_ROMANIAN is not set
> +# CONFIG_NLS_MAC_TURKISH is not set
> +CONFIG_NLS_UTF8=y
> +# CONFIG_DLM is not set
> +# CONFIG_PRINTK_TIME is not set
> +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
> +# CONFIG_BOOT_PRINTK_DELAY is not set
> +# CONFIG_DYNAMIC_DEBUG is not set
> +# CONFIG_DEBUG_INFO is not set
> +CONFIG_ENABLE_WARN_DEPRECATED=y
> +CONFIG_ENABLE_MUST_CHECK=y
> +CONFIG_FRAME_WARN=1024
> +CONFIG_STRIP_ASM_SYMS=y
> +# CONFIG_READABLE_ASM is not set
> +# CONFIG_UNUSED_SYMBOLS is not set
> +# CONFIG_PAGE_OWNER is not set
> +CONFIG_DEBUG_FS=y
> +# CONFIG_HEADERS_CHECK is not set
> +# CONFIG_DEBUG_SECTION_MISMATCH is not set
> +CONFIG_SECTION_MISMATCH_WARN_ONLY=y
> +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
> +# CONFIG_MAGIC_SYSRQ is not set
> +CONFIG_DEBUG_KERNEL=y
> +# CONFIG_PAGE_EXTENSION is not set
> +# CONFIG_DEBUG_PAGEALLOC is not set
> +# CONFIG_PAGE_POISONING is not set
> +# CONFIG_DEBUG_OBJECTS is not set
> +# CONFIG_DEBUG_SLAB is not set
> +CONFIG_HAVE_DEBUG_KMEMLEAK=y
> +# CONFIG_DEBUG_KMEMLEAK is not set
> +# CONFIG_DEBUG_STACK_USAGE is not set
> +# CONFIG_DEBUG_VM is not set
> +CONFIG_DEBUG_MEMORY_INIT=y
> +# CONFIG_DEBUG_SHIRQ is not set
> +# CONFIG_LOCKUP_DETECTOR is not set
> +# CONFIG_DETECT_HUNG_TASK is not set
> +# CONFIG_WQ_WATCHDOG is not set
> +# CONFIG_PANIC_ON_OOPS is not set
> +CONFIG_PANIC_ON_OOPS_VALUE=0
> +CONFIG_PANIC_TIMEOUT=0
> +# CONFIG_SCHED_DEBUG is not set
> +# CONFIG_SCHED_INFO is not set
> +# CONFIG_SCHEDSTATS is not set
> +# CONFIG_SCHED_STACK_END_CHECK is not set
> +# CONFIG_DEBUG_TIMEKEEPING is not set
> +# CONFIG_TIMER_STATS is not set
> +# CONFIG_DEBUG_RT_MUTEXES is not set
> +# CONFIG_DEBUG_SPINLOCK is not set
> +# CONFIG_DEBUG_MUTEXES is not set
> +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
> +# CONFIG_DEBUG_LOCK_ALLOC is not set
> +# CONFIG_PROVE_LOCKING is not set
> +# CONFIG_LOCK_STAT is not set
> +# CONFIG_DEBUG_ATOMIC_SLEEP is not set
> +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
> +# CONFIG_LOCK_TORTURE_TEST is not set
> +# CONFIG_STACKTRACE is not set
> +# CONFIG_DEBUG_KOBJECT is not set
> +CONFIG_DEBUG_BUGVERBOSE=y
> +# CONFIG_DEBUG_LIST is not set
> +# CONFIG_DEBUG_PI_LIST is not set
> +# CONFIG_DEBUG_SG is not set
> +# CONFIG_DEBUG_NOTIFIERS is not set
> +# CONFIG_DEBUG_CREDENTIALS is not set
> +# CONFIG_PROVE_RCU is not set
> +# CONFIG_SPARSE_RCU_POINTER is not set
> +# CONFIG_TORTURE_TEST is not set
> +# CONFIG_RCU_PERF_TEST is not set
> +# CONFIG_RCU_TORTURE_TEST is not set
> +# CONFIG_RCU_TRACE is not set
> +# CONFIG_RCU_EQS_DEBUG is not set
> +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
> +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
> +# CONFIG_NOTIFIER_ERROR_INJECTION is not set
> +# CONFIG_FAULT_INJECTION is not set
> +# CONFIG_LATENCYTOP is not set
> +CONFIG_HAVE_FUNCTION_TRACER=y
> +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
> +CONFIG_HAVE_DYNAMIC_FTRACE=y
> +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
> +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
> +CONFIG_HAVE_C_RECORDMCOUNT=y
> +CONFIG_TRACING_SUPPORT=y
> +# CONFIG_FTRACE is not set
> +# CONFIG_LKDTM is not set
> +# CONFIG_TEST_LIST_SORT is not set
> +# CONFIG_BACKTRACE_SELF_TEST is not set
> +# CONFIG_RBTREE_TEST is not set
> +# CONFIG_INTERVAL_TREE_TEST is not set
> +# CONFIG_PERCPU_TEST is not set
> +# CONFIG_ATOMIC64_SELFTEST is not set
> +# CONFIG_TEST_HEXDUMP is not set
> +# CONFIG_TEST_STRING_HELPERS is not set
> +# CONFIG_TEST_KSTRTOX is not set
> +# CONFIG_TEST_PRINTF is not set
> +# CONFIG_TEST_BITMAP is not set
> +# CONFIG_TEST_UUID is not set
> +# CONFIG_TEST_RHASHTABLE is not set
> +# CONFIG_TEST_HASH is not set
> +# CONFIG_DMA_API_DEBUG is not set
> +# CONFIG_TEST_LKM is not set
> +# CONFIG_TEST_USER_COPY is not set
> +# CONFIG_TEST_BPF is not set
> +# CONFIG_TEST_FIRMWARE is not set
> +# CONFIG_TEST_UDELAY is not set
> +# CONFIG_MEMTEST is not set
> +# CONFIG_TEST_STATIC_KEYS is not set
> +# CONFIG_SAMPLES is not set
> +CONFIG_HAVE_ARCH_KGDB=y
> +# CONFIG_KGDB is not set
> +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set
> +# CONFIG_UBSAN is not set
> +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
> +# CONFIG_STRICT_DEVMEM is not set
> +# CONFIG_ARM_PTDUMP is not set
> +CONFIG_ARM_UNWIND=y
> +CONFIG_DEBUG_USER=y
> +# CONFIG_DEBUG_LL is not set
> +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
> +# CONFIG_DEBUG_UART_8250 is not set
> +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
> +# CONFIG_PID_IN_CONTEXTIDR is not set
> +# CONFIG_DEBUG_SET_MODULE_RONX is not set
> +# CONFIG_CORESIGHT is not set
> +CONFIG_KEYS=y
> +# CONFIG_PERSISTENT_KEYRINGS is not set
> +# CONFIG_BIG_KEYS is not set
> +# CONFIG_ENCRYPTED_KEYS is not set
> +# CONFIG_KEY_DH_OPERATIONS is not set
> +# CONFIG_SECURITY_DMESG_RESTRICT is not set
> +# CONFIG_SECURITY is not set
> +# CONFIG_SECURITYFS is not set
> +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
> +CONFIG_HAVE_ARCH_HARDENED_USERCOPY=y
> +# CONFIG_HARDENED_USERCOPY is not set
> +CONFIG_DEFAULT_SECURITY_DAC=y
> +CONFIG_DEFAULT_SECURITY=""
> +CONFIG_CRYPTO=y
> +CONFIG_CRYPTO_ALGAPI=y
> +CONFIG_CRYPTO_ALGAPI2=y
> +CONFIG_CRYPTO_AEAD=y
> +CONFIG_CRYPTO_AEAD2=y
> +CONFIG_CRYPTO_BLKCIPHER=y
> +CONFIG_CRYPTO_BLKCIPHER2=y
> +CONFIG_CRYPTO_HASH=y
> +CONFIG_CRYPTO_HASH2=y
> +CONFIG_CRYPTO_RNG=y
> +CONFIG_CRYPTO_RNG2=y
> +CONFIG_CRYPTO_RNG_DEFAULT=y
> +CONFIG_CRYPTO_AKCIPHER2=y
> +CONFIG_CRYPTO_KPP2=y
> +# CONFIG_CRYPTO_RSA is not set
> +# CONFIG_CRYPTO_DH is not set
> +# CONFIG_CRYPTO_ECDH is not set
> +CONFIG_CRYPTO_MANAGER=y
> +CONFIG_CRYPTO_MANAGER2=y
> +# CONFIG_CRYPTO_USER is not set
> +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
> +CONFIG_CRYPTO_GF128MUL=y
> +CONFIG_CRYPTO_NULL=y
> +CONFIG_CRYPTO_NULL2=y
> +CONFIG_CRYPTO_WORKQUEUE=y
> +# CONFIG_CRYPTO_CRYPTD is not set
> +# CONFIG_CRYPTO_MCRYPTD is not set
> +# CONFIG_CRYPTO_AUTHENC is not set
> +# CONFIG_CRYPTO_TEST is not set
> +CONFIG_CRYPTO_CCM=y
> +CONFIG_CRYPTO_GCM=y
> +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
> +CONFIG_CRYPTO_SEQIV=y
> +CONFIG_CRYPTO_ECHAINIV=m
> +# CONFIG_CRYPTO_CBC is not set
> +CONFIG_CRYPTO_CTR=y
> +# CONFIG_CRYPTO_CTS is not set
> +# CONFIG_CRYPTO_ECB is not set
> +# CONFIG_CRYPTO_LRW is not set
> +# CONFIG_CRYPTO_PCBC is not set
> +# CONFIG_CRYPTO_XTS is not set
> +# CONFIG_CRYPTO_KEYWRAP is not set
> +# CONFIG_CRYPTO_CMAC is not set
> +CONFIG_CRYPTO_HMAC=y
> +# CONFIG_CRYPTO_XCBC is not set
> +# CONFIG_CRYPTO_VMAC is not set
> +CONFIG_CRYPTO_CRC32C=y
> +# CONFIG_CRYPTO_CRC32 is not set
> +# CONFIG_CRYPTO_CRCT10DIF is not set
> +CONFIG_CRYPTO_GHASH=y
> +# CONFIG_CRYPTO_POLY1305 is not set
> +# CONFIG_CRYPTO_MD4 is not set
> +# CONFIG_CRYPTO_MD5 is not set
> +# CONFIG_CRYPTO_MICHAEL_MIC is not set
> +# CONFIG_CRYPTO_RMD128 is not set
> +# CONFIG_CRYPTO_RMD160 is not set
> +# CONFIG_CRYPTO_RMD256 is not set
> +# CONFIG_CRYPTO_RMD320 is not set
> +# CONFIG_CRYPTO_SHA1 is not set
> +CONFIG_CRYPTO_SHA256=y
> +# CONFIG_CRYPTO_SHA512 is not set
> +# CONFIG_CRYPTO_SHA3 is not set
> +# CONFIG_CRYPTO_TGR192 is not set
> +# CONFIG_CRYPTO_WP512 is not set
> +CONFIG_CRYPTO_AES=y
> +# CONFIG_CRYPTO_ANUBIS is not set
> +CONFIG_CRYPTO_ARC4=y
> +# CONFIG_CRYPTO_BLOWFISH is not set
> +# CONFIG_CRYPTO_CAMELLIA is not set
> +# CONFIG_CRYPTO_CAST5 is not set
> +# CONFIG_CRYPTO_CAST6 is not set
> +CONFIG_CRYPTO_DES=y
> +# CONFIG_CRYPTO_FCRYPT is not set
> +# CONFIG_CRYPTO_KHAZAD is not set
> +# CONFIG_CRYPTO_SALSA20 is not set
> +# CONFIG_CRYPTO_CHACHA20 is not set
> +# CONFIG_CRYPTO_SEED is not set
> +# CONFIG_CRYPTO_SERPENT is not set
> +# CONFIG_CRYPTO_TEA is not set
> +# CONFIG_CRYPTO_TWOFISH is not set
> +CONFIG_CRYPTO_DEFLATE=y
> +CONFIG_CRYPTO_LZO=y
> +# CONFIG_CRYPTO_842 is not set
> +# CONFIG_CRYPTO_LZ4 is not set
> +# CONFIG_CRYPTO_LZ4HC is not set
> +# CONFIG_CRYPTO_ANSI_CPRNG is not set
> +CONFIG_CRYPTO_DRBG_MENU=y
> +CONFIG_CRYPTO_DRBG_HMAC=y
> +# CONFIG_CRYPTO_DRBG_HASH is not set
> +# CONFIG_CRYPTO_DRBG_CTR is not set
> +CONFIG_CRYPTO_DRBG=y
> +CONFIG_CRYPTO_JITTERENTROPY=y
> +CONFIG_CRYPTO_USER_API=m
> +CONFIG_CRYPTO_USER_API_HASH=m
> +CONFIG_CRYPTO_USER_API_SKCIPHER=m
> +# CONFIG_CRYPTO_USER_API_RNG is not set
> +# CONFIG_CRYPTO_USER_API_AEAD is not set
> +CONFIG_CRYPTO_HW=y
> +# CONFIG_CRYPTO_DEV_ATMEL_AUTHENC is not set
> +CONFIG_CRYPTO_DEV_ATMEL_AES=y
> +CONFIG_CRYPTO_DEV_ATMEL_TDES=y
> +CONFIG_CRYPTO_DEV_ATMEL_SHA=y
> +# CONFIG_ASYMMETRIC_KEY_TYPE is not set
> +# CONFIG_ARM_CRYPTO is not set
> +# CONFIG_BINARY_PRINTF is not set
> +CONFIG_BITREVERSE=y
> +CONFIG_HAVE_ARCH_BITREVERSE=y
> +CONFIG_RATIONAL=y
> +CONFIG_GENERIC_STRNCPY_FROM_USER=y
> +CONFIG_GENERIC_STRNLEN_USER=y
> +CONFIG_GENERIC_NET_UTILS=y
> +CONFIG_GENERIC_PCI_IOMAP=y
> +CONFIG_GENERIC_IO=y
> +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
> +CONFIG_CRC_CCITT=m
> +CONFIG_CRC16=y
> +# CONFIG_CRC_T10DIF is not set
> +CONFIG_CRC_ITU_T=m
> +CONFIG_CRC32=y
> +# CONFIG_CRC32_SELFTEST is not set
> +CONFIG_CRC32_SLICEBY8=y
> +# CONFIG_CRC32_SLICEBY4 is not set
> +# CONFIG_CRC32_SARWATE is not set
> +# CONFIG_CRC32_BIT is not set
> +# CONFIG_CRC7 is not set
> +# CONFIG_LIBCRC32C is not set
> +# CONFIG_CRC8 is not set
> +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
> +# CONFIG_RANDOM32_SELFTEST is not set
> +CONFIG_ZLIB_INFLATE=y
> +CONFIG_ZLIB_DEFLATE=y
> +CONFIG_LZO_COMPRESS=y
> +CONFIG_LZO_DECOMPRESS=y
> +CONFIG_LZ4_DECOMPRESS=y
> +CONFIG_XZ_DEC=y
> +CONFIG_XZ_DEC_X86=y
> +CONFIG_XZ_DEC_POWERPC=y
> +CONFIG_XZ_DEC_IA64=y
> +CONFIG_XZ_DEC_ARM=y
> +CONFIG_XZ_DEC_ARMTHUMB=y
> +CONFIG_XZ_DEC_SPARC=y
> +CONFIG_XZ_DEC_BCJ=y
> +# CONFIG_XZ_DEC_TEST is not set
> +CONFIG_DECOMPRESS_GZIP=y
> +CONFIG_DECOMPRESS_BZIP2=y
> +CONFIG_DECOMPRESS_LZMA=y
> +CONFIG_DECOMPRESS_XZ=y
> +CONFIG_DECOMPRESS_LZO=y
> +CONFIG_DECOMPRESS_LZ4=y
> +CONFIG_GENERIC_ALLOCATOR=y
> +CONFIG_ASSOCIATIVE_ARRAY=y
> +CONFIG_HAS_IOMEM=y
> +CONFIG_HAS_IOPORT_MAP=y
> +CONFIG_HAS_DMA=y
> +CONFIG_DQL=y
> +CONFIG_NLATTR=y
> +# CONFIG_CORDIC is not set
> +# CONFIG_DDR is not set
> +# CONFIG_IRQ_POLL is not set
> +CONFIG_LIBFDT=y
> +# CONFIG_SG_SPLIT is not set
> +CONFIG_SG_POOL=y
> +CONFIG_ARCH_HAS_SG_CHAIN=y
> +CONFIG_SBITMAP=y
> +# CONFIG_VIRTUALIZATION is not set
> diff --git a/target/linux/at91/sama5d4/target.mk b/target/linux/at91/sama5d4/target.mk
> new file mode 100644
> index 0000000..2bbab60
> --- /dev/null
> +++ b/target/linux/at91/sama5d4/target.mk
> @@ -0,0 +1,10 @@
> +BOARDNAME:=SAMA5D4 boards(Cortex-A5)
> +CPU_TYPE:=cortex-a5
> +CPU_SUBTYPE:=neon-vfpv4
> +FEATURES+=fpu
> +DEFAULT_PACKAGES += kmod-usb2
> +
> +define Target/Description
> +	Build generic firmware for Microchip(Atmel AT91) SAMA5D4 MPU's
> +	using the ARMv7 instruction set.
> +endef




More information about the Lede-dev mailing list