diff mbox

[OpenWrt-Devel,1/2] layerscape: add ls1043ardb-64b target

Message ID 1468432570-7202-1-git-send-email-yutang.jiang@nxp.com
State Changes Requested
Delegated to: John Crispin
Headers show

Commit Message

yutang jiang July 13, 2016, 5:56 p.m. UTC
From: Yutang Jiang <yutang.jiang@nxp.com>

Add support for NXP layerscape ls1043ardb-64b Dev board.

ls1043ardb-64b target is using 4.1 kernel and rcw/u-boot/fman images from
 NXP QorIQ SDK V2.0 release.
All of 4.1 kernel patches will be in the second patch, it have more than
 100 kernel patches: platform/flash/dpaa/mmc/usb/pcie etc, porting from
 SDK release or upstream.

Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
---
 target/linux/layerscape-64b/Makefile               |   26 +
 target/linux/layerscape-64b/README.ls1043ardb      |  860 ++++++
 target/linux/layerscape-64b/base-files/etc/inittab |    6 +
 target/linux/layerscape-64b/image/Makefile         |   64 +
 .../linux/layerscape-64b/image/checkimagesize.sh   |   16 +
 .../linux/layerscape-64b/ls1043ardb/config-default | 3146 ++++++++++++++++++++
 target/linux/layerscape-64b/ls1043ardb/target.mk   |   16 +
 7 files changed, 4134 insertions(+)
 create mode 100644 target/linux/layerscape-64b/Makefile
 create mode 100644 target/linux/layerscape-64b/README.ls1043ardb
 create mode 100644 target/linux/layerscape-64b/base-files/etc/inittab
 create mode 100644 target/linux/layerscape-64b/image/Makefile
 create mode 100755 target/linux/layerscape-64b/image/checkimagesize.sh
 create mode 100644 target/linux/layerscape-64b/ls1043ardb/config-default
 create mode 100644 target/linux/layerscape-64b/ls1043ardb/target.mk

Comments

Jonas Gorski July 13, 2016, 10:42 a.m. UTC | #1
Hi,

On 13 July 2016 at 19:56,  <yutang.jiang@nxp.com> wrote:
> From: Yutang Jiang <yutang.jiang@nxp.com>
>
> Add support for NXP layerscape ls1043ardb-64b Dev board.

Nice to see support for it here. A few things first, though

>
> ls1043ardb-64b target is using 4.1 kernel and rcw/u-boot/fman images from
>  NXP QorIQ SDK V2.0 release.

Please update your codebase to 4.4 first. The next release kernel is
currently planned to be 4.4.

> All of 4.1 kernel patches will be in the second patch, it have more than
>  100 kernel patches: platform/flash/dpaa/mmc/usb/pcie etc, porting from
>  SDK release or upstream.

Please add them at the same time. If it's too large for an email, you
can also put the commit in a public git repository. You can also
create a pull request on github.

I guess several of the patches will be obsolete with the switch to 4.4 anyway?

>
> Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
> ---
>  target/linux/layerscape-64b/Makefile               |   26 +
>  target/linux/layerscape-64b/README.ls1043ardb      |  860 ++++++
>  target/linux/layerscape-64b/base-files/etc/inittab |    6 +
>  target/linux/layerscape-64b/image/Makefile         |   64 +
>  .../linux/layerscape-64b/image/checkimagesize.sh   |   16 +
>  .../linux/layerscape-64b/ls1043ardb/config-default | 3146 ++++++++++++++++++++
>  target/linux/layerscape-64b/ls1043ardb/target.mk   |   16 +
>  7 files changed, 4134 insertions(+)
>  create mode 100644 target/linux/layerscape-64b/Makefile
>  create mode 100644 target/linux/layerscape-64b/README.ls1043ardb
>  create mode 100644 target/linux/layerscape-64b/base-files/etc/inittab
>  create mode 100644 target/linux/layerscape-64b/image/Makefile
>  create mode 100755 target/linux/layerscape-64b/image/checkimagesize.sh
>  create mode 100644 target/linux/layerscape-64b/ls1043ardb/config-default
>  create mode 100644 target/linux/layerscape-64b/ls1043ardb/target.mk
>
> diff --git a/target/linux/layerscape-64b/Makefile b/target/linux/layerscape-64b/Makefile
> new file mode 100644
> index 0000000..63d55b9
> --- /dev/null
> +++ b/target/linux/layerscape-64b/Makefile
> @@ -0,0 +1,26 @@
> +#
> +# Copyright (C) 2016 OpenWrt.org
> +#
> +# This is free software, licensed under the GNU General Public License v2.
> +# See /LICENSE for more information.
> +#
> +include $(TOPDIR)/rules.mk
> +
> +ARCH:=aarch64
> +BOARD:=layerscape-64b
> +BOARDNAME:=layerscape 64b
> +CFLAGS:=-Os -pipe -fno-caller-saves
> +DEVICE_TYPE:=developerboard
> +KERNEL_PATCHVER:=4.1
> +KERNELNAME:=Image dtbs
> +FEATURES:=squashfs
> +SUBTARGETS:=ls1043ardb
> +MAINTAINER:=Jiang Yutang <yutang.jiang@nxp.com>
> +
> +include $(INCLUDE_DIR)/target.mk
> +
> +define Target/Description
> +       Build firmware images for $(BOARDNAME) SoC devices.
> +endef
> +
> +$(eval $(call BuildTarget))
> diff --git a/target/linux/layerscape-64b/README.ls1043ardb b/target/linux/layerscape-64b/README.ls1043ardb
> new file mode 100644
> index 0000000..9f6a0af
> --- /dev/null
> +++ b/target/linux/layerscape-64b/README.ls1043ardb
> @@ -0,0 +1,860 @@
(snip)

I think a lot of this information (like the bootlog) is better served
on the wiki, or shouldn't be here at all (like the contents of various
uci files, which are subject to change, and nobody will remember to
update the example output here).

> diff --git a/target/linux/layerscape-64b/image/Makefile b/target/linux/layerscape-64b/image/Makefile
> new file mode 100644
> index 0000000..43e7269
> --- /dev/null
> +++ b/target/linux/layerscape-64b/image/Makefile
> @@ -0,0 +1,64 @@
> +#
> +# Copyright (C) 2016 OpenWrt.org
> +#
> +# This is free software, licensed under the GNU General Public License v2.
> +# See /LICENSE for more information.
> +#
> +include $(TOPDIR)/rules.mk
> +include $(INCLUDE_DIR)/image.mk
> +
> +# make uImage and dtb
> +define Image/uImage-dtb
> +       gzip -9c < $(KDIR)/Image > $(KDIR)/Image.gz
> +       $(eval ARCH_BACK = $(ARCH))
> +       $(eval ARCH = $(LINUX_KARCH))
> +       $(call Image/BuildKernel/MkuImage, gzip, $(KERNEL_LOADADDR), \
> +               $(KERNEL_ENTRY_POINT), $(KDIR)/Image.gz, \
> +               $(KDIR)/$(IMG_PREFIX)-uImage)
> +       $(eval ARCH = $(ARCH_BACK))
> +
> +       $(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$(KDIR)/$(IMG_PREFIX)-dtb)
> +endef
> +
> +# $(1) source image name
> +# $(2) partition image name
> +# $(3) partition image size(M)
> +define Image/Build/flashpartitionimage
> +       ./checkimagesize.sh $(1) $(3)
> +       dd if=/dev/zero bs=1M count=$(3) | sed 's/\x00/\xff/g' > $(2)
> +       dd if=$(1) of=$(2) conv=notrunc
> +endef
> +
> +# make squashfs then merge uImage/dtb/squashfs to one firmware image arranged
> +# by individual partition
> +define Image/Build/squashfs
> +       $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
> +
> +       $(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-dtb,$(KDIR)/$(IMG_PREFIX)-dtb-par,$(DTB_PARTITION_SIZE))
> +       $(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-uImage,$(KDIR)/$(IMG_PREFIX)-uImage-par,$(KERNEL_PARTITION_SIZE))
> +       $(call Image/Build/flashpartitionimage,$(KDIR)/root.squashfs,$(KDIR)/root.squashfs-par,$(SQUASHFS_PARTITION_SIZE))
> +       cat $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \
> +               $(KDIR)/root.squashfs-par > $(BIN_DIR)/$(IMG_PREFIX)-firmware
> +       $(RM) $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \
> +               $(KDIR)/root.squashfs-par
> +endef
> +
> +# target macros
> +define Target/Default
> +       KERNEL_LOADADDR = 0x80080000
> +       KERNEL_ENTRY_POINT = 0x80080000
> +endef
> +
> +# callback function: Image/BuildKernel
> +define Image/BuildKernel
> +       $(eval $(call Target/Default))
> +       $(eval $(call Subtarget/Default))
> +       $(call Image/uImage-dtb)
> +endef
> +
> +# callback function: Image/Build
> +define Image/Build
> +       $(call Image/Build/$(1),$(1))
> +endef
> +
> +$(eval $(call BuildImage))

Please update your image build code to the new image code with
defining appropriate Device/* sections. This will then also eliminate

> diff --git a/target/linux/layerscape-64b/image/checkimagesize.sh b/target/linux/layerscape-64b/image/checkimagesize.sh
> new file mode 100755
> index 0000000..e65c7fe
> --- /dev/null
> +++ b/target/linux/layerscape-64b/image/checkimagesize.sh

this file, as there is a size check build step available.

> diff --git a/target/linux/layerscape-64b/ls1043ardb/config-default b/target/linux/layerscape-64b/ls1043ardb/config-default
> new file mode 100644
> index 0000000..1543907
> --- /dev/null
> +++ b/target/linux/layerscape-64b/ls1043ardb/config-default
> @@ -0,0 +1,3146 @@
> +#
> +# Automatically generated file; DO NOT EDIT.
> +# Linux/arm64 4.1.23 Kernel Configuration
> +#
> (snip)

Please minimize this config by running "make kernel_defconfig
CONFIG_TARGET=subtarget" (or put this as the "main" config as
target/layerscape-64b/config-default, then run just "make
kernel_defconfig").

> diff --git a/target/linux/layerscape-64b/ls1043ardb/target.mk b/target/linux/layerscape-64b/ls1043ardb/target.mk
> new file mode 100644
> index 0000000..9f2580b
> --- /dev/null
> +++ b/target/linux/layerscape-64b/ls1043ardb/target.mk
> @@ -0,0 +1,16 @@
> +#
> +# Copyright (C) 2016 OpenWrt.org
> +#
> +# This is free software, licensed under the GNU General Public License v2.
> +# See /LICENSE for more information.
> +#
> +BOARDNAME += $(SUBTARGET)
> +
> +# subtarget macros
> +# PARTITION_SIZE unit: (M)
> +define Subtarget/Default
> +       DEVICE_DTS = freescale/fsl-ls1043a-rdb
> +       DTB_PARTITION_SIZE = 1
> +       KERNEL_PARTITION_SIZE = 5
> +       SQUASHFS_PARTITION_SIZE = 54
> +endef

Please don't use subtargets for single boards - subtargets should be
limited for variants that require different, incompatible compiler
options or kernel options (e.g. little vs big endian, 32 vs 64 bit
etc).

Just make this the default device/profile of the target then.


Regards
Jonas
yutang jiang July 14, 2016, 7:05 a.m. UTC | #2
Hi Jonas,

Thanks you for your advise!
It is first time for our team to submit patch to Openwrt, we will following your suggestion to update our patches.

Summary:
1.update codebase to 4.4 kernel.
2.merge two patches to one and put it on github repository.
3.remove README.ls1043ardb, then add this information to the wiki.
4.update image build code to Device/* sections
5.find Build/check-size and Device/Build/check_size, replace checkimagesize.sh
6.minimize kernel config.
7.replace subtargets with device/profile.


Thanks & Best Regards
Jiang Yutang

-----Original Message-----
From: Jonas Gorski [mailto:jonas.gorski@gmail.com] 

Sent: Wednesday, July 13, 2016 6:42 PM
To: Yutang Jiang
Cc: OpenWrt Development List
Subject: Re: [OpenWrt-Devel] [PATCH 1/2] layerscape: add ls1043ardb-64b target

Hi,

On 13 July 2016 at 19:56,  <yutang.jiang@nxp.com> wrote:
> From: Yutang Jiang <yutang.jiang@nxp.com>

>

> Add support for NXP layerscape ls1043ardb-64b Dev board.


Nice to see support for it here. A few things first, though

>

> ls1043ardb-64b target is using 4.1 kernel and rcw/u-boot/fman images 

> from  NXP QorIQ SDK V2.0 release.


Please update your codebase to 4.4 first. The next release kernel is currently planned to be 4.4.

> All of 4.1 kernel patches will be in the second patch, it have more 

> than

>  100 kernel patches: platform/flash/dpaa/mmc/usb/pcie etc, porting 

> from  SDK release or upstream.


Please add them at the same time. If it's too large for an email, you can also put the commit in a public git repository. You can also create a pull request on github.

I guess several of the patches will be obsolete with the switch to 4.4 anyway?

>

> Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>

> ---

>  target/linux/layerscape-64b/Makefile               |   26 +

>  target/linux/layerscape-64b/README.ls1043ardb      |  860 ++++++

>  target/linux/layerscape-64b/base-files/etc/inittab |    6 +

>  target/linux/layerscape-64b/image/Makefile         |   64 +

>  .../linux/layerscape-64b/image/checkimagesize.sh   |   16 +

>  .../linux/layerscape-64b/ls1043ardb/config-default | 3146 ++++++++++++++++++++

>  target/linux/layerscape-64b/ls1043ardb/target.mk   |   16 +

>  7 files changed, 4134 insertions(+)

>  create mode 100644 target/linux/layerscape-64b/Makefile

>  create mode 100644 target/linux/layerscape-64b/README.ls1043ardb

>  create mode 100644 target/linux/layerscape-64b/base-files/etc/inittab

>  create mode 100644 target/linux/layerscape-64b/image/Makefile

>  create mode 100755 

> target/linux/layerscape-64b/image/checkimagesize.sh

>  create mode 100644 

> target/linux/layerscape-64b/ls1043ardb/config-default

>  create mode 100644 target/linux/layerscape-64b/ls1043ardb/target.mk

>

> diff --git a/target/linux/layerscape-64b/Makefile 

> b/target/linux/layerscape-64b/Makefile

> new file mode 100644

> index 0000000..63d55b9

> --- /dev/null

> +++ b/target/linux/layerscape-64b/Makefile

> @@ -0,0 +1,26 @@

> +#

> +# Copyright (C) 2016 OpenWrt.org

> +#

> +# This is free software, licensed under the GNU General Public License v2.

> +# See /LICENSE for more information.

> +#

> +include $(TOPDIR)/rules.mk

> +

> +ARCH:=aarch64

> +BOARD:=layerscape-64b

> +BOARDNAME:=layerscape 64b

> +CFLAGS:=-Os -pipe -fno-caller-saves

> +DEVICE_TYPE:=developerboard

> +KERNEL_PATCHVER:=4.1

> +KERNELNAME:=Image dtbs

> +FEATURES:=squashfs

> +SUBTARGETS:=ls1043ardb

> +MAINTAINER:=Jiang Yutang <yutang.jiang@nxp.com>

> +

> +include $(INCLUDE_DIR)/target.mk

> +

> +define Target/Description

> +       Build firmware images for $(BOARDNAME) SoC devices.

> +endef

> +

> +$(eval $(call BuildTarget))

> diff --git a/target/linux/layerscape-64b/README.ls1043ardb 

> b/target/linux/layerscape-64b/README.ls1043ardb

> new file mode 100644

> index 0000000..9f6a0af

> --- /dev/null

> +++ b/target/linux/layerscape-64b/README.ls1043ardb

> @@ -0,0 +1,860 @@

(snip)

I think a lot of this information (like the bootlog) is better served on the wiki, or shouldn't be here at all (like the contents of various uci files, which are subject to change, and nobody will remember to update the example output here).

> diff --git a/target/linux/layerscape-64b/image/Makefile 

> b/target/linux/layerscape-64b/image/Makefile

> new file mode 100644

> index 0000000..43e7269

> --- /dev/null

> +++ b/target/linux/layerscape-64b/image/Makefile

> @@ -0,0 +1,64 @@

> +#

> +# Copyright (C) 2016 OpenWrt.org

> +#

> +# This is free software, licensed under the GNU General Public License v2.

> +# See /LICENSE for more information.

> +#

> +include $(TOPDIR)/rules.mk

> +include $(INCLUDE_DIR)/image.mk

> +

> +# make uImage and dtb

> +define Image/uImage-dtb

> +       gzip -9c < $(KDIR)/Image > $(KDIR)/Image.gz

> +       $(eval ARCH_BACK = $(ARCH))

> +       $(eval ARCH = $(LINUX_KARCH))

> +       $(call Image/BuildKernel/MkuImage, gzip, $(KERNEL_LOADADDR), \

> +               $(KERNEL_ENTRY_POINT), $(KDIR)/Image.gz, \

> +               $(KDIR)/$(IMG_PREFIX)-uImage)

> +       $(eval ARCH = $(ARCH_BACK))

> +

> +       $(call 

> +Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$(KDIR)/$(IMG_PREFIX)-dtb

> +)

> +endef

> +

> +# $(1) source image name

> +# $(2) partition image name

> +# $(3) partition image size(M)

> +define Image/Build/flashpartitionimage

> +       ./checkimagesize.sh $(1) $(3)

> +       dd if=/dev/zero bs=1M count=$(3) | sed 's/\x00/\xff/g' > $(2)

> +       dd if=$(1) of=$(2) conv=notrunc endef

> +

> +# make squashfs then merge uImage/dtb/squashfs to one firmware image 

> +arranged # by individual partition define Image/Build/squashfs

> +       $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)

> +

> +       $(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-dtb,$(KDIR)/$(IMG_PREFIX)-dtb-par,$(DTB_PARTITION_SIZE))

> +       $(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-uImage,$(KDIR)/$(IMG_PREFIX)-uImage-par,$(KERNEL_PARTITION_SIZE))

> +       $(call Image/Build/flashpartitionimage,$(KDIR)/root.squashfs,$(KDIR)/root.squashfs-par,$(SQUASHFS_PARTITION_SIZE))

> +       cat $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \

> +               $(KDIR)/root.squashfs-par > $(BIN_DIR)/$(IMG_PREFIX)-firmware

> +       $(RM) $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \

> +               $(KDIR)/root.squashfs-par endef

> +

> +# target macros

> +define Target/Default

> +       KERNEL_LOADADDR = 0x80080000

> +       KERNEL_ENTRY_POINT = 0x80080000 endef

> +

> +# callback function: Image/BuildKernel define Image/BuildKernel

> +       $(eval $(call Target/Default))

> +       $(eval $(call Subtarget/Default))

> +       $(call Image/uImage-dtb)

> +endef

> +

> +# callback function: Image/Build

> +define Image/Build

> +       $(call Image/Build/$(1),$(1))

> +endef

> +

> +$(eval $(call BuildImage))


Please update your image build code to the new image code with defining appropriate Device/* sections. This will then also eliminate

> diff --git a/target/linux/layerscape-64b/image/checkimagesize.sh 

> b/target/linux/layerscape-64b/image/checkimagesize.sh

> new file mode 100755

> index 0000000..e65c7fe

> --- /dev/null

> +++ b/target/linux/layerscape-64b/image/checkimagesize.sh


this file, as there is a size check build step available.

> diff --git a/target/linux/layerscape-64b/ls1043ardb/config-default 

> b/target/linux/layerscape-64b/ls1043ardb/config-default

> new file mode 100644

> index 0000000..1543907

> --- /dev/null

> +++ b/target/linux/layerscape-64b/ls1043ardb/config-default

> @@ -0,0 +1,3146 @@

> +#

> +# Automatically generated file; DO NOT EDIT.

> +# Linux/arm64 4.1.23 Kernel Configuration #

> (snip)


Please minimize this config by running "make kernel_defconfig CONFIG_TARGET=subtarget" (or put this as the "main" config as target/layerscape-64b/config-default, then run just "make kernel_defconfig").

> diff --git a/target/linux/layerscape-64b/ls1043ardb/target.mk 

> b/target/linux/layerscape-64b/ls1043ardb/target.mk

> new file mode 100644

> index 0000000..9f2580b

> --- /dev/null

> +++ b/target/linux/layerscape-64b/ls1043ardb/target.mk

> @@ -0,0 +1,16 @@

> +#

> +# Copyright (C) 2016 OpenWrt.org

> +#

> +# This is free software, licensed under the GNU General Public License v2.

> +# See /LICENSE for more information.

> +#

> +BOARDNAME += $(SUBTARGET)

> +

> +# subtarget macros

> +# PARTITION_SIZE unit: (M)

> +define Subtarget/Default

> +       DEVICE_DTS = freescale/fsl-ls1043a-rdb

> +       DTB_PARTITION_SIZE = 1

> +       KERNEL_PARTITION_SIZE = 5

> +       SQUASHFS_PARTITION_SIZE = 54

> +endef


Please don't use subtargets for single boards - subtargets should be limited for variants that require different, incompatible compiler options or kernel options (e.g. little vs big endian, 32 vs 64 bit etc).

Just make this the default device/profile of the target then.


Regards
Jonas
yutang jiang July 26, 2016, 3:18 a.m. UTC | #3
Hi Zoltan!


I'm working on fix some conflict issue while upgrade kernel to 4.4. And previously our team have plan to support both 32b and 64b on ls1043, now I'm combining 32b patch with 64b patch to 4.4 kernel openwrt patch, unfortunately, also encounter some conflict, so I need more time to resolve them.

Question 1: yes, I think so. Current phase, I focus on kernel/platform/openwrt target related porting work, u-boot can using our SDK release images temporary.
Question 2: yes, we also plan add others board supporting on openwrt/lede. My colleagues working on some kernel patches upstreaming, after porting ls1043 to openwrt, our test team also will do some features and performance validate work. When encountering difficult problem, I will ask for your advice. Thanks Zoltan for your enthusiasm!


Hi Jonas,

Because ls1043 will both support 32b and 64b, it need different compiler, while update patches, I should reserve subtargets to distinguish them. The update process is a bit slow for more work at hand. Once finish update work, I will send the second version patch immediately.


Thanks & Best Regards
Jiang Yutang

-----Original Message-----
From: Zoltan HERPAI [mailto:wigyori@openwrt.org] 

Sent: Monday, July 25, 2016 7:52 PM
To: Yutang Jiang
Cc: Luka Perkov
Subject: Re: [PATCH 1/2] layerscape: add ls1043ardb-64b target

Hi Jiang,

Yutang Jiang wrote:
> Hi Jonas,

>

> Thanks you for your advise!

> It is first time for our team to submit patch to Openwrt, we will following your suggestion to update our patches.

>

> Summary:

> 1.update codebase to 4.4 kernel.

> 2.merge two patches to one and put it on github repository.

> 3.remove README.ls1043ardb, then add this information to the wiki.

> 4.update image build code to Device/* sections 5.find Build/check-size 

> and Device/Build/check_size, replace checkimagesize.sh 6.minimize 

> kernel config.

> 7.replace subtargets with device/profile.

>   

Thanks for sending this patchset to support the Layerscape 1043 boards. 
If any further help is needed with porting to 4.4 or further, how the patches should look or how the image building should work, please send us a line, we're happy to help. I'd have two questions here :)

 - Do you plan to send a package/boot patch for building u-boot for the board? It might be just me but I didn't see it among the patches.
 - May I ask about the interest for NXP in having this board supported in OpenWrt? Is there anything we can help in?

Thanks,
Zoltan H
OpenWrt
yutang jiang Aug. 8, 2016, 11 a.m. UTC | #4
Hi Jonas,

  Sorry for so late update. Now I almost finish the issues of update to 4.4 and 32b/64b merge, also update Device/* sections and device/profile, But blocking by minimize kernel config:( .
  Previously, I just have a compiled .config file and copy it to target/linux/layerscape-64b/ls1043ardb/config-default as default kernel config, it too large indeed. I try to run "make kernel_defconfig ONFIG_TARGET=subtarget " or "make kernel_defconfig" but get Error. I once copy the freescale.config from our SDK2.0 release as config-default, it can create a .config file by run " ./scripts/kconfig/merge_config.sh arch/arm64/configs/defconfig arch/arm64/configs/freescale.config ", but also failed, and I also try to other two methods:(1) run " make ARCH=arm64 savedefconfig" in kernel folder and then copy defconfig as config-default, (2) run " sed -i '/#/d' .config " and "sed -i '/^$/d' .config " in kernel folder to delete those not used options and then copy .config as config-default. These minimize methods all lead to manual select kernel options while make -j1 V=s:

make[5]: Entering directory `/home/jyt/openwrt/project-github.openwrt.git/openwrt-1/build_dir/target-aarch64_armv8-a_musl-1.1.14/linux-layerscape_64b/linux-4.4.14'
scripts/kconfig/conf  --silentoldconfig Kconfig
net/sched/Kconfig:44: warning: menuconfig statement without prompt
.config:2434:warning: override: MTD_CFI_NOSWAP changes choice state
.config:3263:warning: override: PREEMPT_VOLUNTARY changes choice state
.config:3906:warning: override: SLUB changes choice state
*
* Restart config...
*
*
* General setup
*
Cross-compiler tool prefix (CROSS_COMPILE) []
Compile also drivers which will not load (COMPILE_TEST) [N/y/?] n
Local version - append to kernel release (LOCALVERSION) []
Automatically append version information to the version string (LOCALVERSION_AUTO) [N/y/?] n
Default hostname (DEFAULT_HOSTNAME) [(none)] (none)
Support for paging of anonymous memory (swap) (SWAP) [Y/n/?] y
System V IPC (SYSVIPC) [Y/n/?] y
POSIX Message Queues (POSIX_MQUEUE) [Y/n/?] y
Enable process_vm_readv/writev syscalls (CROSS_MEMORY_ATTACH) [N/y/?] n
open by fhandle syscalls (FHANDLE) [N/y/?] n
uselib syscall (USELIB) [N/y/?] n
Auditing support (AUDIT) [Y/n/?] y
Enable system-call auditing support (AUDITSYSCALL) [N/y/?] (NEW)


I wonder how to conveniently minimize a compiled kernel .config to a config-4.4 or config-default that can be used by a target? Anyone can give me some hint? Thanks!



Thanks & Best Regards
Jiang Yutang

-----Original Message-----
From: Yutang Jiang 

Sent: Tuesday, July 26, 2016 11:19 AM
To: 'Zoltan HERPAI'; 'Jonas Gorski'
Cc: Luka Perkov; 'OpenWrt Development List'; 'Conor O'Gorman'
Subject: RE: [PATCH 1/2] layerscape: add ls1043ardb-64b target

Hi Zoltan!


I'm working on fix some conflict issue while upgrade kernel to 4.4. And previously our team have plan to support both 32b and 64b on ls1043, now I'm combining 32b patch with 64b patch to 4.4 kernel openwrt patch, unfortunately, also encounter some conflict, so I need more time to resolve them.

Question 1: yes, I think so. Current phase, I focus on kernel/platform/openwrt target related porting work, u-boot can using our SDK release images temporary.
Question 2: yes, we also plan add others board supporting on openwrt/lede. My colleagues working on some kernel patches upstreaming, after porting ls1043 to openwrt, our test team also will do some features and performance validate work. When encountering difficult problem, I will ask for your advice. Thanks Zoltan for your enthusiasm!


Hi Jonas,

Because ls1043 will both support 32b and 64b, it need different compiler, while update patches, I should reserve subtargets to distinguish them. The update process is a bit slow for more work at hand. Once finish update work, I will send the second version patch immediately.


Thanks & Best Regards
Jiang Yutang

-----Original Message-----
From: Zoltan HERPAI [mailto:wigyori@openwrt.org]

Sent: Monday, July 25, 2016 7:52 PM
To: Yutang Jiang
Cc: Luka Perkov
Subject: Re: [PATCH 1/2] layerscape: add ls1043ardb-64b target

Hi Jiang,

Yutang Jiang wrote:
> Hi Jonas,

>

> Thanks you for your advise!

> It is first time for our team to submit patch to Openwrt, we will following your suggestion to update our patches.

>

> Summary:

> 1.update codebase to 4.4 kernel.

> 2.merge two patches to one and put it on github repository.

> 3.remove README.ls1043ardb, then add this information to the wiki.

> 4.update image build code to Device/* sections 5.find Build/check-size 

> and Device/Build/check_size, replace checkimagesize.sh 6.minimize 

> kernel config.

> 7.replace subtargets with device/profile.

>   

Thanks for sending this patchset to support the Layerscape 1043 boards. 
If any further help is needed with porting to 4.4 or further, how the patches should look or how the image building should work, please send us a line, we're happy to help. I'd have two questions here :)

 - Do you plan to send a package/boot patch for building u-boot for the board? It might be just me but I didn't see it among the patches.
 - May I ask about the interest for NXP in having this board supported in OpenWrt? Is there anything we can help in?

Thanks,
Zoltan H
OpenWrt
Yousong Zhou Aug. 8, 2016, 11:18 a.m. UTC | #5
On 8 August 2016 at 19:00, Yutang Jiang <yutang.jiang@nxp.com> wrote:
> Hi Jonas,
>
>   Sorry for so late update. Now I almost finish the issues of update to 4.4 and 32b/64b merge, also update Device/* sections and device/profile, But blocking by minimize kernel config:( .
>   Previously, I just have a compiled .config file and copy it to target/linux/layerscape-64b/ls1043ardb/config-default as default kernel config, it too large indeed. I try to run "make kernel_defconfig ONFIG_TARGET=subtarget " or "make kernel_defconfig" but get Error. I once copy the freescale.config from our SDK2.0 release as config-default, it can create a .config file by run " ./scripts/kconfig/merge_config.sh arch/arm64/configs/defconfig arch/arm64/configs/freescale.config ", but also failed, and I also try to other two methods:(1) run " make ARCH=arm64 savedefconfig" in kernel folder and then copy defconfig as config-default, (2) run " sed -i '/#/d' .config " and "sed -i '/^$/d' .config " in kernel folder to delete those not used options and then copy .config as config-default. These minimize methods all lead to manual select kernel options while make -j1 V=s:
>
> make[5]: Entering directory `/home/jyt/openwrt/project-github.openwrt.git/openwrt-1/build_dir/target-aarch64_armv8-a_musl-1.1.14/linux-layerscape_64b/linux-4.4.14'
> scripts/kconfig/conf  --silentoldconfig Kconfig
> net/sched/Kconfig:44: warning: menuconfig statement without prompt
> .config:2434:warning: override: MTD_CFI_NOSWAP changes choice state
> .config:3263:warning: override: PREEMPT_VOLUNTARY changes choice state
> .config:3906:warning: override: SLUB changes choice state
> *
> * Restart config...
> *
> *
> * General setup
> *
> Cross-compiler tool prefix (CROSS_COMPILE) []
> Compile also drivers which will not load (COMPILE_TEST) [N/y/?] n
> Local version - append to kernel release (LOCALVERSION) []
> Automatically append version information to the version string (LOCALVERSION_AUTO) [N/y/?] n
> Default hostname (DEFAULT_HOSTNAME) [(none)] (none)
> Support for paging of anonymous memory (swap) (SWAP) [Y/n/?] y
> System V IPC (SYSVIPC) [Y/n/?] y
> POSIX Message Queues (POSIX_MQUEUE) [Y/n/?] y
> Enable process_vm_readv/writev syscalls (CROSS_MEMORY_ATTACH) [N/y/?] n
> open by fhandle syscalls (FHANDLE) [N/y/?] n
> uselib syscall (USELIB) [N/y/?] n
> Auditing support (AUDIT) [Y/n/?] y
> Enable system-call auditing support (AUDITSYSCALL) [N/y/?] (NEW)
>
>
> I wonder how to conveniently minimize a compiled kernel .config to a config-4.4 or config-default that can be used by a target? Anyone can give me some hint? Thanks!
>

Hi, Yutang

I have once made a bump from 4.1 to 4.4 for malta [1], you can give
the following command a try.

       make kernel_menuconfig CONFIG_TARGET=subtarget_platform

[1] malta: move to 4.4 kernel,
https://git.lede-project.org/?p=source.git;a=commit;h=1923d633186ad969cbecade300986d84a27c3ff7


Cheers,
               yousong
yutang jiang Aug. 8, 2016, 12:41 p.m. UTC | #6
Hi yousong,

  Thank you!
  Now I using "make kernel_menuconfig CONFIG_TARGET=subtarget" generate the subtarget config-default. Last time, Jonas give me same hint, but I fail to understand this script, thank you Jonas!

  Recently, I will make more test and then send v2 patch.


Thanks & Best Regards
Jiang Yutang

-----Original Message-----
From: Yousong Zhou [mailto:yszhou4tech@gmail.com] 

Sent: Monday, August 08, 2016 7:18 PM
To: Yutang Jiang
Cc: Jonas Gorski; Luka Perkov; OpenWrt Development List; Zoltan HERPAI
Subject: Re: [OpenWrt-Devel] [PATCH 1/2] layerscape: add ls1043ardb-64b target

On 8 August 2016 at 19:00, Yutang Jiang <yutang.jiang@nxp.com> wrote:
> Hi Jonas,

>

>   Sorry for so late update. Now I almost finish the issues of update to 4.4 and 32b/64b merge, also update Device/* sections and device/profile, But blocking by minimize kernel config:( .

>   Previously, I just have a compiled .config file and copy it to target/linux/layerscape-64b/ls1043ardb/config-default as default kernel config, it too large indeed. I try to run "make kernel_defconfig ONFIG_TARGET=subtarget " or "make kernel_defconfig" but get Error. I once copy the freescale.config from our SDK2.0 release as config-default, it can create a .config file by run " ./scripts/kconfig/merge_config.sh arch/arm64/configs/defconfig arch/arm64/configs/freescale.config ", but also failed, and I also try to other two methods:(1) run " make ARCH=arm64 savedefconfig" in kernel folder and then copy defconfig as config-default, (2) run " sed -i '/#/d' .config " and "sed -i '/^$/d' .config " in kernel folder to delete those not used options and then copy .config as config-default. These minimize methods all lead to manual select kernel options while make -j1 V=s:

>

> make[5]: Entering directory `/home/jyt/openwrt/project-github.openwrt.git/openwrt-1/build_dir/target-aarch64_armv8-a_musl-1.1.14/linux-layerscape_64b/linux-4.4.14'

> scripts/kconfig/conf  --silentoldconfig Kconfig

> net/sched/Kconfig:44: warning: menuconfig statement without prompt

> .config:2434:warning: override: MTD_CFI_NOSWAP changes choice state

> .config:3263:warning: override: PREEMPT_VOLUNTARY changes choice state

> .config:3906:warning: override: SLUB changes choice state

> *

> * Restart config...

> *

> *

> * General setup

> *

> Cross-compiler tool prefix (CROSS_COMPILE) [] Compile also drivers 

> which will not load (COMPILE_TEST) [N/y/?] n Local version - append to 

> kernel release (LOCALVERSION) [] Automatically append version 

> information to the version string (LOCALVERSION_AUTO) [N/y/?] n 

> Default hostname (DEFAULT_HOSTNAME) [(none)] (none) Support for paging 

> of anonymous memory (swap) (SWAP) [Y/n/?] y System V IPC (SYSVIPC) 

> [Y/n/?] y POSIX Message Queues (POSIX_MQUEUE) [Y/n/?] y Enable 

> process_vm_readv/writev syscalls (CROSS_MEMORY_ATTACH) [N/y/?] n open 

> by fhandle syscalls (FHANDLE) [N/y/?] n uselib syscall (USELIB) 

> [N/y/?] n Auditing support (AUDIT) [Y/n/?] y Enable system-call 

> auditing support (AUDITSYSCALL) [N/y/?] (NEW)

>

>

> I wonder how to conveniently minimize a compiled kernel .config to a config-4.4 or config-default that can be used by a target? Anyone can give me some hint? Thanks!

>


Hi, Yutang

I have once made a bump from 4.1 to 4.4 for malta [1], you can give the following command a try.

       make kernel_menuconfig CONFIG_TARGET=subtarget_platform

[1] malta: move to 4.4 kernel,
https://git.lede-project.org/?p=source.git;a=commit;h=1923d633186ad969cbecade300986d84a27c3ff7


Cheers,
               yousong
diff mbox

Patch

diff --git a/target/linux/layerscape-64b/Makefile b/target/linux/layerscape-64b/Makefile
new file mode 100644
index 0000000..63d55b9
--- /dev/null
+++ b/target/linux/layerscape-64b/Makefile
@@ -0,0 +1,26 @@ 
+#
+# Copyright (C) 2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+include $(TOPDIR)/rules.mk
+
+ARCH:=aarch64
+BOARD:=layerscape-64b
+BOARDNAME:=layerscape 64b
+CFLAGS:=-Os -pipe -fno-caller-saves
+DEVICE_TYPE:=developerboard
+KERNEL_PATCHVER:=4.1
+KERNELNAME:=Image dtbs
+FEATURES:=squashfs
+SUBTARGETS:=ls1043ardb
+MAINTAINER:=Jiang Yutang <yutang.jiang@nxp.com>
+
+include $(INCLUDE_DIR)/target.mk
+
+define Target/Description
+	Build firmware images for $(BOARDNAME) SoC devices.
+endef
+
+$(eval $(call BuildTarget))
diff --git a/target/linux/layerscape-64b/README.ls1043ardb b/target/linux/layerscape-64b/README.ls1043ardb
new file mode 100644
index 0000000..9f6a0af
--- /dev/null
+++ b/target/linux/layerscape-64b/README.ls1043ardb
@@ -0,0 +1,860 @@ 
+1.NOR Flash Memory Map Layout for LS1043ARDB
+------------------------------------------
+Start      End Offset Description            Size
+0x60000000 0x600FFFFF bank0 rcw + pbi         1M
+0x60100000 0x601FFFFF bank0 U-Boot image      1M
+0x60200000 0x602FFFFF bank0 U-Boot Env        1M
+0x60300000 0x603FFFFF bank0 Fman ucode        1M
+0x60400000 0x63FFFFFF bank0 OpenWrt firmware 60M
+0x64000000 0x67FFFFFF bank4 Otherbank        64M
+
+2.Partitioning of the Flash
+-------------------------
+####################################################################################################
+# Layer0 #                              raw flash, 128M                                            #
+####################################################################################################
+#        # mtd0 # mtd1   # mtd2       # mtd3 #                 mtd9                    # mtd8      #
+# Layer1 # rcw  # u-boot # u-boot-env # fman #               firmware                  # otherbank #
+#        # 1M   # 1M     # 1M         # 1M   #                 60M                     # 64M       #
+####################################################################################################
+#        #      #        #            #      # mtd4 # mtd5   #       mtd6              #           #
+# Layer2 #      #        #            #      # dtb  # kernel #       rootfs            #           #
+#        #      #        #            #      # 1M   # 5M     #       54M               #           #
+####################################################################################################
+#        #      #        #            #      #      #        #           # mtd7        #           #
+# Layer3 #      #        #            #      #      #        # /dev/root # rootfs_data #           #
+#        #      #        #            #      #      #        # "/rom"    # "/overlay"  #           #
+#        #      #        #            #      #      #        # SquashFS  # JFFS2       #           #
+####################################################################################################
+
+3.Flashing firmware image and bootup kernel in u-boot
+-----------------------------------------------------
+setenv gatewayip <gatewayip>
+setenv ipaddr <board ip>
+setenv serverip <tftp server ip>
+setenv loadaddr 82000000 && setenv ramdiskaddr 88000000 && setenv fdtaddr 8f000000
+setenv wrtboot 'setenv bootargs root=/dev/mtdblock6 rootfstype=squashfs,jffs2 noinitrd earlycon=uart8250,mmio,0x21c0500 console=ttyS0,115200 mtdparts=60000000.nor:1M(rcw),1M(u-boot),1M(u-boot-env),1M(fman),1M(dtb),5M(kernel),54M(rootfs),64M(otherbank),60M@0x400000(firmware) && cp.b 60400000 $fdtaddr 100000 && cp.b 60500000 $loadaddr 500000 && bootm $loadaddr - $fdtaddr'
+save
+tftp a0000000 your_tftpserver_folder/openwrt-layerscape-64b-ls1043ardb-firmware && protect off all && erase 60400000 +3c00000 && cp.b a0000000 60400000 $filesize
+run wrtboot
+
+4.Boot log
+---------------------------------
+U-Boot 2015.01QorIQ-SDK-V1.7+gc297f5b (Dec 20 2015 - 13:08:26)
+
+Clock Configuration:
+       CPU0(A53):1600 MHz  CPU1(A53):1600 MHz  CPU2(A53):1600 MHz
+       CPU3(A53):1600 MHz
+       Bus:      400  MHz  DDR:      1600 MT/s  FMAN:     500  MHz
+Reset Configuration Word (RCW):
+       00000000: 08100010 0a000000 00000000 00000000
+       00000010: 14550002 80004012 e0025000 c1002000
+       00000020: 00000000 00000000 00000000 00038800
+       00000030: 00000000 00001101 00000096 00000001
+Board: LS1043ARDB, boot from vBank 0
+CPLD:  V1.4
+PCBA:  V3.0
+SERDES Reference Clocks:
+SD1_CLK1 = 156.25MHZ, SD1_CLK2 = 100.00MHZ
+I2C:   ready
+DRAM:  Initializing DDR....
+Detected UDIMM Fixed DDR on board
+2 GiB (DDR4, 32-bit, CL=11, ECC off)
+Firmware 'Microcode version 0.0.1 for LS1021a r1.0' for 1021 V1.0
+QE: uploading microcode 'Microcode for LS1021a r1.0' version 0.0.1
+Using SERDES1 Protocol: 5205 (0x1455)
+fman_port_enet_if:71: port(FM1_DTSEC3) is OK
+fman_port_enet_if:77: port(FM1_DTSEC4) is OK
+Flash: 128 MiB
+NAND:  512 MiB
+MMC:   FSL_SDHC: 0
+EEPROM: NXID v1
+PCIe1: disabled
+PCIe2: Root Complex no link, regs @ 0x3500000
+PCIe3: Root Complex x1 gen1, regs @ 0x3600000
+     01:00.0    - 8086:10d3 - Network controller
+PCIe3: Bus 00 - 01
+In:    serial
+Out:   serial
+Err:   serial
+Net:   Fman1: Uploading microcode version 106.4.17
+e1000: 68:05:ca:35:fa:4a
+       FM1@DTSEC1, FM1@DTSEC2, FM1@DTSEC3, FM1@DTSEC4, FM1@DTSEC5, FM1@DTSEC6, FM1@TGEC1, e1000#0 [PRIME]
+Warning: e1000#0 MAC addresses don't match:
+Address in SROM is         68:05:ca:35:fa:4a
+Address in environment is  00:e0:0c:00:73:07
+
+=>
+=> pri
+baudrate=115200
+bootargs=console=ttyS0,115200 root=/dev/ram0 earlycon=uart8250,0x21c0500,115200
+bootcmd=cpld reset altbank
+bootdelay=-1
+console=ttyAMA0,38400n8
+eth10addr=00:E0:0C:00:73:0a
+eth11addr=00:E0:0C:00:73:0b
+eth12addr=00:E0:0C:00:73:0c
+eth13addr=00:E0:0C:00:73:0d
+eth14addr=00:E0:0C:00:73:0e
+eth15addr=00:E0:0C:00:73:0f
+eth1addr=00:E0:0C:00:73:01
+eth2addr=00:E0:0C:00:73:02
+eth3addr=00:E0:0C:00:73:03
+eth4addr=00:E0:0C:00:73:04
+eth5addr=00:E0:0C:00:73:05
+eth6addr=00:E0:0C:00:73:06
+eth7addr=00:E0:0C:00:73:07
+eth8addr=00:E0:0C:00:73:08
+eth9addr=00:E0:0C:00:73:09
+ethact=e1000#0
+ethaddr=00:E0:0C:00:73:00
+ethprime=e1000#0
+faddr_fman_mc=0x64300000
+faddr_rcw=0x64000000
+faddr_uboot=0x64100000
+fdt_high=0xffffffffffffffff
+fman_ucode=60300000
+gatewayip=192.168.1.1
+hwconfig=fsl_ddr:bank_intlv=auto;dspi
+img_fman_mc=b28495/sdk/sdk-ls1043a/201512200957-b0dba1d/ls1043ardb/fsl_fman_ucode_t2080_r1.1_106_4_17.bin
+img_rcw=b28495/sdk/sdk-ls1043a/201512200957-b0dba1d/ls1043ardb/rcw/ls1043ardb/RR_FQPP_1455/rcw_1600.bin
+img_uboot=b28495/armv8-staging/ls1043a/u-boot-ls1043ardb.bin
+initrd_high=0xffffffffffffffff
+ipaddr=192.168.2.135
+kernel_addr=0x100000
+kernel_load=0xa0000000
+kernel_size=0x2800000
+kernel_start=0x61100000
+loadaddr=0x80100000
+netmask=255.255.255.0
+raddr_temp=0x90000000
+ramdisk_addr=0x800000
+ramdisk_size=0x2000000
+scsidevs=0
+serverip=192.168.2.1
+stderr=serial
+stdin=serial
+stdout=serial
+upbank4=tftp 82000000 b18965/ls1043-rdb/u-boot-dtb.bin && protect off all && erase 64100000 641fffff && cp.b 0x82000000 64100000 100000 && run bootcmd
+
+Environment size: 1653/131068 bytes
+=> cpld reset altbank
+
+U-Boot 2016.07-rc2-g15030c7 (Jul 13 2016 - 02:10:41 +0800), Build: jenkins-armv8-u-boot-build-ls1043-1s2085-247
+
+SoC:  unknown (0x87920410)
+Clock Configuration:
+       CPU0(A53):1600 MHz  CPU1(A53):1600 MHz  CPU2(A53):1600 MHz
+       CPU3(A53):1600 MHz
+       Bus:      400  MHz  DDR:      1600 MT/s  FMAN:     500  MHz
+Reset Configuration Word (RCW):
+       00000000: 08100010 0a000000 00000000 00000000
+       00000010: 14550002 80004012 e0025000 c1002000
+       00000020: 00000000 00000000 00000000 00038800
+       00000030: 00000000 00001101 00000096 00000001
+Model: LS1043A RDB Board
+Board: LS1043ARDB, boot from vBank 4
+CPLD:  V1.4
+PCBA:  V3.0
+SERDES Reference Clocks:
+SD1_CLK1 = 156.25MHZ, SD1_CLK2 = 100.00MHZ
+I2C:   ready
+DRAM:  Initializing DDR....
+Detected UDIMM Fixed DDR on board
+2 GiB (DDR4, 32-bit, CL=11, ECC off)
+Not a microcode
+Waking secondary cores to start from ffd08000
+All (4) cores are up.
+Using SERDES1 Protocol: 5205 (0x1455)
+Flash: 128 MiB
+NAND:  512 MiB
+MMC:   FSL_SDHC: 0
+EEPROM: NXID v1
+PCIe1: disabled
+PCIe2: Root Complex no link, regs @ 0x3500000
+PCIe3: Root Complex x1 gen1, regs @ 0x3600000
+PCI:
+     01:00.0    - 8086:10d3 - Network controller
+PCIe3: Bus 00 - 01
+In:    serial
+Out:   serial
+Err:   serial
+SEC0: RNG instantiated
+Net:   Fman1: Uploading microcode version 106.4.17
+e1000: 68:05:ca:35:fa:4a
+       FM1@DTSEC1, FM1@DTSEC2, FM1@DTSEC3, FM1@DTSEC4, FM1@DTSEC5, FM1@DTSEC6, FM1@TGEC1, e1000#0 [PRIME]
+Warning: e1000#0 MAC addresses don't match:
+Address in SROM is         68:05:ca:35:fa:4a
+Address in environment is  00:e0:0c:00:73:07
+
+=> pri
+baudrate=115200
+bootargs=console=ttyS0,115200 root=/dev/ram0 earlycon=uart8250,mmio,0x21c0500
+bootcmd=cp.b $kernel_start $kernel_load $kernel_size && bootm $kernel_load
+bootdelay=-1
+console=ttyAMA0,38400n8
+eth10addr=00:E0:0C:00:73:0a
+eth11addr=00:E0:0C:00:73:0b
+eth12addr=00:E0:0C:00:73:0c
+eth13addr=00:E0:0C:00:73:0d
+eth14addr=00:E0:0C:00:73:0e
+eth15addr=00:E0:0C:00:73:0f
+eth1addr=00:E0:0C:00:73:01
+eth2addr=00:E0:0C:00:73:02
+eth3addr=00:E0:0C:00:73:03
+eth4addr=00:E0:0C:00:73:04
+eth5addr=00:E0:0C:00:73:05
+eth6addr=00:E0:0C:00:73:06
+eth7addr=00:E0:0C:00:73:07
+eth8addr=00:E0:0C:00:73:08
+eth9addr=00:E0:0C:00:73:09
+ethact=e1000#0
+ethaddr=00:E0:0C:00:73:00
+ethprime=e1000#0
+fdt_high=0xffffffffffffffff
+fdtcontroladdr=ffbc5728
+fman_ucode=60300000
+hwconfig=fsl_ddr:bank_intlv=auto;dspi
+initrd_high=0xffffffffffffffff
+kernel_addr=0x100000
+kernel_load=0xa0000000
+kernel_size=0x2800000
+kernel_start=0x61100000
+loadaddr=0x80100000
+ramdisk_addr=0x800000
+ramdisk_size=0x2000000
+stderr=serial
+stdin=serial
+stdout=serial
+
+Environment size: 1089/131068 bytes
+=> setenv ipaddr 192.168.2.135
+=> setenv serverip 192.168.2.1
+=> setenv gatewayip 192.168.1.1
+=> setenv loadaddr 82000000 && setenv ramdiskaddr 88000000 && setenv fdtaddr 8f000000
+=> setenv wrtboot 'setenv bootargs root=/dev/mtdblock6 rootfstype=squashfs,jffs2 noinitrd earlycon=uart8250,mmio,0x21c0500 console=ttyS0,115200 mtdparts=60000000.nor:1M(rcw),1M(u-boot),1M(u-boot-env),1M(fman),1M(dtb),5M(kernel),54M(rootfs),64M(otherbank),60M@0x400000(firmware) && cp.b 60400000 $fdtaddr 100000 && cp.b 60500000 $loadaddr 500000 && bootm $loadaddr - $fdtaddr'
+=> save
+Saving Environment to Flash...
+Un-Protected 1 sectors
+Erasing Flash...
+. done
+Erased 1 sectors
+Writing to Flash... 9....8....7....6....5....4....3....2....1....done
+Protected 1 sectors
+=>
+=> tftp a0000000 jyt/openwrt/ls1043/openwrt-layerscape-64b-ls1043ardb-firmware && protect off all && erase 60400000 +3c00000 && cp.b a0000000 60400000 $filesize
+Using e1000#0 device
+TFTP from server 192.168.2.1; our IP address is 192.168.2.135
+Filename 'jyt/openwrt/ls1043/openwrt-layerscape-64b-ls1043ardb-firmware'.
+Load address: 0xa0000000
+Loading: #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #################################################################
+         #############################################################
+         10.9 MiB/s
+done
+Bytes transferred = 62914560 (3c00000 hex)
+Un-Protect Flash Bank # 1
+
+................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done
+Erased 480 sectors
+Copy to Flash... 9....8....7....6....5....4....3....2....1....done
+=>
+=> run wrtboot
+## Booting kernel from Legacy Image at 82000000 ...
+   Image Name:   ARM64 OpenWrt Linux-4.1.23
+   Image Type:   AArch64 Linux Kernel Image (gzip compressed)
+   Data Size:    3899658 Bytes = 3.7 MiB
+   Load Address: 80080000
+   Entry Point:  80080000
+   Verifying Checksum ... OK
+## Flattened Device Tree blob at 8f000000
+   Booting using the fdt blob at 0x8f000000
+   Uncompressing Kernel Image ... OK
+   Using Device Tree in place at 000000008f000000, end 000000008f0183bd
+WARNING: Missing crypto node
+
+Starting kernel ...
+
+[    0.000000] Booting Linux on physical CPU 0x0
+[    0.000000] Linux version 4.1.23 (jyt@BP) (gcc version 5.3.0 (OpenWrt GCC 5.3.0 r49395) ) #1 SMP Wed Jul 13 10:42:53 UTC 2016
+[    0.000000] CPU: AArch64 Processor [410fd034] revision 4
+[    0.000000] Detected VIPT I-cache on CPU0
+[    0.000000] alternatives: enabling workaround for ARM erratum 845719
+[    0.000000] earlycon: Early serial console at MMIO 0x21c0500 (options '')
+[    0.000000] bootconsole [uart0] enabled
+[    0.000000] efi: Getting EFI parameters from FDT:
+[    0.000000] efi: UEFI not found.
+[    0.000000] Reserved memory: initialized node bman-fbpr, compatible id fsl,bman-fbpr
+[    0.000000] Reserved memory: initialized node qman-fqd, compatible id fsl,qman-fqd
+[    0.000000] Reserved memory: initialized node qman-pfdr, compatible id fsl,qman-pfdr
+[    0.000000] PERCPU: Embedded 16 pages/cpu @ffff80007fd8d000 s27072 r8192 d30272 u65536
+[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 516615
+[    0.000000] Kernel command line: root=/dev/mtdblock6 rootfstype=squashfs,jffs2 noinitrd earlycon=uart8250,mmio,0x21c0500 console=ttyS0,115200 mtdparts=60000000.nor:1M(rcw),1M(u-boot),1M(u-boot-env),1M(fman),1M(dtb),5M(kernel),54M(rootfs),64M(otherbank),60M@0x400000(firmware)
+[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
+[    0.000000] log_buf_len total cpu_extra contributions: 12288 bytes
+[    0.000000] log_buf_len min size: 16384 bytes
+[    0.000000] log_buf_len: 32768 bytes
+[    0.000000] early log buf free: 14560(88%)
+[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
+[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
+[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
+[    0.000000] software IO TLB [mem 0xf6a00000-0xfaa00000] (64MB) mapped at [ffff800076a00000-ffff80007a9fffff]
+[    0.000000] Memory: 1933896K/2095104K available (5768K kernel code, 340K rwdata, 2500K rodata, 276K init, 721K bss, 161208K reserved, 0K cma-reserved)
+[    0.000000] Virtual kernel memory layout:
+[    0.000000]     vmalloc : 0xffff000000000000 - 0xffff7c7fbfff0000   (127486 GB)
+[    0.000000]     vmemmap : 0xffff7c7fc0000000 - 0xffff7fffc0000000   (  3584 GB maximum)
+[    0.000000]               0xffff7c7fc0000000 - 0xffff7c7fc1bf9000   (    27 MB actual)
+[    0.000000]     fixed   : 0xffff7ffffabfd000 - 0xffff7ffffac00000   (    12 KB)
+[    0.000000]     PCI I/O : 0xffff7ffffae00000 - 0xffff7ffffbe00000   (    16 MB)
+[    0.000000]     modules : 0xffff7ffffc000000 - 0xffff800000000000   (    64 MB)
+[    0.000000]     memory  : 0xffff800000000000 - 0xffff80007fe00000   (  2046 MB)
+[    0.000000]       .init : 0xffff800000896000 - 0xffff8000008db000   (   276 KB)
+[    0.000000]       .text : 0xffff800000080000 - 0xffff8000008951a4   (  8277 KB)
+[    0.000000]       .data : 0xffff8000008e6000 - 0xffff80000093b000   (   340 KB)
+[    0.000000] Hierarchical RCU implementation.
+[    0.000000]  CONFIG_RCU_FANOUT set to non-default value of 32
+[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
+[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
+[    0.000000] NR_IRQS:64 nr_irqs:64 0
+[    0.000000] Architected cp15 timer(s) running at 25.00MHz (phys).
+[    0.000000] clocksource arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
+[    0.000002] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
+[    0.008237] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=250000)
+[    0.018642] pid_max: default: 32768 minimum: 301
+[    0.023339] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
+[    0.030074] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
+[    0.037599] EFI services will not be available.
+[    0.042623] CPU1: Booted secondary processor
+[    0.042627] Detected VIPT I-cache on CPU1
+[    0.042768] CPU2: Booted secondary processor
+[    0.042771] Detected VIPT I-cache on CPU2
+[    0.042902] CPU3: Booted secondary processor
+[    0.042904] Detected VIPT I-cache on CPU3
+[    0.042932] Brought up 4 CPUs
+[    0.070816] SMP: Total of 4 processors activated.
+[    0.075536] CPU: All CPU(s) started at EL2
+[    0.079655] alternatives: patching kernel code
+[    0.086792] DMI not present or invalid.
+[    0.090754] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
+[    0.100593] atomic64_test: passed
+[    0.104311] NET: Registered protocol family 16
+[    0.109363] fsl-mc bus type registered
+[    0.113169] MC object device driver fsl_mc_dprc registered
+[    0.118714] MC object device driver fsl_mc_allocator registered
+[    0.124694] Bman ver:0a02,02,01
+[    0.130025] qman-fqd addr 0xff800000 size 0x400000
+[    0.134833] qman-pfdr addr 0xfc000000 size 0x2000000
+[    0.139821] Qman ver:0a01,03,02,00
+[    0.143310] vdso: 2 pages (1 code @ ffff8000008ed000, 1 data @ ffff8000008ec000)
+[    0.150845] DMA: preallocated 256 KiB pool for atomic allocations
+[    0.157052] Serial: AMBA PL011 UART driver
+[    0.201606] ACPI: Interpreter disabled.
+[    0.205877] SCSI subsystem initialized
+[    0.210022] usbcore: registered new interface driver usbfs
+[    0.215577] usbcore: registered new interface driver hub
+[    0.220937] usbcore: registered new device driver usb
+[    0.226079] pps_core: LinuxPPS API ver. 1 registered
+[    0.231062] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+[    0.240273] PTP clock support registered
+[    0.244377] bman-fbpr addr 0xfe000000 size 0x1000000
+[    0.249389] Bman err interrupt handler present
+[    0.253972] unknown BMan version in portal node,default to rev1.0
+[    0.260113] unknown BMan version in portal node,default to rev1.0
+[    0.266250] unknown BMan version in portal node,default to rev1.0
+[    0.272381] unknown BMan version in portal node,default to rev1.0
+[    0.278516] unknown BMan version in portal node,default to rev1.0
+[    0.284647] unknown BMan version in portal node,default to rev1.0
+[    0.290782] unknown BMan version in portal node,default to rev1.0
+[    0.296912] unknown BMan version in portal node,default to rev1.0
+[    0.303047] unknown BMan version in portal node,default to rev1.0
+[    0.309253] Bman portal initialised, cpu 0
+[    0.313427] Bman portal initialised, cpu 1
+[    0.317595] Bman portal initialised, cpu 2
+[    0.321763] Bman portal initialised, cpu 3
+[    0.325877] Bman portals initialised
+[    0.330330] Qman err interrupt handler present
+[    0.334788] Can't find Qman clock frequency
+[    0.339153] QMan: Allocated lookup table at ffff00000016d000, entry count 65537
+[    0.346528] unknown QMan version in portal node,default to rev1.1
+[    0.352650] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@0' has 0x0101
+[    0.360957] unknown QMan version in portal node,default to rev1.1
+[    0.367080] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@10000' has 0x0101
+[    0.375736] unknown QMan version in portal node,default to rev1.1
+[    0.381856] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@20000' has 0x0101
+[    0.390512] unknown QMan version in portal node,default to rev1.1
+[    0.396633] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@30000' has 0x0101
+[    0.405288] unknown QMan version in portal node,default to rev1.1
+[    0.411409] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@40000' has 0x0101
+[    0.420064] unknown QMan version in portal node,default to rev1.1
+[    0.426185] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@50000' has 0x0101
+[    0.434840] unknown QMan version in portal node,default to rev1.1
+[    0.440961] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@60000' has 0x0101
+[    0.449616] unknown QMan version in portal node,default to rev1.1
+[    0.455737] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@70000' has 0x0101
+[    0.464392] unknown QMan version in portal node,default to rev1.1
+[    0.470513] Revision=0x0302, but portal '/qman-portals@500000000/qman-portal@80000' has 0x0101
+[    0.479838] Qman portal initialised, cpu 0
+[    0.484406] Qman portal initialised, cpu 1
+[    0.488967] Qman portal initialised, cpu 2
+[    0.493528] Qman portal initialised, cpu 3
+[    0.497641] Qman portals initialised
+[    0.501299] Bman: BPID allocator includes range 32:32
+[    0.506401] Qman: FQID allocator includes range 256:256
+[    0.511649] Qman: FQID allocator includes range 32768:32768
+[    0.517278] Qman: CGRID allocator includes range 0:256
+[    0.522546] Qman: pool channel allocator includes range 1025:15
+[    0.528532] No USDPAA memory, no 'usdpaa_mem' bootarg
+[    0.533638] fsl-ifc 1530000.ifc: Freescale Integrated Flash Controller
+[    0.540200] fsl-ifc 1530000.ifc: IFC version 1.4, 8 banks
+[    0.546185] Switched to clocksource arch_sys_counter
+[    0.551318] pnp: PnP ACPI: disabled
+[    0.555272] NET: Registered protocol family 2
+[    0.559947] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
+[    0.567305] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
+[    0.574134] TCP: Hash tables configured (established 16384 bind 16384)
+[    0.580737] UDP hash table entries: 1024 (order: 3, 32768 bytes)
+[    0.586802] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
+[    0.593377] NET: Registered protocol family 1
+[    0.597875] RPC: Registered named UNIX socket transport module.
+[    0.603818] RPC: Registered udp transport module.
+[    0.608545] RPC: Registered tcp transport module.
+[    0.613265] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[    0.620431] futex hash table entries: 1024 (order: 4, 65536 bytes)
+[    0.626825] HugeTLB registered 2 MB page size, pre-allocated 0 pages
+[    0.633410] VFS: Disk quotas dquot_6.6.0
+[    0.637375] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
+[    0.644461] squashfs: version 4.0 (2009/01/31) Phillip Lougher
+[    0.650483] NFS: Registering the id_resolver key type
+[    0.655568] Key type id_resolver registered
+[    0.659770] Key type id_legacy registered
+[    0.663822] jffs2: version 2.2 (NAND) (ZLIB) (RTIME) (c) 2001-2006 Red Hat, Inc.
+[    0.671368] fuse init (API version 7.23)
+[    0.675762] io scheduler noop registered (default)
+[    0.681443] PCI host bridge /soc/pcie@3500000 ranges:
+[    0.686528]    IO 0x4800010000..0x480001ffff -> 0x00000000
+[    0.692038]   MEM 0x4840000000..0x487fffffff -> 0x40000000
+[    0.697623] layerscape-pcie 3500000.pcie: PCI host bridge to bus 0000:00
+[    0.704357] pci_bus 0000:00: root bus resource [bus 00-ff]
+[    0.709871] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
+[    0.716079] pci_bus 0000:00: root bus resource [mem 0x4840000000-0x487fffffff] (bus address [0x40000000-0x7fffffff])
+[    0.726722] pci 0000:00:00.0: IOMMU is currently not supported for PCI
+[    0.733403] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
+[    0.741527] pci 0000:00:00.0: BAR 1: assigned [mem 0x4840000000-0x4843ffffff]
+[    0.748702] pci 0000:00:00.0: BAR 0: assigned [mem 0x4844000000-0x4844ffffff]
+[    0.755872] pci 0000:00:00.0: BAR 6: assigned [mem 0x4845000000-0x4845ffffff pref]
+[    0.763481] pci 0000:00:00.0: PCI bridge to [bus 01]
+[    0.768488] pcieport 0000:00:00.0: enabling device (0000 -> 0002)
+[    0.774773] PCI host bridge /soc/pcie@3600000 ranges:
+[    0.779854]    IO 0x5000010000..0x500001ffff -> 0x00000000
+[    0.785364]   MEM 0x5040000000..0x507fffffff -> 0x40000000
+[    0.790943] layerscape-pcie 3600000.pcie: PCI host bridge to bus 0001:00
+[    0.797679] pci_bus 0001:00: root bus resource [bus 00-ff]
+[    0.803188] pci_bus 0001:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x0000-0xffff])
+[    0.812195] pci_bus 0001:00: root bus resource [mem 0x5040000000-0x507fffffff] (bus address [0x40000000-0x7fffffff])
+[    0.822821] pci 0001:00:00.0: IOMMU is currently not supported for PCI
+[    0.829935] pci 0001:01:00.0: IOMMU is currently not supported for PCI
+[    0.856229] pci 0001:00:00.0: BAR 1: assigned [mem 0x5040000000-0x5043ffffff]
+[    0.863399] pci 0001:00:00.0: BAR 0: assigned [mem 0x5044000000-0x5044ffffff]
+[    0.870574] pci 0001:00:00.0: BAR 6: assigned [mem 0x5045000000-0x5045ffffff pref]
+[    0.878184] pci 0001:00:00.0: BAR 8: assigned [mem 0x5046000000-0x50460fffff]
+[    0.885352] pci 0001:00:00.0: BAR 7: assigned [io  0x10000-0x10fff]
+[    0.891652] pci 0001:01:00.0: BAR 1: assigned [mem 0x5046000000-0x504607ffff]
+[    0.898835] pci 0001:01:00.0: BAR 6: assigned [mem 0x5046080000-0x50460bffff pref]
+[    0.906443] pci 0001:01:00.0: BAR 0: assigned [mem 0x50460c0000-0x50460dffff]
+[    0.913622] pci 0001:01:00.0: BAR 3: assigned [mem 0x50460e0000-0x50460e3fff]
+[    0.920805] pci 0001:01:00.0: BAR 2: assigned [io  0x10000-0x1001f]
+[    0.927113] pci 0001:00:00.0: PCI bridge to [bus 01]
+[    0.932098] pci 0001:00:00.0:   bridge window [io  0x10000-0x10fff]
+[    0.938395] pci 0001:00:00.0:   bridge window [mem 0x5046000000-0x50460fffff]
+[    0.945959] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled
+[    0.952850] console [ttyS0] disabled
+[    0.956457] 21c0500.serial: ttyS0 at MMIO 0x21c0500 (irq = 15, base_baud = 25000000) is a 16550A
+[    0.965295] console [ttyS0] enabled
+[    0.965295] console [ttyS0] enabled
+[    0.972271] bootconsole [uart0] disabled
+[    0.972271] bootconsole [uart0] disabled
+[    0.980258] 21c0600.serial: ttyS1 at MMIO 0x21c0600 (irq = 15, base_baud = 25000000) is a 16550A
+[    0.989130] of_serial: probe of 21d0500.serial failed with error -28
+[    0.995500] of_serial: probe of 21d0600.serial failed with error -28
+[    1.002046] Unable to detect cache hierarcy from DT for CPU 0
+[    1.010995] brd: module loaded
+[    1.016003] loop: module loaded
+[    1.021262] 60000000.nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000089 Chip ID 0x00227e
+[    1.031262] Amd/Fujitsu Extended Query Table at 0x0040
+[    1.036401]   Amd/Fujitsu Extended Query version 1.3.
+[    1.041443] number of CFI chips: 1
+[    1.044845] 9 cmdlinepart partitions found on MTD device 60000000.nor
+[    1.051277] Creating 9 MTD partitions on "60000000.nor":
+[    1.056582] 0x000000000000-0x000000100000 : "rcw"
+[    1.061496] ftl_cs: FTL header not found.
+[    1.065695] 0x000000100000-0x000000200000 : "u-boot"
+[    1.070861] ftl_cs: FTL header not found.
+[    1.075034] 0x000000200000-0x000000300000 : "u-boot-env"
+[    1.080553] ftl_cs: FTL header not found.
+[    1.084729] 0x000000300000-0x000000400000 : "fman"
+[    1.089719] ftl_cs: FTL header not found.
+[    1.093895] 0x000000400000-0x000000500000 : "dtb"
+[    1.098800] ftl_cs: FTL header not found.
+[    1.102973] 0x000000500000-0x000000a00000 : "kernel"
+[    1.108137] ftl_cs: FTL header not found.
+[    1.112309] 0x000000a00000-0x000004000000 : "rootfs"
+[    1.117474] ftl_cs: FTL header not found.
+[    1.121650] mtd: device 6 (rootfs) set to be root filesystem
+[    1.127314] 1 squashfs-split partitions found on MTD device rootfs
+[    1.133483] 0x000000b00000-0x000004000000 : "rootfs_data"
+[    1.139080] ftl_cs: FTL header not found.
+[    1.143257] 0x000004000000-0x000008000000 : "otherbank"
+[    1.148680] ftl_cs: FTL header not found.
+[    1.152854] 0x000000400000-0x000004000000 : "firmware"
+[    1.158193] ftl_cs: FTL header not found.
+[    1.162814] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xac
+[    1.169161] nand: Micron MT29F4G08ABBDAH4
+[    1.173160] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
+[    1.180985] Bad block table found at page 262080, version 0x01
+[    1.187286] Bad block table found at page 262016, version 0x01
+[    1.195438] ftl_cs: FTL header not found.
+[    1.199625] fsl,ifc-nand 7e800000.nand: IFC NAND device at 0x7e800000, bank 1
+[    1.207436] libphy: Fixed MDIO Bus: probed
+[    1.211523] tun: Universal TUN/TAP device driver, 1.6
+[    1.216567] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
+[    1.222917] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.229378] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.235873] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.240891] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.245906] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.250927] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.255942] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.260961] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.265978] libphy: Freescale XGMAC MDIO Bus: probed
+[    1.282650] Freescale FM module, FMD API version 21.1.0
+[    1.289546] Freescale FM Ports module
+[    1.293200] fsl_mac: fsl_mac: FSL FMan MAC API based driver
+[    1.298867] fsl_mac 1ae0000.ethernet: FMan MEMAC
+[    1.303479] fsl_mac 1ae0000.ethernet: FMan MAC address: 00:e0:0c:00:73:00
+[    1.310309] fsl_mac 1ae2000.ethernet: FMan MEMAC
+[    1.314918] fsl_mac 1ae2000.ethernet: FMan MAC address: 00:e0:0c:00:73:01
+[    1.321744] fsl_mac 1ae4000.ethernet: FMan MEMAC
+[    1.326358] fsl_mac 1ae4000.ethernet: FMan MAC address: 00:e0:0c:00:73:02
+[    1.333182] fsl_mac 1ae6000.ethernet: FMan MEMAC
+[    1.337797] fsl_mac 1ae6000.ethernet: FMan MAC address: 00:e0:0c:00:73:03
+[    1.344623] fsl_mac 1ae8000.ethernet: FMan MEMAC
+[    1.349237] fsl_mac 1ae8000.ethernet: FMan MAC address: 00:e0:0c:00:73:04
+[    1.356064] fsl_mac 1aea000.ethernet: FMan MEMAC
+[    1.360677] fsl_mac 1aea000.ethernet: FMan MAC address: 00:e0:0c:00:73:05
+[    1.367507] fsl_mac 1af0000.ethernet: FMan MEMAC
+[    1.372117] fsl_mac 1af0000.ethernet: FMan MAC address: 00:e0:0c:00:73:06
+[    1.378965] fsl_dpa: FSL DPAA Ethernet driver
+[    1.387069] fsl_dpa: fsl_dpa: Probed interface eth0
+[    1.395740] fsl_dpa: fsl_dpa: Probed interface eth1
+[    1.404752] fsl_dpa: fsl_dpa: Probed interface eth2
+[    1.414121] fsl_dpa: fsl_dpa: Probed interface eth3
+[    1.423819] fsl_dpa: fsl_dpa: Probed interface eth4
+[    1.433876] fsl_dpa: fsl_dpa: Probed interface eth5
+[    1.444266] fsl_dpa: fsl_dpa: Probed interface eth6
+[    1.449230] fsl_advanced: FSL DPAA Advanced drivers:
+[    1.454185] fsl_proxy: FSL DPAA Proxy initialization driver
+[    1.459931] fsl_dpa_shared: FSL DPAA Shared Ethernet driver
+[    1.465573] fsl_dpa_macless: FSL DPAA MACless Ethernet driver
+[    1.471394] fsl_oh: FSL FMan Offline Parsing port driver
+[    1.476801] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
+[    1.482621] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
+[    1.488810] e1000e 0001:01:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
+[    1.622241] e1000e 0001:01:00.0 eth7: registered PHC clock
+[    1.627724] e1000e 0001:01:00.0 eth7: (PCI Express:2.5GT/s:Width x1) 68:05:ca:35:fa:4a
+[    1.635630] e1000e 0001:01:00.0 eth7: Intel(R) PRO/1000 Network Connection
+[    1.642508] e1000e 0001:01:00.0 eth7: MAC: 3, PHY: 8, PBA No: E46981-008
+[    2.850000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
+[    2.856526] ehci-pci: EHCI PCI platform driver
+[    2.860996] ehci-platform: EHCI generic platform driver
+[    2.866357] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
+[    2.872530] ohci-pci: OHCI PCI platform driver
+[    2.877005] ohci-platform: OHCI generic platform driver
+[    2.882534] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
+[    2.888023] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
+[    2.895749] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x00010010
+[    2.904464] xhci-hcd xhci-hcd.0.auto: irq 23, io mem 0x02f00000
+[    2.910617] hub 1-0:1.0: USB hub found
+[    2.914367] hub 1-0:1.0: 1 port detected
+[    2.918365] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
+[    2.923843] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
+[    2.931513] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
+[    2.939796] hub 2-0:1.0: USB hub found
+[    2.943543] hub 2-0:1.0: 1 port detected
+[    2.947545] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
+[    2.953026] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
+[    2.960744] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x00010010
+[    2.969451] xhci-hcd xhci-hcd.1.auto: irq 24, io mem 0x03000000
+[    2.975566] hub 3-0:1.0: USB hub found
+[    2.979320] hub 3-0:1.0: 1 port detected
+[    2.983307] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
+[    2.988790] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
+[    2.996458] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
+[    3.004729] hub 4-0:1.0: USB hub found
+[    3.008481] hub 4-0:1.0: 1 port detected
+[    3.012480] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
+[    3.017991] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 5
+[    3.025707] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x00010010
+[    3.034412] xhci-hcd xhci-hcd.2.auto: irq 25, io mem 0x03100000
+[    3.040531] hub 5-0:1.0: USB hub found
+[    3.044279] hub 5-0:1.0: 1 port detected
+[    3.048281] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
+[    3.053760] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 6
+[    3.061430] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
+[    3.069708] hub 6-0:1.0: USB hub found
+[    3.073455] hub 6-0:1.0: 1 port detected
+[    3.077582] usbcore: registered new interface driver usb-storage
+[    3.083766] i2c /dev entries driver
+[    3.087623] sdhci: Secure Digital Host Controller Interface driver
+[    3.093791] sdhci: Copyright(c) Pierre Ossman
+[    3.098176] sdhci-pltfm: SDHCI platform and OF driver helper
+[    3.104921] sdhci-esdhc 1560000.esdhc: No vmmc regulator found
+[    3.110750] sdhci-esdhc 1560000.esdhc: No vqmmc regulator found
+[    3.156192] mmc0: SDHCI controller on 1560000.esdhc [1560000.esdhc] using ADMA 64-bit
+[    3.164615] Freescale USDPAA process driver
+[    3.168795] fsl-usdpaa: no region found
+[    3.172622] Freescale USDPAA process IRQ driver
+[    3.177347] NET: Registered protocol family 10
+[    3.182411] NET: Registered protocol family 17
+[    3.186868] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
+[    3.199490] 8021q: 802.1Q VLAN Support v1.8
+[    3.203680] Key type dns_resolver registered
+[    3.208335] fsl_generic: FSL DPAA Generic Ethernet driver
+[    3.213827] hctosys: unable to open rtc device (rtc0)
+[    3.216453] mmc0: new SDHC card at address c1e7
+[    3.216565] mmcblk0: mmc0:c1e7 SD04G 3.69 GiB
+[    3.222248]  mmcblk0: p1
+[    3.230787] fdt: not creating '/sys/firmware/fdt': CRC check failed
+[    3.238957] VFS: Mounted root (squashfs filesystem) readonly on device 31:6.
+[    3.246102] Freeing unused kernel memory: 276K (ffff800000896000 - ffff8000008db000)
+[    3.246198] usb 1-1: new high-speed USB device number 2 using xhci-hcd
+[    3.260367] Freeing alternatives memory: 32K (ffff8000008db000 - ffff8000008e3000)
+[    3.336224] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
+[    3.366274] usb usb5-port1: over-current condition
+[    3.396207] usb usb6-port1: over-current condition
+[    3.472057] init: Console is alive
+[    3.475789] usb-storage 4-1:1.0: USB Mass Storage device detected
+[    3.482115] scsi host0: usb-storage 4-1:1.0
+[    3.489002] usb 1-1: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
+[    3.497883] usb 1-1: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
+[    3.506239] init: - preinit -
+[    3.509783] usb-storage 1-1:1.0: USB Mass Storage device detected
+[    3.516309] scsi host1: usb-storage 1-1:1.0
+[    3.520651] random: procd urandom read with 3 bits of entropy available
+Press the [f] key and hit [enter] to enter failsafe mode
+Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
+[    4.516452] scsi 1:0:0:0: Direct-Access     Kingston DT 101 G2        1.00 PQ: 0 ANSI: 2
+[    4.525022] sd 1:0:0:0: [sda] 3913664 512-byte logical blocks: (2.00 GB/1.87 GiB)
+[    4.532654] sd 1:0:0:0: [sda] Write Protect is off
+[    4.537584] sd 1:0:0:0: [sda] No Caching mode page found
+[    4.542886] sd 1:0:0:0: [sda] Assuming drive cache: write through
+[    4.550171] scsi 0:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
+[    4.550327]  sda: sda1
+[    4.558933] sd 1:0:0:0: [sda] Attached SCSI removable disk
+[    5.540189] mount_root: jffs2 not ready yet, using temporary tmpfs overlay
+[    5.549108] procd: - early -
+[    5.690793] sd 0:0:0:0: [sdb] 30728832 512-byte logical blocks: (15.7 GB/14.7 GiB)
+[    5.698536] sd 0:0:0:0: [sdb] Write Protect is off
+[    5.703407] sd 0:0:0:0: [sdb] No Caching mode page found
+[    5.708715] sd 0:0:0:0: [sdb] Assuming drive cache: write through
+[    5.739138]  sdb: sdb1
+[    5.742231] sd 0:0:0:0: [sdb] Attached SCSI removable disk
+[    6.242632] procd: - ubus -
+[    6.295216] procd: - init -
+Please press Enter to activate this console.
+[    7.614535] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0
+[    7.621575] jffs2_build_filesystem(): unlocking the mtd device... done.
+[    7.628199] jffs2_build_filesystem(): erasing all blocks after the end marker...
+[    7.700603] device eth0 entered promiscuous mode
+[    7.706092] br-lan: port 1(eth0) entered forwarding state
+[    7.711515] br-lan: port 1(eth0) entered forwarding state
+[    9.697128] br-lan: port 1(eth0) entered disabled state
+
+
+
+BusyBox v1.24.2 () built-in shell (ash)
+
+  _______                     ________        __
+ |       |.-----.-----.-----.|  |  |  |.----.|  |_
+ |   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
+ |_______||   __|_____|__|__||________||__|  |____|
+          |__| W I R E L E S S   F R E E D O M
+ -----------------------------------------------------
+ DESIGNATED DRIVER (Bleeding Edge, r49395)
+ -----------------------------------------------------
+  * 2 oz. Orange Juice         Combine all juices in a
+  * 2 oz. Pineapple Juice      tall glass filled with
+  * 2 oz. Grapefruit Juice     ice, stir well.
+  * 2 oz. Cranberry Juice
+ -----------------------------------------------------
+root@OpenWrt:/#
+root@OpenWrt:/# ifconfig
+br-lan    Link encap:Ethernet  HWaddr 00:E0:0C:00:73:00
+          inet addr:192.168.1.1  Bcast:192.168.1.255  Mask:255.255.255.0
+          inet6 addr: fd78:b98d:d12a::1/60 Scope:Global
+          inet6 addr: fe80::2e0:cff:fe00:7300/64 Scope:Link
+          UP BROADCAST MULTICAST  MTU:1500  Metric:1
+          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
+          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
+          collisions:0 txqueuelen:0
+          RX bytes:0 (0.0 B)  TX bytes:896 (896.0 B)
+
+eth0      Link encap:Ethernet  HWaddr 00:E0:0C:00:73:00
+          UP BROADCAST MULTICAST  MTU:1500  Metric:1
+          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
+          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
+          collisions:0 txqueuelen:1000
+          RX bytes:0 (0.0 B)  TX bytes:792 (792.0 B)
+          Memory:1ae0000-1ae0fff
+
+eth1      Link encap:Ethernet  HWaddr 00:E0:0C:00:73:01
+          inet6 addr: fe80::2e0:cff:fe00:7301/64 Scope:Link
+          UP BROADCAST MULTICAST  MTU:1500  Metric:1
+          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
+          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
+          collisions:0 txqueuelen:1000
+          RX bytes:0 (0.0 B)  TX bytes:1160 (1.1 KiB)
+          Memory:1ae2000-1ae2fff
+
+lo        Link encap:Local Loopback
+          inet addr:127.0.0.1  Mask:255.0.0.0
+          inet6 addr: ::1/128 Scope:Host
+          UP LOOPBACK RUNNING  MTU:65536  Metric:1
+          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
+          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
+          collisions:0 txqueuelen:0
+          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
+
+root@OpenWrt:/# cat /proc/mtd
+dev:    size   erasesize  name
+mtd0: 00100000 00020000 "rcw"
+mtd1: 00100000 00020000 "u-boot"
+mtd2: 00100000 00020000 "u-boot-env"
+mtd3: 00100000 00020000 "fman"
+mtd4: 00100000 00020000 "dtb"
+mtd5: 00500000 00020000 "kernel"
+mtd6: 03600000 00020000 "rootfs"
+mtd7: 03500000 00020000 "rootfs_data"
+mtd8: 04000000 00020000 "otherbank"
+mtd9: 03c00000 00020000 "firmware"
+mtd10: 20000000 00020000 "7e800000.flash"
+root@OpenWrt:/#
+root@OpenWrt:/# mount
+/dev/root on /rom type squashfs (ro,relatime)
+proc on /proc type proc (rw,nosuid,nodev,noexec,noatime)
+sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,noatime)
+tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime)
+tmpfs on /tmp/root type tmpfs (rw,noatime,mode=755)
+overlayfs:/tmp/root on / type overlay (rw,noatime,lowerdir=/,upperdir=/tmp/root/upper,workdir=/tmp/root/work)
+tmpfs on /dev type tmpfs (rw,nosuid,relatime,size=512k,mode=755)
+devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,mode=600)
+debugfs on /sys/kernel/debug type debugfs (rw,noatime)
+root@OpenWrt:/#
+root@OpenWrt:/# cat /etc/config/network
+
+config interface 'loopback'
+        option ifname 'lo'
+        option proto 'static'
+        option ipaddr '127.0.0.1'
+        option netmask '255.0.0.0'
+
+config globals 'globals'
+        option ula_prefix 'fd78:b98d:d12a::/48'
+
+config interface 'lan'
+        option type 'bridge'
+        option ifname 'eth0'
+        option proto 'static'
+        option ipaddr '192.168.1.1'
+        option netmask '255.255.255.0'
+        option ip6assign '60'
+
+config interface 'wan'
+        option ifname 'eth1'
+        option proto 'dhcp'
+
+config interface 'wan6'
+        option ifname 'eth1'
+        option proto 'dhcpv6'
+
+root@OpenWrt:/#
+root@OpenWrt:/# ls -l
+drwxr-xr-x    2 root     root           739 Jun 30 05:39 bin
+drwxr-xr-x    5 root     root          2300 Jun 30 05:39 dev
+drwxr-xr-x    1 root     root           120 Jun 30 05:39 etc
+drwxrwxr-x    9 root     root           372 Jun 30 05:39 lib
+lrwxrwxrwx    1 root     root             3 Jun 30 05:39 lib64 -> lib
+drwxr-xr-x    2 root     root             3 Jun 30 05:39 mnt
+drwxr-xr-x    2 root     root             3 Jun 30 05:39 overlay
+dr-xr-xr-x   72 root     root             0 Jan  1  1970 proc
+drwxr-xr-x   16 root     root           212 Jun 30 05:39 rom
+drwxr-xr-x    2 root     root             3 Jun 30 05:39 root
+drwxr-xr-x    2 root     root           653 Jun 30 05:39 sbin
+dr-xr-xr-x   11 root     root             0 Jan  1  1970 sys
+drwxrwxrwt   12 root     root           340 Jun 30 05:39 tmp
+drwxr-xr-x    7 root     root            90 Jun 30 05:39 usr
+lrwxrwxrwx    1 root     root             4 Jun 30 05:39 var -> /tmp
+drwxr-xr-x    2 root     root             3 Jun 30 05:39 www
+root@OpenWrt:/#
diff --git a/target/linux/layerscape-64b/base-files/etc/inittab b/target/linux/layerscape-64b/base-files/etc/inittab
new file mode 100644
index 0000000..7adc69a
--- /dev/null
+++ b/target/linux/layerscape-64b/base-files/etc/inittab
@@ -0,0 +1,6 @@ 
+::sysinit:/etc/init.d/rcS S boot
+::shutdown:/etc/init.d/rcS K shutdown
+ttyS0::askfirst:/bin/ash --login
+tts/0::askfirst:/bin/ash --login
+ttyAMA0::askfirst:/bin/ash --login
+tty1::askfirst:/bin/ash --login
diff --git a/target/linux/layerscape-64b/image/Makefile b/target/linux/layerscape-64b/image/Makefile
new file mode 100644
index 0000000..43e7269
--- /dev/null
+++ b/target/linux/layerscape-64b/image/Makefile
@@ -0,0 +1,64 @@ 
+#
+# Copyright (C) 2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/image.mk
+
+# make uImage and dtb
+define Image/uImage-dtb
+	gzip -9c < $(KDIR)/Image > $(KDIR)/Image.gz
+	$(eval ARCH_BACK = $(ARCH))
+	$(eval ARCH = $(LINUX_KARCH))
+	$(call Image/BuildKernel/MkuImage, gzip, $(KERNEL_LOADADDR), \
+		$(KERNEL_ENTRY_POINT), $(KDIR)/Image.gz, \
+		$(KDIR)/$(IMG_PREFIX)-uImage)
+	$(eval ARCH = $(ARCH_BACK))
+
+	$(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$(KDIR)/$(IMG_PREFIX)-dtb)
+endef
+
+# $(1) source image name
+# $(2) partition image name
+# $(3) partition image size(M)
+define Image/Build/flashpartitionimage
+	./checkimagesize.sh $(1) $(3)
+	dd if=/dev/zero bs=1M count=$(3) | sed 's/\x00/\xff/g' > $(2)
+	dd if=$(1) of=$(2) conv=notrunc
+endef
+
+# make squashfs then merge uImage/dtb/squashfs to one firmware image arranged
+# by individual partition
+define Image/Build/squashfs
+	$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
+
+	$(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-dtb,$(KDIR)/$(IMG_PREFIX)-dtb-par,$(DTB_PARTITION_SIZE))
+	$(call Image/Build/flashpartitionimage,$(KDIR)/$(IMG_PREFIX)-uImage,$(KDIR)/$(IMG_PREFIX)-uImage-par,$(KERNEL_PARTITION_SIZE))
+	$(call Image/Build/flashpartitionimage,$(KDIR)/root.squashfs,$(KDIR)/root.squashfs-par,$(SQUASHFS_PARTITION_SIZE))
+	cat $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \
+		$(KDIR)/root.squashfs-par > $(BIN_DIR)/$(IMG_PREFIX)-firmware
+	$(RM) $(KDIR)/$(IMG_PREFIX)-dtb-par $(KDIR)/$(IMG_PREFIX)-uImage-par \
+		$(KDIR)/root.squashfs-par
+endef
+
+# target macros
+define Target/Default
+	KERNEL_LOADADDR = 0x80080000
+	KERNEL_ENTRY_POINT = 0x80080000
+endef
+
+# callback function: Image/BuildKernel
+define Image/BuildKernel
+	$(eval $(call Target/Default))
+	$(eval $(call Subtarget/Default))
+	$(call Image/uImage-dtb)
+endef
+
+# callback function: Image/Build
+define Image/Build
+	$(call Image/Build/$(1),$(1))
+endef
+
+$(eval $(call BuildImage))
diff --git a/target/linux/layerscape-64b/image/checkimagesize.sh b/target/linux/layerscape-64b/image/checkimagesize.sh
new file mode 100755
index 0000000..e65c7fe
--- /dev/null
+++ b/target/linux/layerscape-64b/image/checkimagesize.sh
@@ -0,0 +1,16 @@ 
+#!/bin/bash
+#
+# Licensed under the terms of the GNU GPL License version 2 or later.
+#
+# $(1) source image name
+# $(2) partition image size(M)
+
+SOURCE_IMAGE_SIZE=`du -b $1 | awk '{print $1}'`
+PARTITION_IMAGE_SIZE=`expr $2 \* 1024 \* 1024`
+
+if [ $SOURCE_IMAGE_SIZE -gt $PARTITION_IMAGE_SIZE ]; then
+	echo "error: $1 too large than limited $2(M)"
+	exit 1
+else
+	exit 0
+fi
diff --git a/target/linux/layerscape-64b/ls1043ardb/config-default b/target/linux/layerscape-64b/ls1043ardb/config-default
new file mode 100644
index 0000000..1543907
--- /dev/null
+++ b/target/linux/layerscape-64b/ls1043ardb/config-default
@@ -0,0 +1,3146 @@ 
+#
+# Automatically generated file; DO NOT EDIT.
+# Linux/arm64 4.1.23 Kernel Configuration
+#
+CONFIG_ARM64=y
+CONFIG_64BIT=y
+CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
+CONFIG_MMU=y
+CONFIG_STACKTRACE_SUPPORT=y
+CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
+CONFIG_LOCKDEP_SUPPORT=y
+CONFIG_TRACE_IRQFLAGS_SUPPORT=y
+CONFIG_RWSEM_XCHGADD_ALGORITHM=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_GENERIC_CSUM=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_ZONE_DMA=y
+CONFIG_HAVE_GENERIC_RCU_GUP=y
+CONFIG_ARCH_DMA_ADDR_T_64BIT=y
+CONFIG_NEED_DMA_MAP_STATE=y
+CONFIG_NEED_SG_DMA_LENGTH=y
+CONFIG_SWIOTLB=y
+CONFIG_IOMMU_HELPER=y
+CONFIG_KERNEL_MODE_NEON=y
+CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_PGTABLE_LEVELS=4
+CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
+CONFIG_IRQ_WORK=y
+CONFIG_BUILDTIME_EXTABLE_SORT=y
+
+#
+# General setup
+#
+CONFIG_INIT_ENV_ARG_LIMIT=32
+CONFIG_CROSS_COMPILE=""
+# CONFIG_COMPILE_TEST is not set
+CONFIG_LOCALVERSION=""
+# CONFIG_LOCALVERSION_AUTO is not set
+CONFIG_DEFAULT_HOSTNAME="(none)"
+CONFIG_SWAP=y
+CONFIG_SYSVIPC=y
+CONFIG_SYSVIPC_SYSCTL=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POSIX_MQUEUE_SYSCTL=y
+# CONFIG_CROSS_MEMORY_ATTACH is not set
+# CONFIG_FHANDLE is not set
+# CONFIG_USELIB is not set
+# CONFIG_AUDIT is not set
+CONFIG_HAVE_ARCH_AUDITSYSCALL=y
+
+#
+# IRQ subsystem
+#
+CONFIG_GENERIC_IRQ_PROBE=y
+CONFIG_GENERIC_IRQ_SHOW=y
+CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
+CONFIG_HARDIRQS_SW_RESEND=y
+CONFIG_IRQ_DOMAIN=y
+CONFIG_IRQ_DOMAIN_HIERARCHY=y
+CONFIG_GENERIC_MSI_IRQ=y
+CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
+CONFIG_HANDLE_DOMAIN_IRQ=y
+# CONFIG_IRQ_DOMAIN_DEBUG is not set
+CONFIG_SPARSE_IRQ=y
+CONFIG_GENERIC_TIME_VSYSCALL=y
+CONFIG_GENERIC_CLOCKEVENTS=y
+CONFIG_ARCH_HAS_TICK_BROADCAST=y
+CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
+
+#
+# Timers subsystem
+#
+CONFIG_TICK_ONESHOT=y
+CONFIG_NO_HZ_COMMON=y
+# CONFIG_HZ_PERIODIC is not set
+CONFIG_NO_HZ_IDLE=y
+# CONFIG_NO_HZ_FULL is not set
+CONFIG_NO_HZ=y
+CONFIG_HIGH_RES_TIMERS=y
+
+#
+# CPU/Task time and stats accounting
+#
+CONFIG_TICK_CPU_ACCOUNTING=y
+# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
+CONFIG_BSD_PROCESS_ACCT=y
+CONFIG_BSD_PROCESS_ACCT_V3=y
+# CONFIG_TASKSTATS is not set
+
+#
+# RCU Subsystem
+#
+CONFIG_TREE_RCU=y
+CONFIG_SRCU=y
+# CONFIG_TASKS_RCU is not set
+CONFIG_RCU_STALL_COMMON=y
+# CONFIG_RCU_USER_QS is not set
+CONFIG_RCU_FANOUT=32
+CONFIG_RCU_FANOUT_LEAF=16
+# CONFIG_RCU_FANOUT_EXACT is not set
+# CONFIG_RCU_FAST_NO_HZ is not set
+# CONFIG_TREE_RCU_TRACE is not set
+CONFIG_RCU_KTHREAD_PRIO=0
+# CONFIG_RCU_NOCB_CPU is not set
+# CONFIG_RCU_EXPEDITE_BOOT is not set
+CONFIG_BUILD_BIN2C=y
+CONFIG_IKCONFIG=y
+CONFIG_IKCONFIG_PROC=y
+CONFIG_LOG_BUF_SHIFT=14
+CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
+CONFIG_GENERIC_SCHED_CLOCK=y
+# CONFIG_CGROUPS is not set
+# CONFIG_CHECKPOINT_RESTORE is not set
+# CONFIG_NAMESPACES is not set
+# CONFIG_SCHED_AUTOGROUP is not set
+# CONFIG_SYSFS_DEPRECATED is not set
+# CONFIG_RELAY is not set
+CONFIG_CRASHLOG=y
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_RD_GZIP=y
+# CONFIG_RD_BZIP2 is not set
+# CONFIG_RD_LZMA is not set
+# CONFIG_RD_XZ is not set
+# CONFIG_RD_LZO is not set
+# CONFIG_RD_LZ4 is not set
+CONFIG_CC_OPTIMIZE_FOR_SIZE=y
+CONFIG_SYSCTL=y
+CONFIG_ANON_INODES=y
+CONFIG_HAVE_UID16=y
+CONFIG_SYSCTL_EXCEPTION_TRACE=y
+CONFIG_KALLSYMS_UNCOMPRESSED=y
+CONFIG_BPF=y
+CONFIG_EXPERT=y
+CONFIG_UID16=y
+CONFIG_MULTIUSER=y
+# CONFIG_SGETMASK_SYSCALL is not set
+# CONFIG_SYSFS_SYSCALL is not set
+# CONFIG_SYSCTL_SYSCALL is not set
+CONFIG_KALLSYMS=y
+# CONFIG_KALLSYMS_ALL is not set
+CONFIG_PRINTK=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=y
+CONFIG_SHMEM=y
+# CONFIG_AIO is not set
+# CONFIG_ADVISE_SYSCALLS is not set
+CONFIG_PCI_QUIRKS=y
+CONFIG_EMBEDDED=y
+# CONFIG_MANGLE_BOOTARGS is not set
+CONFIG_HAVE_PERF_EVENTS=y
+CONFIG_PERF_USE_VMALLOC=y
+
+#
+# Kernel Performance Events And Counters
+#
+# CONFIG_PERF_EVENTS is not set
+# CONFIG_VM_EVENT_COUNTERS is not set
+# CONFIG_COMPAT_BRK is not set
+CONFIG_SLAB=y
+# CONFIG_SLUB is not set
+# CONFIG_SLOB is not set
+# CONFIG_SYSTEM_TRUSTED_KEYRING is not set
+# CONFIG_PROFILING is not set
+# CONFIG_JUMP_LABEL is not set
+# CONFIG_UPROBES is not set
+# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
+CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
+CONFIG_HAVE_ARCH_TRACEHOOK=y
+CONFIG_HAVE_DMA_ATTRS=y
+CONFIG_HAVE_DMA_CONTIGUOUS=y
+CONFIG_GENERIC_SMP_IDLE_THREAD=y
+CONFIG_HAVE_CLK=y
+CONFIG_HAVE_DMA_API_DEBUG=y
+CONFIG_HAVE_PERF_REGS=y
+CONFIG_HAVE_PERF_USER_STACK_DUMP=y
+CONFIG_HAVE_ARCH_JUMP_LABEL=y
+CONFIG_HAVE_RCU_TABLE_FREE=y
+CONFIG_HAVE_CMPXCHG_DOUBLE=y
+CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
+CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
+CONFIG_HAVE_CC_STACKPROTECTOR=y
+CONFIG_CC_STACKPROTECTOR=y
+# CONFIG_CC_STACKPROTECTOR_NONE is not set
+CONFIG_CC_STACKPROTECTOR_REGULAR=y
+# CONFIG_CC_STACKPROTECTOR_STRONG is not set
+CONFIG_HAVE_CONTEXT_TRACKING=y
+CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
+CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
+CONFIG_MODULES_USE_ELF_RELA=y
+CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
+CONFIG_CLONE_BACKWARDS=y
+CONFIG_OLD_SIGSUSPEND3=y
+CONFIG_COMPAT_OLD_SIGACTION=y
+
+#
+# GCOV-based kernel profiling
+#
+# CONFIG_GCOV_KERNEL is not set
+CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
+CONFIG_HAVE_GENERIC_DMA_COHERENT=y
+CONFIG_SLABINFO=y
+CONFIG_RT_MUTEXES=y
+CONFIG_BASE_SMALL=0
+CONFIG_MODULES=y
+# CONFIG_MODULE_FORCE_LOAD is not set
+CONFIG_MODULE_UNLOAD=y
+# CONFIG_MODULE_FORCE_UNLOAD is not set
+# CONFIG_MODVERSIONS is not set
+# CONFIG_MODULE_SRCVERSION_ALL is not set
+# CONFIG_MODULE_SIG is not set
+# CONFIG_MODULE_COMPRESS is not set
+CONFIG_MODULE_STRIPPED=y
+CONFIG_STOP_MACHINE=y
+CONFIG_BLOCK=y
+# CONFIG_BLK_DEV_BSG is not set
+# CONFIG_BLK_DEV_BSGLIB is not set
+# CONFIG_BLK_DEV_INTEGRITY is not set
+# CONFIG_BLK_CMDLINE_PARSER is not set
+
+#
+# Partition Types
+#
+CONFIG_PARTITION_ADVANCED=y
+# CONFIG_ACORN_PARTITION is not set
+# CONFIG_AIX_PARTITION is not set
+# CONFIG_OSF_PARTITION is not set
+# CONFIG_AMIGA_PARTITION is not set
+# CONFIG_ATARI_PARTITION is not set
+# CONFIG_MAC_PARTITION is not set
+CONFIG_MSDOS_PARTITION=y
+# CONFIG_BSD_DISKLABEL is not set
+# CONFIG_MINIX_SUBPARTITION is not set
+# CONFIG_SOLARIS_X86_PARTITION is not set
+# CONFIG_UNIXWARE_DISKLABEL is not set
+# CONFIG_LDM_PARTITION is not set
+# CONFIG_SGI_PARTITION is not set
+# CONFIG_ULTRIX_PARTITION is not set
+# CONFIG_SUN_PARTITION is not set
+# CONFIG_KARMA_PARTITION is not set
+CONFIG_EFI_PARTITION=y
+# CONFIG_SYSV68_PARTITION is not set
+# CONFIG_CMDLINE_PARTITION is not set
+CONFIG_BLOCK_COMPAT=y
+
+#
+# IO Schedulers
+#
+CONFIG_IOSCHED_NOOP=y
+# CONFIG_IOSCHED_DEADLINE is not set
+# CONFIG_IOSCHED_CFQ is not set
+CONFIG_DEFAULT_NOOP=y
+CONFIG_DEFAULT_IOSCHED="noop"
+CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
+CONFIG_INLINE_READ_UNLOCK=y
+CONFIG_INLINE_READ_UNLOCK_IRQ=y
+CONFIG_INLINE_WRITE_UNLOCK=y
+CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
+CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
+CONFIG_MUTEX_SPIN_ON_OWNER=y
+CONFIG_RWSEM_SPIN_ON_OWNER=y
+CONFIG_LOCK_SPIN_ON_OWNER=y
+# CONFIG_FREEZER is not set
+
+#
+# Platform selection
+#
+# CONFIG_ARCH_EXYNOS7 is not set
+CONFIG_ARCH_LAYERSCAPE=y
+# CONFIG_ARCH_MEDIATEK is not set
+# CONFIG_ARCH_QCOM is not set
+# CONFIG_ARCH_SEATTLE is not set
+# CONFIG_ARCH_TEGRA is not set
+# CONFIG_ARCH_SPRD is not set
+# CONFIG_ARCH_THUNDER is not set
+# CONFIG_ARCH_VEXPRESS is not set
+# CONFIG_ARCH_XGENE is not set
+# CONFIG_ARCH_ZYNQMP is not set
+
+#
+# Bus support
+#
+CONFIG_HAS_FSL_QBMAN=y
+CONFIG_PCI=y
+CONFIG_PCI_DOMAINS=y
+CONFIG_PCI_DOMAINS_GENERIC=y
+CONFIG_PCI_SYSCALL=y
+CONFIG_PCI_BUS_ADDR_T_64BIT=y
+CONFIG_PCI_MSI=y
+CONFIG_PCI_MSI_IRQ_DOMAIN=y
+# CONFIG_PCI_DEBUG is not set
+# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
+# CONFIG_PCI_STUB is not set
+# CONFIG_PCI_DISABLE_COMMON_QUIRKS is not set
+# CONFIG_PCI_IOV is not set
+# CONFIG_PCI_PRI is not set
+# CONFIG_PCI_PASID is not set
+CONFIG_PCI_LABEL=y
+
+#
+# PCI host controller drivers
+#
+CONFIG_PCIE_DW=y
+CONFIG_PCI_LAYERSCAPE=y
+CONFIG_PCIEPORTBUS=y
+CONFIG_PCIEAER=y
+# CONFIG_PCIE_ECRC is not set
+# CONFIG_PCIEAER_INJECT is not set
+CONFIG_PCIEASPM=y
+# CONFIG_PCIEASPM_DEBUG is not set
+CONFIG_PCIEASPM_DEFAULT=y
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+# CONFIG_HOTPLUG_PCI is not set
+
+#
+# Kernel Features
+#
+
+#
+# ARM errata workarounds via the alternatives framework
+#
+CONFIG_ARM64_ERRATUM_826319=y
+CONFIG_ARM64_ERRATUM_827319=y
+CONFIG_ARM64_ERRATUM_824069=y
+CONFIG_ARM64_ERRATUM_819472=y
+CONFIG_ARM64_ERRATUM_832075=y
+CONFIG_ARM64_ERRATUM_845719=y
+CONFIG_ARM64_ERRATUM_843419=y
+CONFIG_ARM64_4K_PAGES=y
+# CONFIG_ARM64_64K_PAGES is not set
+# CONFIG_ARM64_VA_BITS_39 is not set
+CONFIG_ARM64_VA_BITS_48=y
+CONFIG_ARM64_VA_BITS=48
+# CONFIG_CPU_BIG_ENDIAN is not set
+CONFIG_SMP=y
+# CONFIG_SCHED_MC is not set
+# CONFIG_SCHED_SMT is not set
+CONFIG_NR_CPUS=64
+CONFIG_HOTPLUG_CPU=y
+# CONFIG_PREEMPT_NONE is not set
+CONFIG_PREEMPT_VOLUNTARY=y
+# CONFIG_PREEMPT is not set
+CONFIG_HZ=100
+CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y
+CONFIG_ARCH_SPARSEMEM_ENABLE=y
+CONFIG_ARCH_SPARSEMEM_DEFAULT=y
+CONFIG_ARCH_SELECT_MEMORY_MODEL=y
+CONFIG_HAVE_ARCH_PFN_VALID=y
+CONFIG_SYS_SUPPORTS_HUGETLBFS=y
+CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
+CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
+CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
+CONFIG_SELECT_MEMORY_MODEL=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM=y
+CONFIG_HAVE_MEMORY_PRESENT=y
+CONFIG_SPARSEMEM_EXTREME=y
+CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_HAVE_MEMBLOCK=y
+CONFIG_NO_BOOTMEM=y
+# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
+CONFIG_PAGEFLAGS_EXTENDED=y
+CONFIG_SPLIT_PTLOCK_CPUS=4
+# CONFIG_COMPACTION is not set
+CONFIG_PHYS_ADDR_T_64BIT=y
+CONFIG_ZONE_DMA_FLAG=1
+CONFIG_BOUNCE=y
+# CONFIG_KSM is not set
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+# CONFIG_TRANSPARENT_HUGEPAGE is not set
+# CONFIG_CLEANCACHE is not set
+# CONFIG_FRONTSWAP is not set
+# CONFIG_CMA is not set
+# CONFIG_ZPOOL is not set
+# CONFIG_ZBUD is not set
+# CONFIG_ZSMALLOC is not set
+CONFIG_GENERIC_EARLY_IOREMAP=y
+# CONFIG_SECCOMP is not set
+# CONFIG_XEN is not set
+CONFIG_FORCE_MAX_ZONEORDER=11
+# CONFIG_ARMV8_DEPRECATED is not set
+
+#
+# Boot options
+#
+CONFIG_CMDLINE="console=ttyAMA0"
+# CONFIG_CMDLINE_FORCE is not set
+CONFIG_EFI_STUB=y
+CONFIG_EFI=y
+CONFIG_DMI=y
+
+#
+# Userspace binary formats
+#
+CONFIG_BINFMT_ELF=y
+CONFIG_COMPAT_BINFMT_ELF=y
+# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
+CONFIG_BINFMT_SCRIPT=y
+# CONFIG_HAVE_AOUT is not set
+# CONFIG_BINFMT_MISC is not set
+CONFIG_COREDUMP=y
+CONFIG_COMPAT=y
+CONFIG_SYSVIPC_COMPAT=y
+
+#
+# Power management options
+#
+# CONFIG_SUSPEND is not set
+# CONFIG_PM is not set
+CONFIG_ARCH_SUSPEND_POSSIBLE=y
+
+#
+# CPU Power Management
+#
+
+#
+# CPU Idle
+#
+# CONFIG_CPU_IDLE is not set
+# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
+
+#
+# CPU Frequency scaling
+#
+# CONFIG_CPU_FREQ is not set
+CONFIG_NET=y
+CONFIG_COMPAT_NETLINK_MESSAGES=y
+
+#
+# Networking options
+#
+CONFIG_PACKET=y
+# CONFIG_PACKET_DIAG is not set
+CONFIG_UNIX=y
+# CONFIG_UNIX_DIAG is not set
+CONFIG_XFRM=y
+# CONFIG_XFRM_USER is not set
+# CONFIG_XFRM_SUB_POLICY is not set
+# CONFIG_XFRM_MIGRATE is not set
+# CONFIG_XFRM_STATISTICS is not set
+# CONFIG_NET_KEY is not set
+CONFIG_INET=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_ADVANCED_ROUTER=y
+# CONFIG_IP_FIB_TRIE_STATS is not set
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+# CONFIG_IP_PNP is not set
+# CONFIG_NET_IPIP is not set
+# CONFIG_NET_IPGRE_DEMUX is not set
+# CONFIG_NET_IP_TUNNEL is not set
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+# CONFIG_IP_PIMSM_V1 is not set
+# CONFIG_IP_PIMSM_V2 is not set
+CONFIG_SYN_COOKIES=y
+# CONFIG_NET_IPVTI is not set
+# CONFIG_NET_UDP_TUNNEL is not set
+# CONFIG_NET_FOU is not set
+# CONFIG_GENEVE is not set
+# CONFIG_INET_AH is not set
+# CONFIG_INET_ESP is not set
+# CONFIG_INET_IPCOMP is not set
+# CONFIG_INET_XFRM_TUNNEL is not set
+# CONFIG_INET_TUNNEL is not set
+CONFIG_INET_XFRM_MODE_TRANSPORT=y
+CONFIG_INET_XFRM_MODE_TUNNEL=y
+CONFIG_INET_XFRM_MODE_BEET=y
+# CONFIG_INET_LRO is not set
+CONFIG_INET_DIAG=y
+CONFIG_INET_TCP_DIAG=y
+# CONFIG_INET_UDP_DIAG is not set
+CONFIG_TCP_CONG_ADVANCED=y
+# CONFIG_TCP_CONG_BIC is not set
+CONFIG_TCP_CONG_CUBIC=y
+# CONFIG_TCP_CONG_WESTWOOD is not set
+# CONFIG_TCP_CONG_HTCP is not set
+# CONFIG_TCP_CONG_HSTCP is not set
+# CONFIG_TCP_CONG_HYBLA is not set
+# CONFIG_TCP_CONG_VEGAS is not set
+# CONFIG_TCP_CONG_SCALABLE is not set
+# CONFIG_TCP_CONG_LP is not set
+# CONFIG_TCP_CONG_VENO is not set
+# CONFIG_TCP_CONG_YEAH is not set
+# CONFIG_TCP_CONG_ILLINOIS is not set
+# CONFIG_TCP_CONG_DCTCP is not set
+CONFIG_DEFAULT_CUBIC=y
+# CONFIG_DEFAULT_RENO is not set
+CONFIG_DEFAULT_TCP_CONG="cubic"
+# CONFIG_TCP_MD5SIG is not set
+CONFIG_IPV6=y
+# CONFIG_IPV6_ROUTER_PREF is not set
+# CONFIG_IPV6_OPTIMISTIC_DAD is not set
+# CONFIG_INET6_AH is not set
+# CONFIG_INET6_ESP is not set
+# CONFIG_INET6_IPCOMP is not set
+# CONFIG_IPV6_MIP6 is not set
+# CONFIG_INET6_XFRM_TUNNEL is not set
+# CONFIG_INET6_TUNNEL is not set
+# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
+# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
+# CONFIG_INET6_XFRM_MODE_BEET is not set
+# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
+# CONFIG_IPV6_SIT is not set
+# CONFIG_IPV6_TUNNEL is not set
+# CONFIG_IPV6_GRE is not set
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_SUBTREES=y
+CONFIG_IPV6_MROUTE=y
+# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
+# CONFIG_IPV6_PIMSM_V2 is not set
+CONFIG_SOCK_DIAG=y
+# CONFIG_NETWORK_SECMARK is not set
+CONFIG_NET_PTP_CLASSIFY=y
+# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
+CONFIG_NETFILTER=y
+# CONFIG_NETFILTER_DEBUG is not set
+CONFIG_NETFILTER_ADVANCED=y
+# CONFIG_BRIDGE_NETFILTER is not set
+
+#
+# Core Netfilter Configuration
+#
+# CONFIG_NETFILTER_NETLINK is not set
+# CONFIG_NETFILTER_NETLINK_ACCT is not set
+# CONFIG_NETFILTER_NETLINK_QUEUE is not set
+# CONFIG_NETFILTER_NETLINK_LOG is not set
+CONFIG_NF_CONNTRACK=m
+CONFIG_NF_LOG_COMMON=m
+# CONFIG_NF_CONNTRACK_MARK is not set
+# CONFIG_NF_CONNTRACK_ZONES is not set
+CONFIG_NF_CONNTRACK_PROCFS=y
+# CONFIG_NF_CONNTRACK_EVENTS is not set
+CONFIG_NF_CONNTRACK_RTCACHE=m
+# CONFIG_NF_CONNTRACK_TIMEOUT is not set
+# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
+# CONFIG_NF_CT_PROTO_DCCP is not set
+# CONFIG_NF_CT_PROTO_SCTP is not set
+# CONFIG_NF_CT_PROTO_UDPLITE is not set
+# CONFIG_NF_CONNTRACK_AMANDA is not set
+# CONFIG_NF_CONNTRACK_FTP is not set
+# CONFIG_NF_CONNTRACK_H323 is not set
+# CONFIG_NF_CONNTRACK_IRC is not set
+# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
+# CONFIG_NF_CONNTRACK_SNMP is not set
+# CONFIG_NF_CONNTRACK_PPTP is not set
+# CONFIG_NF_CONNTRACK_SANE is not set
+# CONFIG_NF_CONNTRACK_SIP is not set
+# CONFIG_NF_CONNTRACK_TFTP is not set
+# CONFIG_NF_CT_NETLINK is not set
+# CONFIG_NF_CT_NETLINK_TIMEOUT is not set
+CONFIG_NF_NAT=m
+CONFIG_NF_NAT_NEEDED=y
+# CONFIG_NF_NAT_AMANDA is not set
+# CONFIG_NF_NAT_FTP is not set
+# CONFIG_NF_NAT_IRC is not set
+# CONFIG_NF_NAT_SIP is not set
+# CONFIG_NF_NAT_TFTP is not set
+CONFIG_NF_NAT_REDIRECT=m
+# CONFIG_NF_TABLES is not set
+CONFIG_NETFILTER_XTABLES=m
+
+#
+# Xtables combined modules
+#
+CONFIG_NETFILTER_XT_MARK=m
+# CONFIG_NETFILTER_XT_CONNMARK is not set
+
+#
+# Xtables targets
+#
+# CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set
+# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
+# CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
+CONFIG_NETFILTER_XT_TARGET_CT=m
+# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
+# CONFIG_NETFILTER_XT_TARGET_HL is not set
+# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
+# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
+# CONFIG_NETFILTER_XT_TARGET_LED is not set
+CONFIG_NETFILTER_XT_TARGET_LOG=m
+# CONFIG_NETFILTER_XT_TARGET_MARK is not set
+CONFIG_NETFILTER_XT_NAT=m
+# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
+# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
+# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
+# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set
+# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
+CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
+# CONFIG_NETFILTER_XT_TARGET_TEE is not set
+# CONFIG_NETFILTER_XT_TARGET_TPROXY is not set
+# CONFIG_NETFILTER_XT_TARGET_TRACE is not set
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
+# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
+
+#
+# Xtables matches
+#
+# CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
+# CONFIG_NETFILTER_XT_MATCH_BPF is not set
+# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
+# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
+# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
+# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
+# CONFIG_NETFILTER_XT_MATCH_CPU is not set
+# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
+# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
+# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
+# CONFIG_NETFILTER_XT_MATCH_ECN is not set
+# CONFIG_NETFILTER_XT_MATCH_ESP is not set
+# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
+# CONFIG_NETFILTER_XT_MATCH_HELPER is not set
+# CONFIG_NETFILTER_XT_MATCH_HL is not set
+# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
+CONFIG_NETFILTER_XT_MATCH_ID=m
+# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
+# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
+# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+# CONFIG_NETFILTER_XT_MATCH_MARK is not set
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
+# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
+# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
+# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
+# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
+# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
+# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
+# CONFIG_NETFILTER_XT_MATCH_REALM is not set
+# CONFIG_NETFILTER_XT_MATCH_RECENT is not set
+# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
+# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
+CONFIG_NETFILTER_XT_MATCH_STATE=m
+# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
+# CONFIG_NETFILTER_XT_MATCH_STRING is not set
+# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
+CONFIG_NETFILTER_XT_MATCH_TIME=m
+# CONFIG_NETFILTER_XT_MATCH_U32 is not set
+# CONFIG_IP_SET is not set
+# CONFIG_IP_VS is not set
+
+#
+# IP: Netfilter Configuration
+#
+CONFIG_NF_DEFRAG_IPV4=m
+CONFIG_NF_CONNTRACK_IPV4=m
+# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
+# CONFIG_NF_LOG_ARP is not set
+CONFIG_NF_LOG_IPV4=m
+CONFIG_NF_REJECT_IPV4=m
+CONFIG_NF_NAT_IPV4=m
+CONFIG_NF_NAT_MASQUERADE_IPV4=m
+# CONFIG_NF_NAT_PPTP is not set
+# CONFIG_NF_NAT_H323 is not set
+CONFIG_IP_NF_IPTABLES=m
+# CONFIG_IP_NF_MATCH_AH is not set
+# CONFIG_IP_NF_MATCH_ECN is not set
+# CONFIG_IP_NF_MATCH_RPFILTER is not set
+# CONFIG_IP_NF_MATCH_TTL is not set
+CONFIG_IP_NF_FILTER=m
+CONFIG_IP_NF_TARGET_REJECT=m
+# CONFIG_IP_NF_TARGET_SYNPROXY is not set
+CONFIG_IP_NF_NAT=m
+CONFIG_IP_NF_TARGET_MASQUERADE=m
+# CONFIG_IP_NF_TARGET_NETMAP is not set
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_IP_NF_MANGLE=m
+# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
+# CONFIG_IP_NF_TARGET_ECN is not set
+# CONFIG_IP_NF_TARGET_TTL is not set
+CONFIG_IP_NF_RAW=m
+# CONFIG_IP_NF_ARPTABLES is not set
+
+#
+# IPv6: Netfilter Configuration
+#
+# CONFIG_NF_DEFRAG_IPV6 is not set
+# CONFIG_NF_CONNTRACK_IPV6 is not set
+# CONFIG_NF_REJECT_IPV6 is not set
+CONFIG_NF_LOG_IPV6=m
+# CONFIG_IP6_NF_IPTABLES is not set
+# CONFIG_BRIDGE_NF_EBTABLES is not set
+# CONFIG_IP_DCCP is not set
+# CONFIG_IP_SCTP is not set
+# CONFIG_RDS is not set
+# CONFIG_TIPC is not set
+# CONFIG_ATM is not set
+# CONFIG_L2TP is not set
+CONFIG_STP=y
+CONFIG_BRIDGE=y
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+# CONFIG_BRIDGE_VLAN_FILTERING is not set
+CONFIG_HAVE_NET_DSA=y
+CONFIG_VLAN_8021Q=y
+# CONFIG_VLAN_8021Q_GVRP is not set
+# CONFIG_VLAN_8021Q_MVRP is not set
+# CONFIG_DECNET is not set
+CONFIG_LLC=y
+# CONFIG_LLC2 is not set
+# CONFIG_IPX is not set
+# CONFIG_ATALK is not set
+# CONFIG_X25 is not set
+# CONFIG_LAPB is not set
+# CONFIG_PHONET is not set
+# CONFIG_6LOWPAN is not set
+# CONFIG_IEEE802154 is not set
+CONFIG_NET_SCHED=y
+
+#
+# Queueing/Scheduling
+#
+# CONFIG_NET_SCH_CBQ is not set
+# CONFIG_NET_SCH_HTB is not set
+# CONFIG_NET_SCH_HFSC is not set
+# CONFIG_NET_SCH_PRIO is not set
+# CONFIG_NET_SCH_MULTIQ is not set
+# CONFIG_NET_SCH_RED is not set
+# CONFIG_NET_SCH_SFB is not set
+# CONFIG_NET_SCH_SFQ is not set
+# CONFIG_NET_SCH_ESFQ is not set
+# CONFIG_NET_SCH_TEQL is not set
+# CONFIG_NET_SCH_TBF is not set
+# CONFIG_NET_SCH_GRED is not set
+# CONFIG_NET_SCH_DSMARK is not set
+# CONFIG_NET_SCH_NETEM is not set
+# CONFIG_NET_SCH_DRR is not set
+# CONFIG_NET_SCH_MQPRIO is not set
+# CONFIG_NET_SCH_CHOKE is not set
+# CONFIG_NET_SCH_QFQ is not set
+# CONFIG_NET_SCH_CODEL is not set
+CONFIG_NET_SCH_FQ_CODEL=y
+# CONFIG_NET_SCH_FQ is not set
+# CONFIG_NET_SCH_HHF is not set
+# CONFIG_NET_SCH_PIE is not set
+# CONFIG_NET_SCH_PLUG is not set
+
+#
+# Classification
+#
+# CONFIG_NET_CLS_BASIC is not set
+# CONFIG_NET_CLS_TCINDEX is not set
+# CONFIG_NET_CLS_ROUTE4 is not set
+# CONFIG_NET_CLS_FW is not set
+# CONFIG_NET_CLS_U32 is not set
+# CONFIG_NET_CLS_RSVP is not set
+# CONFIG_NET_CLS_RSVP6 is not set
+# CONFIG_NET_CLS_FLOW is not set
+# CONFIG_NET_CLS_BPF is not set
+# CONFIG_NET_EMATCH is not set
+# CONFIG_NET_CLS_ACT is not set
+CONFIG_NET_SCH_FIFO=y
+# CONFIG_DCB is not set
+CONFIG_DNS_RESOLVER=y
+# CONFIG_BATMAN_ADV is not set
+# CONFIG_OPENVSWITCH is not set
+# CONFIG_VSOCKETS is not set
+# CONFIG_NETLINK_MMAP is not set
+# CONFIG_NETLINK_DIAG is not set
+# CONFIG_MPLS is not set
+# CONFIG_HSR is not set
+# CONFIG_NET_SWITCHDEV is not set
+CONFIG_RPS=y
+CONFIG_RFS_ACCEL=y
+CONFIG_XPS=y
+CONFIG_NET_RX_BUSY_POLL=y
+CONFIG_BQL=y
+# CONFIG_BPF_JIT is not set
+CONFIG_NET_FLOW_LIMIT=y
+
+#
+# Network testing
+#
+# CONFIG_NET_PKTGEN is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_CAN is not set
+# CONFIG_IRDA is not set
+# CONFIG_BT is not set
+# CONFIG_AF_RXRPC is not set
+CONFIG_FIB_RULES=y
+CONFIG_WIRELESS=y
+CONFIG_WIRELESS_EXT=y
+CONFIG_WEXT_CORE=y
+CONFIG_WEXT_PROC=y
+CONFIG_WEXT_SPY=y
+CONFIG_WEXT_PRIV=y
+# CONFIG_CFG80211 is not set
+# CONFIG_LIB80211 is not set
+# CONFIG_LIB80211_CRYPT_WEP is not set
+# CONFIG_LIB80211_CRYPT_CCMP is not set
+# CONFIG_LIB80211_CRYPT_TKIP is not set
+
+#
+# CFG80211 needs to be enabled for MAC80211
+#
+# CONFIG_WIMAX is not set
+# CONFIG_RFKILL 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_HAVE_BPF_JIT=y
+
+#
+# Device Drivers
+#
+CONFIG_ARM_AMBA=y
+# CONFIG_TEGRA_AHB is not set
+
+#
+# Generic Driver Options
+#
+CONFIG_UEVENT_HELPER=y
+CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+# CONFIG_DEVTMPFS is not set
+CONFIG_STANDALONE=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_FW_LOADER=y
+# CONFIG_FIRMWARE_IN_KERNEL is not set
+CONFIG_EXTRA_FIRMWARE=""
+CONFIG_FW_LOADER_USER_HELPER=y
+CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
+CONFIG_ALLOW_DEV_COREDUMP=y
+# CONFIG_DEBUG_DRIVER is not set
+# CONFIG_DEBUG_DEVRES is not set
+# CONFIG_SYS_HYPERVISOR is not set
+# CONFIG_GENERIC_CPU_DEVICES is not set
+CONFIG_GENERIC_CPU_AUTOPROBE=y
+CONFIG_REGMAP=y
+# CONFIG_REGMAP_I2C is not set
+# CONFIG_REGMAP_SPI is not set
+CONFIG_REGMAP_MMIO=y
+# CONFIG_DMA_SHARED_BUFFER is not set
+
+#
+# Bus devices
+#
+CONFIG_VEXPRESS_CONFIG=y
+# CONFIG_CONNECTOR is not set
+CONFIG_MTD=y
+
+#
+# OpenWrt specific MTD options
+#
+CONFIG_MTD_ROOTFS_ROOT_DEV=y
+# CONFIG_MTD_SPLIT_FIRMWARE is not set
+CONFIG_MTD_SPLIT=y
+CONFIG_MTD_SPLIT_SUPPORT=y
+
+#
+# Rootfs partition parsers
+#
+CONFIG_MTD_SPLIT_SQUASHFS_ROOT=y
+
+#
+# Firmware partition parsers
+#
+# CONFIG_MTD_SPLIT_SEAMA_FW is not set
+# CONFIG_MTD_SPLIT_UIMAGE_FW is not set
+# CONFIG_MTD_SPLIT_FIT_FW is not set
+# CONFIG_MTD_SPLIT_LZMA_FW is not set
+# CONFIG_MTD_SPLIT_TPLINK_FW is not set
+# CONFIG_MTD_SPLIT_TRX_FW is not set
+# CONFIG_MTD_SPLIT_BRNIMAGE_FW is not set
+# CONFIG_MTD_SPLIT_EVA_FW is not set
+# CONFIG_MTD_TESTS is not set
+# CONFIG_MTD_REDBOOT_PARTS is not set
+CONFIG_MTD_CMDLINE_PARTS=y
+CONFIG_MTD_OF_PARTS=y
+# CONFIG_MTD_AR7_PARTS is not set
+
+#
+# User Modules And Translation Layers
+#
+CONFIG_MTD_BLKDEVS=y
+CONFIG_MTD_BLOCK=y
+CONFIG_FTL=y
+# CONFIG_NFTL is not set
+# CONFIG_INFTL is not set
+# CONFIG_RFD_FTL is not set
+# CONFIG_SSFDC is not set
+# CONFIG_SM_FTL is not set
+# CONFIG_MTD_OOPS is not set
+# CONFIG_MTD_SWAP is not set
+# CONFIG_MTD_PARTITIONED_MASTER is not set
+
+#
+# RAM/ROM/Flash chip drivers
+#
+CONFIG_MTD_CFI=y
+# CONFIG_MTD_JEDECPROBE is not set
+CONFIG_MTD_GEN_PROBE=y
+CONFIG_MTD_CFI_ADV_OPTIONS=y
+# CONFIG_MTD_CFI_NOSWAP is not set
+CONFIG_MTD_CFI_BE_BYTE_SWAP=y
+# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set
+# CONFIG_MTD_CFI_GEOMETRY is not set
+CONFIG_MTD_MAP_BANK_WIDTH_1=y
+CONFIG_MTD_MAP_BANK_WIDTH_2=y
+CONFIG_MTD_MAP_BANK_WIDTH_4=y
+# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
+# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
+# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
+CONFIG_MTD_CFI_I1=y
+CONFIG_MTD_CFI_I2=y
+# CONFIG_MTD_CFI_I4 is not set
+# CONFIG_MTD_CFI_I8 is not set
+# CONFIG_MTD_OTP is not set
+CONFIG_MTD_CFI_INTELEXT=y
+CONFIG_MTD_CFI_AMDSTD=y
+CONFIG_MTD_CFI_STAA=y
+CONFIG_MTD_CFI_UTIL=y
+# CONFIG_MTD_RAM is not set
+# CONFIG_MTD_ROM is not set
+# CONFIG_MTD_ABSENT is not set
+
+#
+# Mapping drivers for chip access
+#
+CONFIG_MTD_COMPLEX_MAPPINGS=y
+# CONFIG_MTD_PHYSMAP is not set
+CONFIG_MTD_PHYSMAP_OF=y
+# CONFIG_MTD_PCI is not set
+# CONFIG_MTD_GPIO_ADDR is not set
+# CONFIG_MTD_INTEL_VR_NOR is not set
+# CONFIG_MTD_PLATRAM is not set
+# CONFIG_MTD_LATCH_ADDR is not set
+
+#
+# Self-contained MTD device drivers
+#
+# CONFIG_MTD_PMC551 is not set
+# CONFIG_MTD_DATAFLASH is not set
+# CONFIG_MTD_SST25L is not set
+# CONFIG_MTD_SLRAM is not set
+# CONFIG_MTD_PHRAM is not set
+# CONFIG_MTD_MTDRAM is not set
+# CONFIG_MTD_BLOCK2MTD is not set
+
+#
+# Disk-On-Chip Device Drivers
+#
+# CONFIG_MTD_DOCG3 is not set
+CONFIG_MTD_NAND_ECC=y
+# CONFIG_MTD_NAND_ECC_SMC is not set
+CONFIG_MTD_NAND=y
+# CONFIG_MTD_NAND_ECC_BCH is not set
+# CONFIG_MTD_SM_COMMON is not set
+# CONFIG_MTD_NAND_DENALI is not set
+# CONFIG_MTD_NAND_GPIO is not set
+# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set
+CONFIG_MTD_NAND_IDS=y
+# CONFIG_MTD_NAND_RICOH is not set
+# CONFIG_MTD_NAND_DISKONCHIP is not set
+# CONFIG_MTD_NAND_DOCG4 is not set
+# CONFIG_MTD_NAND_CAFE is not set
+# CONFIG_MTD_NAND_NANDSIM is not set
+# CONFIG_MTD_NAND_PLATFORM is not set
+CONFIG_MTD_NAND_FSL_IFC=y
+# CONFIG_MTD_NAND_HISI504 is not set
+# CONFIG_MTD_ONENAND is not set
+
+#
+# LPDDR & LPDDR2 PCM memory drivers
+#
+# CONFIG_MTD_LPDDR is not set
+# CONFIG_MTD_SPI_NOR is not set
+# CONFIG_MTD_UBI is not set
+CONFIG_DTC=y
+CONFIG_OF=y
+
+#
+# Device Tree and Open Firmware support
+#
+# CONFIG_OF_UNITTEST is not set
+CONFIG_OF_FLATTREE=y
+CONFIG_OF_EARLY_FLATTREE=y
+CONFIG_OF_ADDRESS=y
+CONFIG_OF_ADDRESS_PCI=y
+CONFIG_OF_IRQ=y
+CONFIG_OF_NET=y
+CONFIG_OF_MDIO=y
+CONFIG_OF_PCI=y
+CONFIG_OF_PCI_IRQ=y
+CONFIG_OF_MTD=y
+CONFIG_OF_RESERVED_MEM=y
+# CONFIG_OF_OVERLAY is not set
+# CONFIG_PARPORT is not set
+CONFIG_PNP=y
+CONFIG_PNP_DEBUG_MESSAGES=y
+
+#
+# Protocols
+#
+CONFIG_PNPACPI=y
+CONFIG_BLK_DEV=y
+# CONFIG_BLK_DEV_NULL_BLK is not set
+# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
+# CONFIG_BLK_CPQ_CISS_DA is not set
+# CONFIG_BLK_DEV_DAC960 is not set
+# CONFIG_BLK_DEV_UMEM 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_NVME is not set
+# CONFIG_BLK_DEV_SKD is not set
+# CONFIG_BLK_DEV_SX8 is not set
+CONFIG_BLK_DEV_RAM=y
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=262144
+# CONFIG_BLK_DEV_PMEM is not set
+# CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_ATA_OVER_ETH is not set
+CONFIG_VIRTIO_BLK=y
+# CONFIG_BLK_DEV_RBD is not set
+# CONFIG_BLK_DEV_RSXX is not set
+
+#
+# Misc devices
+#
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_DUMMY_IRQ is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_SGI_IOC4 is not set
+# CONFIG_TIFM_CORE is not set
+# CONFIG_ICS932S401 is not set
+# CONFIG_ENCLOSURE_SERVICES is not set
+CONFIG_FSL_USDPAA=y
+# CONFIG_HP_ILO is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_BH1780 is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_DS1682 is not set
+# CONFIG_TI_DAC7512 is not set
+# CONFIG_BMP085_I2C is not set
+# CONFIG_BMP085_SPI is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_LATTICE_ECP3_CONFIG is not set
+# CONFIG_SRAM is not set
+CONFIG_VEXPRESS_SYSCFG=y
+# CONFIG_C2PORT is not set
+
+#
+# EEPROM support
+#
+# CONFIG_EEPROM_AT24 is not set
+# CONFIG_EEPROM_AT25 is not set
+# CONFIG_EEPROM_LEGACY is not set
+# CONFIG_EEPROM_MAX6875 is not set
+# CONFIG_EEPROM_93CX6 is not set
+# CONFIG_EEPROM_93XX46 is not set
+# CONFIG_CB710_CORE is not set
+
+#
+# Texas Instruments shared transport line discipline
+#
+# CONFIG_TI_ST is not set
+
+#
+# Altera FPGA firmware download module
+#
+# CONFIG_ALTERA_STAPL is not set
+
+#
+# Intel MIC Bus Driver
+#
+
+#
+# Intel MIC Host Driver
+#
+
+#
+# Intel MIC Card Driver
+#
+# CONFIG_GENWQE is not set
+# CONFIG_ECHO is not set
+# CONFIG_CXL_BASE is not set
+
+#
+# SCSI device support
+#
+CONFIG_SCSI_MOD=y
+# CONFIG_RAID_ATTRS is not set
+CONFIG_SCSI=y
+CONFIG_SCSI_DMA=y
+# CONFIG_SCSI_NETLINK is not set
+# CONFIG_SCSI_MQ_DEFAULT is not set
+# CONFIG_SCSI_PROC_FS is not set
+
+#
+# SCSI support type (disk, tape, CD-ROM)
+#
+CONFIG_BLK_DEV_SD=y
+# CONFIG_CHR_DEV_ST is not set
+# CONFIG_CHR_DEV_OSST is not set
+# CONFIG_BLK_DEV_SR is not set
+# CONFIG_CHR_DEV_SG is not set
+# CONFIG_CHR_DEV_SCH is not set
+# CONFIG_SCSI_CONSTANTS is not set
+# CONFIG_SCSI_LOGGING is not set
+# CONFIG_SCSI_SCAN_ASYNC is not set
+
+#
+# SCSI Transports
+#
+# CONFIG_SCSI_SPI_ATTRS is not set
+# CONFIG_SCSI_FC_ATTRS is not set
+# CONFIG_SCSI_ISCSI_ATTRS is not set
+# CONFIG_SCSI_SAS_ATTRS is not set
+# CONFIG_SCSI_SAS_LIBSAS is not set
+# CONFIG_SCSI_SRP_ATTRS is not set
+# CONFIG_SCSI_LOWLEVEL is not set
+# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
+# CONFIG_SCSI_DH is not set
+# CONFIG_SCSI_OSD_INITIATOR is not set
+CONFIG_HAVE_PATA_PLATFORM=y
+CONFIG_ATA=y
+# CONFIG_ATA_NONSTANDARD is not set
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATA_ACPI=y
+CONFIG_SATA_PMP=y
+
+#
+# Controllers with non-SFF native interface
+#
+CONFIG_SATA_AHCI=y
+CONFIG_SATA_AHCI_PLATFORM=y
+CONFIG_AHCI_XGENE=y
+# CONFIG_SATA_INIC162X is not set
+# CONFIG_SATA_ACARD_AHCI is not set
+# CONFIG_SATA_SIL24 is not set
+CONFIG_ATA_SFF=y
+
+#
+# SFF controllers with custom DMA interface
+#
+# CONFIG_PDC_ADMA is not set
+# CONFIG_SATA_QSTOR is not set
+# CONFIG_SATA_SX4 is not set
+CONFIG_ATA_BMDMA=y
+
+#
+# SATA SFF controllers with BMDMA
+#
+# CONFIG_ATA_PIIX is not set
+# CONFIG_SATA_MV is not set
+# CONFIG_SATA_NV is not set
+# CONFIG_SATA_PROMISE is not set
+# CONFIG_SATA_SIL is not set
+# CONFIG_SATA_SIS is not set
+# CONFIG_SATA_SVW is not set
+# CONFIG_SATA_ULI is not set
+# CONFIG_SATA_VIA is not set
+# CONFIG_SATA_VITESSE is not set
+
+#
+# PATA SFF controllers with BMDMA
+#
+# CONFIG_PATA_ALI is not set
+# CONFIG_PATA_AMD is not set
+# CONFIG_PATA_ARTOP is not set
+# CONFIG_PATA_ATIIXP is not set
+# CONFIG_PATA_ATP867X is not set
+# CONFIG_PATA_CMD64X is not set
+# CONFIG_PATA_CYPRESS is not set
+# CONFIG_PATA_EFAR is not set
+# CONFIG_PATA_HPT366 is not set
+# CONFIG_PATA_HPT37X is not set
+# CONFIG_PATA_HPT3X2N is not set
+# CONFIG_PATA_HPT3X3 is not set
+# CONFIG_PATA_IT8213 is not set
+# CONFIG_PATA_IT821X is not set
+# CONFIG_PATA_JMICRON is not set
+# CONFIG_PATA_MARVELL is not set
+# CONFIG_PATA_NETCELL is not set
+# CONFIG_PATA_NINJA32 is not set
+# CONFIG_PATA_NS87415 is not set
+# CONFIG_PATA_OLDPIIX is not set
+# CONFIG_PATA_OPTIDMA is not set
+# CONFIG_PATA_PDC2027X is not set
+# CONFIG_PATA_PDC_OLD is not set
+# CONFIG_PATA_RADISYS is not set
+# CONFIG_PATA_RDC is not set
+# CONFIG_PATA_SCH is not set
+# CONFIG_PATA_SERVERWORKS is not set
+# CONFIG_PATA_SIL680 is not set
+# CONFIG_PATA_SIS is not set
+# CONFIG_PATA_TOSHIBA is not set
+# CONFIG_PATA_TRIFLEX is not set
+# CONFIG_PATA_VIA is not set
+# CONFIG_PATA_WINBOND is not set
+
+#
+# PIO-only SFF controllers
+#
+# CONFIG_PATA_CMD640_PCI is not set
+# CONFIG_PATA_MPIIX is not set
+# CONFIG_PATA_NS87410 is not set
+# CONFIG_PATA_OPTI is not set
+CONFIG_PATA_PLATFORM=y
+CONFIG_PATA_OF_PLATFORM=y
+# CONFIG_PATA_RZ1000 is not set
+
+#
+# Generic fallback / legacy drivers
+#
+# CONFIG_PATA_ACPI is not set
+# CONFIG_ATA_GENERIC is not set
+# CONFIG_PATA_LEGACY is not set
+# CONFIG_MD is not set
+# CONFIG_TARGET_CORE is not set
+# CONFIG_FUSION is not set
+
+#
+# IEEE 1394 (FireWire) support
+#
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+CONFIG_NETDEVICES=y
+CONFIG_MII=y
+CONFIG_NET_CORE=y
+# CONFIG_BONDING is not set
+# CONFIG_DUMMY is not set
+# CONFIG_EQUALIZER is not set
+# CONFIG_NET_FC is not set
+# CONFIG_NET_TEAM is not set
+# CONFIG_MACVLAN is not set
+# CONFIG_IPVLAN is not set
+# CONFIG_VXLAN is not set
+# CONFIG_NETCONSOLE is not set
+# CONFIG_NETPOLL is not set
+# CONFIG_NET_POLL_CONTROLLER is not set
+CONFIG_TUN=y
+# CONFIG_VETH is not set
+CONFIG_VIRTIO_NET=y
+# CONFIG_NLMON is not set
+# CONFIG_ARCNET is not set
+
+#
+# CAIF transport drivers
+#
+
+#
+# Distributed Switch Architecture drivers
+#
+# CONFIG_NET_DSA_MV88E6XXX is not set
+# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
+CONFIG_ETHERNET=y
+CONFIG_NET_VENDOR_3COM=y
+# CONFIG_VORTEX is not set
+# CONFIG_TYPHOON is not set
+CONFIG_NET_VENDOR_ADAPTEC=y
+# CONFIG_ADAPTEC_STARFIRE is not set
+CONFIG_NET_VENDOR_AGERE=y
+# CONFIG_ET131X is not set
+CONFIG_NET_VENDOR_ALTEON=y
+# CONFIG_ACENIC is not set
+# CONFIG_ALTERA_TSE is not set
+CONFIG_NET_VENDOR_AMD=y
+# CONFIG_AMD8111_ETH is not set
+# CONFIG_PCNET32 is not set
+# CONFIG_AMD_XGBE is not set
+CONFIG_NET_VENDOR_ARC=y
+# CONFIG_ARC_EMAC is not set
+CONFIG_NET_VENDOR_ATHEROS=y
+# CONFIG_ATL2 is not set
+# CONFIG_ATL1 is not set
+# CONFIG_ATL1E is not set
+# CONFIG_ATL1C is not set
+# CONFIG_ALX is not set
+CONFIG_NET_CADENCE=y
+# CONFIG_MACB is not set
+CONFIG_NET_VENDOR_BROADCOM=y
+# CONFIG_B44 is not set
+# CONFIG_BCMGENET is not set
+# CONFIG_BNX2 is not set
+# CONFIG_CNIC is not set
+# CONFIG_TIGON3 is not set
+# CONFIG_BNX2X is not set
+# CONFIG_SYSTEMPORT is not set
+CONFIG_NET_VENDOR_BROCADE=y
+# CONFIG_BNA is not set
+CONFIG_NET_VENDOR_CHELSIO=y
+# CONFIG_CHELSIO_T1 is not set
+# CONFIG_CHELSIO_T3 is not set
+# CONFIG_CHELSIO_T4 is not set
+# CONFIG_CHELSIO_T4VF is not set
+CONFIG_NET_VENDOR_CISCO=y
+# CONFIG_ENIC is not set
+# CONFIG_DNET is not set
+CONFIG_NET_VENDOR_DEC=y
+# CONFIG_NET_TULIP is not set
+CONFIG_NET_VENDOR_DLINK=y
+# CONFIG_DL2K is not set
+# CONFIG_SUNDANCE is not set
+CONFIG_NET_VENDOR_EMULEX=y
+# CONFIG_BE2NET is not set
+CONFIG_NET_VENDOR_EXAR=y
+# CONFIG_S2IO is not set
+# CONFIG_VXGE is not set
+CONFIG_NET_VENDOR_FREESCALE=y
+# CONFIG_FSL_PQ_MDIO is not set
+CONFIG_FSL_XGMAC_MDIO=y
+# CONFIG_GIANFAR is not set
+
+#
+# Frame Manager support
+#
+CONFIG_FSL_SDK_FMAN=y
+# CONFIG_FSL_SDK_FMAN_TEST is not set
+
+#
+# FMAN Processor support
+#
+CONFIG_FMAN_ARM=y
+# CONFIG_FMAN_P3040_P4080_P5020 is not set
+# CONFIG_FMAN_P1023 is not set
+# CONFIG_FMAN_V3H is not set
+# CONFIG_FMAN_V3L is not set
+# CONFIG_FMAN_MIB_CNT_OVF_IRQ_EN is not set
+CONFIG_FSL_FM_MAX_FRAME_SIZE=1522
+CONFIG_FSL_FM_RX_EXTRA_HEADROOM=64
+# CONFIG_FMAN_PFC is not set
+CONFIG_FSL_SDK_DPAA_ETH=y
+# CONFIG_FSL_DPAA_HOOKS is not set
+# CONFIG_FSL_DPAA_MACSEC is not set
+CONFIG_FSL_DPAA_OFFLINE_PORTS=y
+CONFIG_FSL_DPAA_ADVANCED_DRIVERS=y
+CONFIG_FSL_DPAA_GENERIC_DRIVER=y
+# CONFIG_FSL_DPAA_TS is not set
+# CONFIG_FSL_DPAA_1588 is not set
+CONFIG_FSL_DPAA_ETH_USE_NDO_SELECT_QUEUE=y
+CONFIG_FSL_DPAA_ETH_MAX_BUF_COUNT=128
+CONFIG_FSL_DPAA_ETH_REFILL_THRESHOLD=80
+CONFIG_FSL_DPAA_CS_THRESHOLD_1G=0x06000000
+CONFIG_FSL_DPAA_CS_THRESHOLD_10G=0x10000000
+CONFIG_FSL_DPAA_INGRESS_CS_THRESHOLD=0x10000000
+CONFIG_FSL_DPAA_ETH_DEBUGFS=y
+# CONFIG_FSL_DPAA_ETH_DEBUG is not set
+# CONFIG_FSL_DPAA_DBG_LOOP is not set
+CONFIG_NET_VENDOR_HP=y
+# CONFIG_HP100 is not set
+CONFIG_NET_VENDOR_INTEL=y
+# CONFIG_E100 is not set
+# CONFIG_E1000 is not set
+CONFIG_E1000E=y
+# CONFIG_IGB is not set
+# CONFIG_IGBVF is not set
+# CONFIG_IXGB is not set
+# CONFIG_IXGBE is not set
+# CONFIG_IXGBEVF is not set
+# CONFIG_I40E is not set
+# CONFIG_I40EVF is not set
+# CONFIG_FM10K is not set
+CONFIG_NET_VENDOR_I825XX=y
+# CONFIG_IP1000 is not set
+# CONFIG_JME is not set
+CONFIG_NET_VENDOR_MARVELL=y
+# CONFIG_MVMDIO is not set
+# CONFIG_SKGE is not set
+# CONFIG_SKY2 is not set
+CONFIG_NET_VENDOR_MELLANOX=y
+# CONFIG_MLX4_EN is not set
+# CONFIG_MLX4_CORE is not set
+# CONFIG_MLX5_CORE is not set
+CONFIG_NET_VENDOR_MICREL=y
+# CONFIG_KS8842 is not set
+# CONFIG_KS8851 is not set
+# CONFIG_KS8851_MLL is not set
+# CONFIG_KSZ884X_PCI is not set
+CONFIG_NET_VENDOR_MICROCHIP=y
+# CONFIG_ENC28J60 is not set
+CONFIG_NET_VENDOR_MYRI=y
+# CONFIG_MYRI10GE is not set
+# CONFIG_FEALNX is not set
+CONFIG_NET_VENDOR_NATSEMI=y
+# CONFIG_NATSEMI is not set
+# CONFIG_NS83820 is not set
+CONFIG_NET_VENDOR_8390=y
+# CONFIG_NE2K_PCI is not set
+CONFIG_NET_VENDOR_NVIDIA=y
+# CONFIG_FORCEDETH is not set
+CONFIG_NET_VENDOR_OKI=y
+# CONFIG_ETHOC is not set
+# CONFIG_NET_PACKET_ENGINE is not set
+CONFIG_NET_VENDOR_QLOGIC=y
+# CONFIG_QLA3XXX is not set
+# CONFIG_QLCNIC is not set
+# CONFIG_QLGE is not set
+# CONFIG_NETXEN_NIC is not set
+CONFIG_NET_VENDOR_QUALCOMM=y
+# CONFIG_QCA7000 is not set
+CONFIG_NET_VENDOR_REALTEK=y
+# CONFIG_8139CP is not set
+# CONFIG_8139TOO is not set
+# CONFIG_R8169 is not set
+CONFIG_NET_VENDOR_RDC=y
+# CONFIG_R6040 is not set
+CONFIG_NET_VENDOR_ROCKER=y
+CONFIG_NET_VENDOR_SAMSUNG=y
+# CONFIG_SXGBE_ETH is not set
+CONFIG_NET_VENDOR_SEEQ=y
+CONFIG_NET_VENDOR_SILAN=y
+# CONFIG_SC92031 is not set
+CONFIG_NET_VENDOR_SIS=y
+# CONFIG_SIS900 is not set
+# CONFIG_SIS190 is not set
+# CONFIG_SFC is not set
+CONFIG_NET_VENDOR_SMSC=y
+CONFIG_SMC91X=y
+# CONFIG_EPIC100 is not set
+# CONFIG_SMSC911X is not set
+# CONFIG_SMSC9420 is not set
+CONFIG_NET_VENDOR_STMICRO=y
+# CONFIG_STMMAC_ETH is not set
+CONFIG_NET_VENDOR_SUN=y
+# CONFIG_HAPPYMEAL is not set
+# CONFIG_SUNGEM is not set
+# CONFIG_CASSINI is not set
+# CONFIG_NIU is not set
+CONFIG_NET_VENDOR_TEHUTI=y
+# CONFIG_TEHUTI is not set
+CONFIG_NET_VENDOR_TI=y
+# CONFIG_TI_CPSW_ALE is not set
+# CONFIG_TLAN is not set
+CONFIG_NET_VENDOR_VIA=y
+# CONFIG_VIA_RHINE is not set
+# CONFIG_VIA_VELOCITY is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
+# CONFIG_FDDI is not set
+# CONFIG_HIPPI is not set
+# CONFIG_NET_SB1000 is not set
+CONFIG_PHYLIB=y
+CONFIG_MDIO_BOARDINFO=y
+# CONFIG_SWCONFIG is not set
+
+#
+# MII PHY device drivers
+#
+CONFIG_AQUANTIA_PHY=y
+# CONFIG_AT803X_PHY is not set
+# CONFIG_AMD_PHY is not set
+# CONFIG_AMD_XGBE_PHY is not set
+# CONFIG_MARVELL_PHY is not set
+# CONFIG_DAVICOM_PHY is not set
+# CONFIG_QSEMI_PHY is not set
+# CONFIG_LXT_PHY is not set
+# CONFIG_CICADA_PHY is not set
+CONFIG_VITESSE_PHY=y
+# CONFIG_SMSC_PHY is not set
+# CONFIG_BROADCOM_PHY is not set
+# CONFIG_BCM7XXX_PHY is not set
+# CONFIG_BCM87XX_PHY is not set
+# CONFIG_ICPLUS_PHY is not set
+CONFIG_REALTEK_PHY=y
+# CONFIG_NATIONAL_PHY is not set
+# CONFIG_STE10XP is not set
+# CONFIG_LSI_ET1011C_PHY is not set
+# CONFIG_MICREL_PHY is not set
+# CONFIG_ADM6996_PHY is not set
+# CONFIG_MVSWITCH_PHY is not set
+# CONFIG_MVSW61XX_PHY is not set
+# CONFIG_IP17XX_PHY is not set
+# CONFIG_AR8216_PHY is not set
+# CONFIG_RTL8306_PHY is not set
+CONFIG_FIXED_PHY=y
+# CONFIG_MDIO_BITBANG is not set
+# CONFIG_MDIO_BUS_MUX_GPIO is not set
+# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
+# CONFIG_MDIO_BCM_UNIMAC is not set
+# CONFIG_RTL8366_SMI is not set
+# CONFIG_MICREL_KS8995MA is not set
+# CONFIG_PSB6970_PHY is not set
+# CONFIG_PPP is not set
+# CONFIG_SLIP is not set
+CONFIG_USB_NET_DRIVERS=y
+# CONFIG_USB_CATC is not set
+# CONFIG_USB_KAWETH is not set
+# CONFIG_USB_PEGASUS is not set
+# CONFIG_USB_RTL8150 is not set
+# CONFIG_USB_RTL8152 is not set
+# CONFIG_USB_USBNET is not set
+# CONFIG_USB_IPHETH is not set
+CONFIG_WLAN=y
+# CONFIG_PRISM54 is not set
+# CONFIG_HOSTAP is not set
+CONFIG_WL_TI=y
+
+#
+# Enable WiMAX (Networking options) to see the WiMAX drivers
+#
+# CONFIG_WAN is not set
+# CONFIG_VMXNET3 is not set
+CONFIG_ISDN=y
+# CONFIG_ISDN_I4L is not set
+# CONFIG_ISDN_CAPI is not set
+# CONFIG_ISDN_DRV_GIGASET is not set
+# CONFIG_HYSDN is not set
+# CONFIG_MISDN is not set
+
+#
+# Input device support
+#
+# CONFIG_INPUT is not set
+
+#
+# Hardware I/O ports
+#
+# CONFIG_SERIO is not set
+# CONFIG_GAMEPORT is not set
+
+#
+# Character devices
+#
+CONFIG_TTY=y
+# CONFIG_VT is not set
+CONFIG_UNIX98_PTYS=y
+# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
+# CONFIG_LEGACY_PTYS is not set
+# CONFIG_SERIAL_NONSTANDARD is not set
+# CONFIG_NOZOMI is not set
+# CONFIG_N_GSM is not set
+# CONFIG_TRACE_SINK is not set
+# CONFIG_DEVMEM is not set
+# CONFIG_DEVKMEM is not set
+
+#
+# Serial drivers
+#
+CONFIG_SERIAL_EARLYCON=y
+CONFIG_SERIAL_8250=y
+# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
+CONFIG_SERIAL_8250_PNP=y
+CONFIG_SERIAL_8250_CONSOLE=y
+# CONFIG_SERIAL_8250_SYSRQ is not set
+CONFIG_SERIAL_8250_DMA=y
+# CONFIG_SERIAL_8250_PCI is not set
+CONFIG_SERIAL_8250_NR_UARTS=2
+CONFIG_SERIAL_8250_RUNTIME_UARTS=2
+# CONFIG_SERIAL_8250_EXTENDED is not set
+# CONFIG_SERIAL_8250_DW is not set
+# CONFIG_SERIAL_8250_FINTEK is not set
+
+#
+# Non-8250 serial port support
+#
+# CONFIG_SERIAL_AMBA_PL010 is not set
+CONFIG_SERIAL_AMBA_PL011=y
+CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
+# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
+# CONFIG_SERIAL_MAX3100 is not set
+# CONFIG_SERIAL_MAX310X is not set
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+# CONFIG_SERIAL_JSM is not set
+CONFIG_SERIAL_OF_PLATFORM=y
+# CONFIG_SERIAL_SCCNXP is not set
+# CONFIG_SERIAL_SC16IS7XX is not set
+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
+# CONFIG_SERIAL_ALTERA_UART is not set
+# CONFIG_SERIAL_IFX6X60 is not set
+# CONFIG_SERIAL_XILINX_PS_UART is not set
+# CONFIG_SERIAL_ARC is not set
+# CONFIG_SERIAL_RP2 is not set
+# CONFIG_SERIAL_FSL_LPUART is not set
+# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
+# CONFIG_TTY_PRINTK is not set
+# CONFIG_VIRTIO_CONSOLE is not set
+# CONFIG_IPMI_HANDLER is not set
+# CONFIG_HW_RANDOM is not set
+# CONFIG_R3964 is not set
+# CONFIG_APPLICOM is not set
+
+#
+# PCMCIA character devices
+#
+# CONFIG_RAW_DRIVER is not set
+# CONFIG_HPET is not set
+# CONFIG_TCG_TPM is not set
+CONFIG_DEVPORT=y
+# CONFIG_XILLYBUS is not set
+
+#
+# I2C support
+#
+CONFIG_I2C=y
+CONFIG_ACPI_I2C_OPREGION=y
+CONFIG_I2C_BOARDINFO=y
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_CHARDEV=y
+CONFIG_I2C_MUX=y
+
+#
+# Multiplexer I2C Chip support
+#
+# CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
+# CONFIG_I2C_MUX_GPIO is not set
+# CONFIG_I2C_MUX_PCA9541 is not set
+CONFIG_I2C_MUX_PCA954x=y
+CONFIG_I2C_HELPER_AUTO=y
+
+#
+# I2C Hardware Bus support
+#
+
+#
+# PC SMBus host controller drivers
+#
+# CONFIG_I2C_ALI1535 is not set
+# CONFIG_I2C_ALI1563 is not set
+# CONFIG_I2C_ALI15X3 is not set
+# CONFIG_I2C_AMD756 is not set
+# CONFIG_I2C_AMD8111 is not set
+# CONFIG_I2C_I801 is not set
+# CONFIG_I2C_ISCH is not set
+# CONFIG_I2C_PIIX4 is not set
+# CONFIG_I2C_NFORCE2 is not set
+# CONFIG_I2C_SIS5595 is not set
+# CONFIG_I2C_SIS630 is not set
+# CONFIG_I2C_SIS96X is not set
+# CONFIG_I2C_VIA is not set
+# CONFIG_I2C_VIAPRO is not set
+
+#
+# ACPI drivers
+#
+# CONFIG_I2C_SCMI is not set
+
+#
+# I2C system bus drivers (mostly embedded / system-on-chip)
+#
+# CONFIG_I2C_CBUS_GPIO is not set
+# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
+# CONFIG_I2C_DESIGNWARE_PCI is not set
+# CONFIG_I2C_GPIO is not set
+# CONFIG_I2C_NOMADIK is not set
+# CONFIG_I2C_OCORES is not set
+# CONFIG_I2C_PCA_PLATFORM is not set
+# CONFIG_I2C_PXA_PCI is not set
+# CONFIG_I2C_RK3X is not set
+# CONFIG_I2C_SIMTEC is not set
+# CONFIG_I2C_XILINX is not set
+
+#
+# External I2C/SMBus adapter drivers
+#
+# CONFIG_I2C_DIOLAN_U2C is not set
+# CONFIG_I2C_PARPORT_LIGHT is not set
+# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
+# CONFIG_I2C_TAOS_EVM is not set
+# CONFIG_I2C_TINY_USB is not set
+
+#
+# Other I2C/SMBus bus drivers
+#
+# CONFIG_I2C_STUB is not set
+# CONFIG_I2C_SLAVE is not set
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+CONFIG_SPI=y
+# CONFIG_SPI_DEBUG is not set
+CONFIG_SPI_MASTER=y
+
+#
+# SPI Master Controller Drivers
+#
+# CONFIG_SPI_ALTERA is not set
+# CONFIG_SPI_BITBANG is not set
+# CONFIG_SPI_CADENCE is not set
+# CONFIG_SPI_GPIO is not set
+# CONFIG_SPI_GPIO_OLD is not set
+# CONFIG_SPI_FSL_SPI is not set
+# CONFIG_SPI_OC_TINY is not set
+CONFIG_SPI_PL022=y
+# CONFIG_SPI_PXA2XX is not set
+# CONFIG_SPI_PXA2XX_PCI is not set
+# CONFIG_SPI_ROCKCHIP is not set
+# CONFIG_SPI_SC18IS602 is not set
+# CONFIG_SPI_XCOMM is not set
+# CONFIG_SPI_XILINX is not set
+# CONFIG_SPI_DESIGNWARE is not set
+
+#
+# SPI Protocol Masters
+#
+# CONFIG_SPI_SPIDEV is not set
+# CONFIG_SPI_TLE62X0 is not set
+# CONFIG_SPMI is not set
+# CONFIG_HSI is not set
+
+#
+# PPS support
+#
+CONFIG_PPS=y
+# CONFIG_PPS_DEBUG is not set
+
+#
+# PPS clients support
+#
+# CONFIG_PPS_CLIENT_KTIMER is not set
+# CONFIG_PPS_CLIENT_LDISC is not set
+# CONFIG_PPS_CLIENT_GPIO is not set
+
+#
+# PPS generators support
+#
+
+#
+# PTP clock support
+#
+CONFIG_PTP_1588_CLOCK=y
+
+#
+# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
+#
+CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
+CONFIG_GPIOLIB=y
+CONFIG_GPIO_DEVRES=y
+CONFIG_OF_GPIO=y
+CONFIG_GPIO_ACPI=y
+CONFIG_GPIOLIB_IRQCHIP=y
+# CONFIG_DEBUG_GPIO is not set
+CONFIG_GPIO_SYSFS=y
+CONFIG_GPIO_GENERIC=y
+
+#
+# Memory mapped GPIO drivers
+#
+# CONFIG_GPIO_74XX_MMIO is not set
+# CONFIG_GPIO_ALTERA is not set
+# CONFIG_GPIO_DWAPB is not set
+CONFIG_GPIO_GENERIC_PLATFORM=y
+# CONFIG_GPIO_GRGPIO is not set
+CONFIG_GPIO_MPC8XXX=y
+CONFIG_GPIO_PL061=y
+# CONFIG_GPIO_SCH311X is not set
+# CONFIG_GPIO_SYSCON is not set
+# CONFIG_GPIO_VX855 is not set
+CONFIG_GPIO_XGENE=y
+
+#
+# I2C GPIO expanders
+#
+# CONFIG_GPIO_ADP5588 is not set
+# CONFIG_GPIO_ADNP is not set
+# CONFIG_GPIO_MAX7300 is not set
+# CONFIG_GPIO_MAX732X is not set
+# CONFIG_GPIO_PCA953X is not set
+# CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_SX150X is not set
+
+#
+# MFD GPIO expanders
+#
+
+#
+# PCI GPIO expanders
+#
+# CONFIG_GPIO_AMD8111 is not set
+# CONFIG_GPIO_BT8XX is not set
+# CONFIG_GPIO_ML_IOH is not set
+# CONFIG_GPIO_RDC321X is not set
+
+#
+# SPI GPIO expanders
+#
+# CONFIG_GPIO_74X164 is not set
+# CONFIG_GPIO_MAX7301 is not set
+# CONFIG_GPIO_MCP23S08 is not set
+# CONFIG_GPIO_MC33880 is not set
+
+#
+# USB GPIO expanders
+#
+# CONFIG_W1 is not set
+CONFIG_POWER_SUPPLY=y
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+# CONFIG_PDA_POWER is not set
+# CONFIG_TEST_POWER is not set
+# CONFIG_BATTERY_DS2780 is not set
+# CONFIG_BATTERY_DS2781 is not set
+# CONFIG_BATTERY_DS2782 is not set
+# CONFIG_BATTERY_SBS is not set
+# CONFIG_BATTERY_BQ27x00 is not set
+# CONFIG_BATTERY_MAX17040 is not set
+# CONFIG_BATTERY_MAX17042 is not set
+# CONFIG_CHARGER_MAX8903 is not set
+# CONFIG_CHARGER_LP8727 is not set
+# CONFIG_CHARGER_GPIO is not set
+# CONFIG_CHARGER_BQ2415X is not set
+# CONFIG_CHARGER_BQ24190 is not set
+# CONFIG_CHARGER_BQ24735 is not set
+# CONFIG_CHARGER_SMB347 is not set
+# CONFIG_BATTERY_GAUGE_LTC2941 is not set
+CONFIG_POWER_RESET=y
+# CONFIG_POWER_RESET_GPIO is not set
+# CONFIG_POWER_RESET_GPIO_RESTART is not set
+# CONFIG_POWER_RESET_LTC2952 is not set
+# CONFIG_POWER_RESET_RESTART is not set
+CONFIG_POWER_RESET_VEXPRESS=y
+# CONFIG_POWER_RESET_XGENE is not set
+# CONFIG_POWER_RESET_SYSCON is not set
+# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
+CONFIG_POWER_RESET_LAYERSCAPE=y
+# CONFIG_POWER_AVS is not set
+# CONFIG_HWMON is not set
+# CONFIG_THERMAL is not set
+CONFIG_WATCHDOG=y
+# CONFIG_WATCHDOG_CORE is not set
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+
+#
+# Watchdog Device Drivers
+#
+# CONFIG_SOFT_WATCHDOG is not set
+# CONFIG_GPIO_WATCHDOG is not set
+# CONFIG_XILINX_WATCHDOG is not set
+# CONFIG_ARM_SP805_WATCHDOG is not set
+# CONFIG_CADENCE_WATCHDOG is not set
+# CONFIG_DW_WATCHDOG is not set
+# CONFIG_ALIM7101_WDT is not set
+# CONFIG_I6300ESB_WDT is not set
+# CONFIG_GPIO_WDT is not set
+# CONFIG_MEN_A21_WDT is not set
+
+#
+# PCI-based Watchdog Cards
+#
+# CONFIG_PCIPCWATCHDOG is not set
+# CONFIG_WDTPCI is not set
+
+#
+# USB-based Watchdog Cards
+#
+# CONFIG_USBPCWATCHDOG is not set
+CONFIG_SSB_POSSIBLE=y
+
+#
+# Sonics Silicon Backplane
+#
+# CONFIG_SSB is not set
+CONFIG_BCMA_POSSIBLE=y
+
+#
+# Broadcom specific AMBA
+#
+# CONFIG_BCMA is not set
+
+#
+# Multifunction device drivers
+#
+CONFIG_MFD_CORE=y
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_MFD_AAT2870_CORE is not set
+# CONFIG_MFD_ATMEL_HLCDC is not set
+# CONFIG_MFD_BCM590XX is not set
+# CONFIG_MFD_AXP20X is not set
+# CONFIG_MFD_CROS_EC is not set
+# CONFIG_PMIC_DA903X is not set
+# CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
+# CONFIG_MFD_DLN2 is not set
+# CONFIG_MFD_MC13XXX_SPI is not set
+# CONFIG_MFD_MC13XXX_I2C is not set
+# CONFIG_MFD_HI6421_PMIC is not set
+# CONFIG_HTC_PASIC3 is not set
+# CONFIG_HTC_I2CPLD is not set
+# CONFIG_LPC_ICH is not set
+# CONFIG_LPC_SCH is not set
+# CONFIG_INTEL_SOC_PMIC is not set
+# CONFIG_MFD_JANZ_CMODIO is not set
+# CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
+# CONFIG_MFD_MT6397 is not set
+# CONFIG_MFD_MENF21BMC is not set
+# CONFIG_EZX_PCAP is not set
+# CONFIG_MFD_VIPERBOARD is not set
+# CONFIG_MFD_RETU is not set
+# CONFIG_MFD_PCF50633 is not set
+# CONFIG_MFD_RDC321X is not set
+# CONFIG_MFD_RTSX_PCI is not set
+# CONFIG_MFD_RT5033 is not set
+# CONFIG_MFD_RTSX_USB is not set
+# CONFIG_MFD_RC5T583 is not set
+# CONFIG_MFD_RK808 is not set
+# CONFIG_MFD_RN5T618 is not set
+# CONFIG_MFD_SEC_CORE is not set
+# CONFIG_MFD_SI476X_CORE is not set
+# CONFIG_MFD_SM501 is not set
+# CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
+# CONFIG_ABX500_CORE is not set
+# CONFIG_MFD_STMPE is not set
+CONFIG_MFD_SYSCON=y
+# CONFIG_MFD_TI_AM335X_TSCADC is not set
+# CONFIG_MFD_LP3943 is not set
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_PALMAS is not set
+# CONFIG_TPS6105X is not set
+# CONFIG_TPS65010 is not set
+# CONFIG_TPS6507X is not set
+# CONFIG_MFD_TPS65090 is not set
+# CONFIG_MFD_TPS65217 is not set
+# CONFIG_MFD_TPS65218 is not set
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
+# CONFIG_MFD_TPS65912 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
+# CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
+# CONFIG_MFD_WL1273_CORE is not set
+# CONFIG_MFD_LM3533 is not set
+# CONFIG_MFD_TC3589X is not set
+# CONFIG_MFD_TMIO is not set
+# CONFIG_MFD_VX855 is not set
+# CONFIG_MFD_ARIZONA_I2C is not set
+# CONFIG_MFD_ARIZONA_SPI is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM831X_I2C is not set
+# CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
+# CONFIG_MFD_WM8994 is not set
+CONFIG_MFD_VEXPRESS_SYSREG=y
+# CONFIG_REGULATOR is not set
+# CONFIG_MEDIA_SUPPORT is not set
+
+#
+# Graphics support
+#
+# CONFIG_VGA_ARB is not set
+
+#
+# Direct Rendering Manager
+#
+# CONFIG_DRM is not set
+
+#
+# Frame buffer Devices
+#
+CONFIG_FB=y
+# CONFIG_FIRMWARE_EDID is not set
+CONFIG_FB_CMDLINE=y
+# CONFIG_FB_DDC is not set
+# CONFIG_FB_BOOT_VESA_SUPPORT is not set
+CONFIG_FB_CFB_FILLRECT=y
+CONFIG_FB_CFB_COPYAREA=y
+CONFIG_FB_CFB_IMAGEBLIT=y
+# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
+# CONFIG_FB_SYS_FILLRECT is not set
+# CONFIG_FB_SYS_COPYAREA is not set
+# CONFIG_FB_SYS_IMAGEBLIT is not set
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+# CONFIG_FB_SYS_FOPS is not set
+# CONFIG_FB_SVGALIB is not set
+# CONFIG_FB_MACMODES is not set
+# CONFIG_FB_BACKLIGHT is not set
+CONFIG_FB_MODE_HELPERS=y
+# CONFIG_FB_TILEBLITTING is not set
+
+#
+# Frame buffer hardware drivers
+#
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_PM2 is not set
+CONFIG_FB_ARMCLCD=y
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_OPENCORES is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_VIRTUAL is not set
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_BROADSHEET is not set
+# CONFIG_FB_AUO_K190X is not set
+# CONFIG_FB_SIMPLE is not set
+# CONFIG_FB_SSD1307 is not set
+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
+# CONFIG_VGASTATE is not set
+CONFIG_VIDEOMODE_HELPERS=y
+CONFIG_LOGO=y
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+CONFIG_LOGO_LINUX_CLUT224=y
+# CONFIG_SOUND is not set
+CONFIG_USB_OHCI_LITTLE_ENDIAN=y
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_COMMON=y
+CONFIG_USB_ARCH_HAS_HCD=y
+CONFIG_USB=y
+# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
+
+#
+# Miscellaneous USB options
+#
+CONFIG_USB_DEFAULT_PERSIST=y
+# CONFIG_USB_DYNAMIC_MINORS is not set
+# CONFIG_USB_OTG_WHITELIST is not set
+# CONFIG_USB_OTG_BLACKLIST_HUB is not set
+# CONFIG_USB_OTG_FSM is not set
+# CONFIG_USB_MON is not set
+# CONFIG_USB_WUSB_CBAF is not set
+
+#
+# USB Host Controller Drivers
+#
+# CONFIG_USB_C67X00_HCD is not set
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PCI=y
+CONFIG_USB_XHCI_PLATFORM=y
+CONFIG_USB_EHCI_HCD=y
+# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_EHCI_PCI=y
+# CONFIG_USB_EHCI_FSL is not set
+CONFIG_USB_EHCI_HCD_PLATFORM=y
+# CONFIG_USB_OXU210HP_HCD is not set
+# CONFIG_USB_ISP116X_HCD is not set
+# CONFIG_USB_ISP1362_HCD is not set
+# CONFIG_USB_FUSBH200_HCD is not set
+# CONFIG_USB_FOTG210_HCD is not set
+# CONFIG_USB_MAX3421_HCD is not set
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PCI=y
+CONFIG_USB_OHCI_HCD_PLATFORM=y
+# CONFIG_USB_UHCI_HCD is not set
+# CONFIG_USB_SL811_HCD is not set
+# CONFIG_USB_R8A66597_HCD is not set
+# CONFIG_USB_HCD_TEST_MODE is not set
+
+#
+# USB Device Class drivers
+#
+# CONFIG_USB_ACM is not set
+# CONFIG_USB_PRINTER is not set
+# CONFIG_USB_WDM is not set
+# CONFIG_USB_TMC is not set
+
+#
+# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
+#
+
+#
+# also be needed; see USB_STORAGE Help for more info
+#
+CONFIG_USB_STORAGE=y
+# CONFIG_USB_STORAGE_DEBUG is not set
+# CONFIG_USB_STORAGE_REALTEK is not set
+# CONFIG_USB_STORAGE_DATAFAB is not set
+# CONFIG_USB_STORAGE_FREECOM is not set
+# CONFIG_USB_STORAGE_ISD200 is not set
+# CONFIG_USB_STORAGE_USBAT is not set
+# CONFIG_USB_STORAGE_SDDR09 is not set
+# CONFIG_USB_STORAGE_SDDR55 is not set
+# CONFIG_USB_STORAGE_JUMPSHOT is not set
+# CONFIG_USB_STORAGE_ALAUDA is not set
+# CONFIG_USB_STORAGE_KARMA is not set
+# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
+# CONFIG_USB_STORAGE_ENE_UB6250 is not set
+# CONFIG_USB_UAS is not set
+
+#
+# USB Imaging devices
+#
+# CONFIG_USB_MDC800 is not set
+# CONFIG_USB_MICROTEK is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_USB_MUSB_HDRC is not set
+CONFIG_USB_DWC3=y
+CONFIG_USB_DWC3_HOST=y
+
+#
+# Platform Glue Driver Support
+#
+CONFIG_USB_DWC3_PCI=y
+
+#
+# Debugging features
+#
+# CONFIG_USB_DWC3_DEBUG is not set
+# CONFIG_USB_DWC2 is not set
+# CONFIG_USB_CHIPIDEA is not set
+CONFIG_USB_ISP1760=y
+CONFIG_USB_ISP1760_HCD=y
+CONFIG_USB_ISP1760_HOST_ROLE=y
+
+#
+# USB port drivers
+#
+# CONFIG_USB_SERIAL is not set
+
+#
+# USB Miscellaneous drivers
+#
+# CONFIG_USB_EMI62 is not set
+# CONFIG_USB_EMI26 is not set
+# CONFIG_USB_ADUTUX is not set
+# CONFIG_USB_SEVSEG is not set
+# CONFIG_USB_RIO500 is not set
+# CONFIG_USB_LEGOTOWER is not set
+# CONFIG_USB_LCD is not set
+# CONFIG_USB_LED is not set
+# CONFIG_USB_CYPRESS_CY7C63 is not set
+# CONFIG_USB_CYTHERM is not set
+# CONFIG_USB_IDMOUSE is not set
+# CONFIG_USB_FTDI_ELAN is not set
+# CONFIG_USB_APPLEDISPLAY is not set
+# CONFIG_USB_SISUSBVGA is not set
+# CONFIG_USB_LD is not set
+# CONFIG_USB_TRANCEVIBRATOR is not set
+# CONFIG_USB_IOWARRIOR is not set
+# CONFIG_USB_TEST is not set
+# CONFIG_USB_EHSET_TEST_FIXTURE is not set
+# CONFIG_USB_ISIGHTFW is not set
+# CONFIG_USB_YUREX is not set
+# CONFIG_USB_EZUSB_FX2 is not set
+# CONFIG_USB_HSIC_USB3503 is not set
+# CONFIG_USB_LINK_LAYER_TEST is not set
+
+#
+# USB Physical Layer drivers
+#
+# CONFIG_USB_PHY is not set
+# CONFIG_NOP_USB_XCEIV is not set
+# CONFIG_USB_GPIO_VBUS is not set
+# CONFIG_USB_ISP1301 is not set
+CONFIG_USB_ULPI=y
+CONFIG_USB_ULPI_VIEWPORT=y
+# CONFIG_USB_GADGET is not set
+# CONFIG_USB_LED_TRIG is not set
+# CONFIG_UWB is not set
+CONFIG_MMC=y
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_CLKGATE is not set
+
+#
+# MMC/SD/SDIO Card Drivers
+#
+CONFIG_MMC_BLOCK=y
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_BLOCK_BOUNCE=y
+# CONFIG_SDIO_UART is not set
+# CONFIG_MMC_TEST is not set
+
+#
+# MMC/SD/SDIO Host Controller Drivers
+#
+CONFIG_MMC_ARMMMCI=y
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_SDHCI_IO_ACCESSORS=y
+# CONFIG_MMC_SDHCI_PCI is not set
+# CONFIG_MMC_SDHCI_ACPI is not set
+CONFIG_MMC_SDHCI_PLTFM=y
+# CONFIG_MMC_SDHCI_OF_ARASAN is not set
+CONFIG_MMC_SDHCI_OF_ESDHC=y
+# CONFIG_MMC_SDHCI_F_SDH30 is not set
+# CONFIG_MMC_TIFM_SD is not set
+CONFIG_MMC_SPI=y
+# CONFIG_MMC_CB710 is not set
+# CONFIG_MMC_VIA_SDMMC is not set
+# CONFIG_MMC_DW is not set
+# CONFIG_MMC_VUB300 is not set
+# CONFIG_MMC_USHC is not set
+# CONFIG_MMC_USDHI6ROL0 is not set
+# CONFIG_MMC_TOSHIBA_PCI is not set
+# CONFIG_MEMSTICK is not set
+CONFIG_NEW_LEDS=y
+CONFIG_LEDS_CLASS=y
+# CONFIG_LEDS_CLASS_FLASH is not set
+
+#
+# LED drivers
+#
+# CONFIG_LEDS_LM3530 is not set
+# CONFIG_LEDS_LM3642 is not set
+# CONFIG_LEDS_GPIO is not set
+# CONFIG_LEDS_LP3944 is not set
+# CONFIG_LEDS_LP5521 is not set
+# CONFIG_LEDS_LP5523 is not set
+# CONFIG_LEDS_LP5562 is not set
+# CONFIG_LEDS_LP8501 is not set
+# CONFIG_LEDS_LP8860 is not set
+# CONFIG_LEDS_PCA955X is not set
+# CONFIG_LEDS_PCA963X is not set
+# CONFIG_LEDS_DAC124S085 is not set
+# CONFIG_LEDS_BD2802 is not set
+# CONFIG_LEDS_INTEL_SS4200 is not set
+# CONFIG_LEDS_LT3593 is not set
+# CONFIG_LEDS_TCA6507 is not set
+# CONFIG_LEDS_LM355x is not set
+
+#
+# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
+#
+# CONFIG_LEDS_BLINKM is not set
+# CONFIG_LEDS_SYSCON is not set
+# CONFIG_LEDS_PM8941_WLED is not set
+
+#
+# LED Triggers
+#
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_TIMER=y
+# CONFIG_LEDS_TRIGGER_ONESHOT is not set
+# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
+# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
+# CONFIG_LEDS_TRIGGER_CPU is not set
+# CONFIG_LEDS_TRIGGER_GPIO is not set
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
+
+#
+# iptables trigger is under Netfilter config (LED target)
+#
+# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
+# CONFIG_LEDS_TRIGGER_CAMERA is not set
+# CONFIG_LEDS_TRIGGER_MORSE is not set
+CONFIG_LEDS_TRIGGER_NETDEV=y
+# CONFIG_LEDS_TRIGGER_USBDEV is not set
+# CONFIG_ACCESSIBILITY is not set
+# CONFIG_INFINIBAND is not set
+CONFIG_RTC_LIB=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_HCTOSYS=y
+CONFIG_RTC_SYSTOHC=y
+CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
+# CONFIG_RTC_DEBUG is not set
+
+#
+# RTC interfaces
+#
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_DEV=y
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+# CONFIG_RTC_DRV_TEST is not set
+
+#
+# I2C RTC drivers
+#
+# CONFIG_RTC_DRV_ABB5ZES3 is not set
+# CONFIG_RTC_DRV_ABX80X is not set
+# CONFIG_RTC_DRV_DS1307 is not set
+# CONFIG_RTC_DRV_DS1374 is not set
+# CONFIG_RTC_DRV_DS1672 is not set
+# CONFIG_RTC_DRV_DS3232 is not set
+# CONFIG_RTC_DRV_HYM8563 is not set
+# CONFIG_RTC_DRV_MAX6900 is not set
+# CONFIG_RTC_DRV_RS5C372 is not set
+# CONFIG_RTC_DRV_ISL1208 is not set
+# CONFIG_RTC_DRV_ISL12022 is not set
+# CONFIG_RTC_DRV_ISL12057 is not set
+# CONFIG_RTC_DRV_X1205 is not set
+# CONFIG_RTC_DRV_PCF2127 is not set
+# CONFIG_RTC_DRV_PCF8523 is not set
+# CONFIG_RTC_DRV_PCF8563 is not set
+# CONFIG_RTC_DRV_PCF85063 is not set
+# CONFIG_RTC_DRV_PCF8583 is not set
+# CONFIG_RTC_DRV_M41T80 is not set
+# CONFIG_RTC_DRV_BQ32K is not set
+# CONFIG_RTC_DRV_S35390A is not set
+# CONFIG_RTC_DRV_FM3130 is not set
+# CONFIG_RTC_DRV_RX8581 is not set
+# CONFIG_RTC_DRV_RX8025 is not set
+# CONFIG_RTC_DRV_EM3027 is not set
+# CONFIG_RTC_DRV_RV3029C2 is not set
+# CONFIG_RTC_DRV_PT7C4338 is not set
+
+#
+# SPI RTC drivers
+#
+# CONFIG_RTC_DRV_M41T93 is not set
+# CONFIG_RTC_DRV_M41T94 is not set
+# CONFIG_RTC_DRV_DS1305 is not set
+# CONFIG_RTC_DRV_DS1343 is not set
+# CONFIG_RTC_DRV_DS1347 is not set
+# CONFIG_RTC_DRV_DS1390 is not set
+# CONFIG_RTC_DRV_MAX6902 is not set
+# CONFIG_RTC_DRV_R9701 is not set
+# CONFIG_RTC_DRV_RS5C348 is not set
+# CONFIG_RTC_DRV_DS3234 is not set
+# CONFIG_RTC_DRV_PCF2123 is not set
+# CONFIG_RTC_DRV_RX4581 is not set
+# CONFIG_RTC_DRV_MCP795 is not set
+
+#
+# Platform RTC drivers
+#
+# CONFIG_RTC_DRV_DS1286 is not set
+# CONFIG_RTC_DRV_DS1511 is not set
+# CONFIG_RTC_DRV_DS1553 is not set
+# CONFIG_RTC_DRV_DS1685_FAMILY is not set
+# CONFIG_RTC_DRV_DS1742 is not set
+# CONFIG_RTC_DRV_DS2404 is not set
+CONFIG_RTC_DRV_EFI=y
+# CONFIG_RTC_DRV_STK17TA8 is not set
+# CONFIG_RTC_DRV_M48T86 is not set
+# CONFIG_RTC_DRV_M48T35 is not set
+# CONFIG_RTC_DRV_M48T59 is not set
+# CONFIG_RTC_DRV_MSM6242 is not set
+# CONFIG_RTC_DRV_BQ4802 is not set
+# CONFIG_RTC_DRV_RP5C01 is not set
+# CONFIG_RTC_DRV_V3020 is not set
+# CONFIG_RTC_DRV_RTC7301 is not set
+
+#
+# on-CPU RTC drivers
+#
+# CONFIG_RTC_DRV_PL030 is not set
+# CONFIG_RTC_DRV_PL031 is not set
+# CONFIG_RTC_DRV_SNVS is not set
+CONFIG_RTC_DRV_XGENE=y
+
+#
+# HID Sensor RTC drivers
+#
+CONFIG_DMADEVICES=y
+# CONFIG_DMADEVICES_DEBUG is not set
+
+#
+# DMA Devices
+#
+# CONFIG_AMBA_PL08X is not set
+# CONFIG_DW_DMAC is not set
+# CONFIG_DW_DMAC_PCI is not set
+# CONFIG_HSU_DMA_PCI is not set
+# CONFIG_PL330_DMA is not set
+# CONFIG_FSL_EDMA is not set
+CONFIG_DMA_ENGINE=y
+CONFIG_DMA_ACPI=y
+CONFIG_DMA_OF=y
+
+#
+# DMA Clients
+#
+# CONFIG_ASYNC_TX_DMA is not set
+# CONFIG_DMATEST is not set
+# CONFIG_AUXDISPLAY is not set
+# CONFIG_UIO is not set
+# CONFIG_VFIO is not set
+# CONFIG_VIRT_DRIVERS is not set
+CONFIG_VIRTIO=y
+
+#
+# Virtio drivers
+#
+# CONFIG_VIRTIO_PCI is not set
+# CONFIG_VIRTIO_BALLOON is not set
+CONFIG_VIRTIO_MMIO=y
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+
+#
+# Microsoft Hyper-V guest support
+#
+CONFIG_STAGING=y
+# CONFIG_COMEDI is not set
+# CONFIG_RTL8192U is not set
+# CONFIG_RTLLIB is not set
+# CONFIG_R8712U is not set
+# CONFIG_R8188EU is not set
+# CONFIG_RTS5208 is not set
+# CONFIG_FB_SM7XX is not set
+# CONFIG_FB_SM750 is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_FT1000 is not set
+
+#
+# Speakup console speech
+#
+# CONFIG_STAGING_MEDIA is not set
+
+#
+# Android
+#
+# CONFIG_USB_WPAN_HCD is not set
+# CONFIG_WIMAX_GDM72XX is not set
+# CONFIG_LTE_GDM724X is not set
+# CONFIG_MTD_SPINAND_MT29F is not set
+# CONFIG_LUSTRE_FS is not set
+# CONFIG_DGNC is not set
+# CONFIG_DGAP is not set
+# CONFIG_GS_FPGABOOT is not set
+# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
+# CONFIG_FB_TFT is not set
+# CONFIG_I2O is not set
+CONFIG_FSL_MC_BUS=y
+CONFIG_FSL_DPA=y
+
+#
+# Freescale Datapath QMan/BMan options
+#
+# CONFIG_FSL_DPA_CHECKING is not set
+CONFIG_FSL_DPA_CAN_WAIT=y
+CONFIG_FSL_DPA_CAN_WAIT_SYNC=y
+CONFIG_FSL_DPA_PIRQ_FAST=y
+CONFIG_FSL_DPA_PIRQ_SLOW=y
+CONFIG_FSL_DPA_PORTAL_SHARE=y
+CONFIG_FSL_BMAN=y
+CONFIG_FSL_BMAN_CONFIG=y
+# CONFIG_FSL_BMAN_TEST is not set
+CONFIG_FSL_BMAN_DEBUGFS=y
+CONFIG_FSL_QMAN=y
+CONFIG_FSL_QMAN_POLL_LIMIT=32
+CONFIG_FSL_QMAN_CONFIG=y
+# CONFIG_FSL_QMAN_TEST is not set
+CONFIG_FSL_QMAN_DEBUGFS=y
+CONFIG_FSL_QMAN_FQD_SZ=10
+CONFIG_FSL_QMAN_PFDR_SZ=13
+CONFIG_FSL_QMAN_CI_SCHED_CFG_SRCCIV=4
+CONFIG_FSL_QMAN_CI_SCHED_CFG_SRQ_W=3
+CONFIG_FSL_QMAN_CI_SCHED_CFG_RW_W=2
+CONFIG_FSL_QMAN_CI_SCHED_CFG_BMAN_W=2
+CONFIG_FSL_QMAN_PIRQ_DQRR_ITHRESH=12
+CONFIG_FSL_QMAN_PIRQ_MR_ITHRESH=4
+CONFIG_FSL_QMAN_PIRQ_IPERIOD=100
+CONFIG_FSL_QMAN_FQ_LOOKUP=y
+CONFIG_QMAN_CEETM_UPDATE_PERIOD=1000
+CONFIG_FSL_QMAN_INIT_TIMEOUT=10
+CONFIG_CLKDEV_LOOKUP=y
+CONFIG_HAVE_CLK_PREPARE=y
+CONFIG_COMMON_CLK=y
+
+#
+# Common Clock Framework
+#
+CONFIG_COMMON_CLK_VERSATILE=y
+CONFIG_CLK_SP810=y
+CONFIG_CLK_VEXPRESS_OSC=y
+# CONFIG_COMMON_CLK_SI5351 is not set
+# CONFIG_COMMON_CLK_SI570 is not set
+CONFIG_CLK_QORIQ=y
+CONFIG_COMMON_CLK_XGENE=y
+# CONFIG_COMMON_CLK_PXA is not set
+# CONFIG_COMMON_CLK_CDCE706 is not set
+
+#
+# Hardware Spinlock drivers
+#
+
+#
+# Clock Source drivers
+#
+CONFIG_CLKSRC_OF=y
+CONFIG_CLKSRC_MMIO=y
+CONFIG_ARM_ARCH_TIMER=y
+CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
+# CONFIG_ATMEL_PIT is not set
+# 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_API=y
+CONFIG_IOMMU_SUPPORT=y
+
+#
+# Generic IOMMU Pagetable Support
+#
+CONFIG_IOMMU_IO_PGTABLE=y
+CONFIG_IOMMU_IO_PGTABLE_LPAE=y
+# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
+CONFIG_OF_IOMMU=y
+CONFIG_ARM_SMMU=y
+
+#
+# Remoteproc drivers
+#
+# CONFIG_STE_MODEM_RPROC is not set
+
+#
+# Rpmsg drivers
+#
+
+#
+# SOC (System On Chip) specific Drivers
+#
+# CONFIG_SOC_TI is not set
+# CONFIG_PM_DEVFREQ is not set
+# CONFIG_EXTCON is not set
+CONFIG_MEMORY=y
+CONFIG_FSL_IFC=y
+# CONFIG_IIO is not set
+# CONFIG_VME_BUS is not set
+# CONFIG_PWM is not set
+CONFIG_IRQCHIP=y
+CONFIG_ARM_GIC=y
+CONFIG_ARM_GIC_V2M=y
+CONFIG_ARM_GIC_V3=y
+CONFIG_ARM_GIC_V3_ITS=y
+CONFIG_LS1_MSI=y
+# CONFIG_IPACK_BUS is not set
+# CONFIG_RESET_CONTROLLER is not set
+# CONFIG_FMC is not set
+
+#
+# PHY Subsystem
+#
+CONFIG_GENERIC_PHY=y
+# CONFIG_BCM_KONA_USB2_PHY is not set
+CONFIG_PHY_XGENE=y
+# CONFIG_POWERCAP is not set
+# CONFIG_MCB is not set
+CONFIG_RAS=y
+# CONFIG_THUNDERBOLT is not set
+
+#
+# Android
+#
+# CONFIG_ANDROID is not set
+
+#
+# Firmware Drivers
+#
+# CONFIG_FIRMWARE_MEMMAP is not set
+CONFIG_DMIID=y
+# CONFIG_DMI_SYSFS is not set
+
+#
+# EFI (Extensible Firmware Interface) Support
+#
+# CONFIG_EFI_VARS is not set
+CONFIG_EFI_PARAMS_FROM_FDT=y
+CONFIG_EFI_RUNTIME_WRAPPERS=y
+CONFIG_EFI_ARMSTUB=y
+CONFIG_ACPI=y
+CONFIG_ACPI_GENERIC_GSI=y
+# CONFIG_ACPI_PROCFS_POWER is not set
+# CONFIG_ACPI_EC_DEBUGFS is not set
+# CONFIG_ACPI_DOCK is not set
+# CONFIG_ACPI_CUSTOM_DSDT is not set
+# CONFIG_ACPI_DEBUG is not set
+# CONFIG_ACPI_PCI_SLOT is not set
+# CONFIG_ACPI_CONTAINER is not set
+# CONFIG_ACPI_HED is not set
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y
+# CONFIG_PMIC_OPREGION is not set
+
+#
+# File systems
+#
+CONFIG_DCACHE_WORD_ACCESS=y
+CONFIG_EXT2_FS=y
+# CONFIG_EXT2_FS_XATTR is not set
+CONFIG_EXT3_FS=y
+CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
+CONFIG_EXT3_FS_XATTR=y
+# CONFIG_EXT3_FS_POSIX_ACL is not set
+# CONFIG_EXT3_FS_SECURITY is not set
+CONFIG_EXT4_FS=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_JBD=y
+# CONFIG_JBD_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_BTRFS_FS is not set
+# CONFIG_NILFS2_FS is not set
+# CONFIG_F2FS_FS is not set
+# CONFIG_YAFFS_FS is not set
+# CONFIG_FS_DAX is not set
+# CONFIG_FS_POSIX_ACL is not set
+CONFIG_FILE_LOCKING=y
+# CONFIG_DIRECT_IO is not set
+CONFIG_FSNOTIFY=y
+CONFIG_DNOTIFY=y
+CONFIG_INOTIFY_USER=y
+# CONFIG_FANOTIFY is not set
+CONFIG_QUOTA=y
+# CONFIG_QUOTA_NETLINK_INTERFACE is not set
+CONFIG_PRINT_QUOTA_WARNING=y
+# CONFIG_QUOTA_DEBUG is not set
+# CONFIG_QFMT_V1 is not set
+# CONFIG_QFMT_V2 is not set
+CONFIG_QUOTACTL=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_FUSE_FS=y
+CONFIG_CUSE=y
+CONFIG_OVERLAY_FS=y
+
+#
+# Caches
+#
+# CONFIG_FSCACHE is not set
+
+#
+# CD-ROM/DVD Filesystems
+#
+# CONFIG_ISO9660_FS is not set
+# CONFIG_UDF_FS is not set
+
+#
+# DOS/FAT/NT Filesystems
+#
+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_NTFS_FS is not set
+
+#
+# Pseudo filesystems
+#
+CONFIG_PROC_FS=y
+# CONFIG_PROC_KCORE is not set
+CONFIG_PROC_SYSCTL=y
+# CONFIG_PROC_PAGE_MONITOR is not set
+CONFIG_PROC_STRIPPED=y
+CONFIG_KERNFS=y
+CONFIG_SYSFS=y
+CONFIG_TMPFS=y
+# CONFIG_TMPFS_POSIX_ACL is not set
+CONFIG_TMPFS_XATTR=y
+CONFIG_HUGETLBFS=y
+CONFIG_HUGETLB_PAGE=y
+# CONFIG_CONFIGFS_FS is not set
+CONFIG_EFIVAR_FS=m
+CONFIG_MISC_FILESYSTEMS=y
+# 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=y
+CONFIG_JFFS2_FS_DEBUG=0
+CONFIG_JFFS2_FS_WRITEBUFFER=y
+# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
+# CONFIG_JFFS2_SUMMARY is not set
+# CONFIG_JFFS2_FS_XATTR is not set
+# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
+CONFIG_JFFS2_ZLIB=y
+# CONFIG_JFFS2_LZO is not set
+# CONFIG_JFFS2_LZMA is not set
+CONFIG_JFFS2_RTIME=y
+# CONFIG_JFFS2_RUBIN is not set
+# CONFIG_LOGFS is not set
+# CONFIG_CRAMFS is not set
+CONFIG_SQUASHFS=y
+CONFIG_SQUASHFS_FILE_CACHE=y
+# CONFIG_SQUASHFS_FILE_DIRECT is not set
+CONFIG_SQUASHFS_DECOMP_SINGLE=y
+# CONFIG_SQUASHFS_DECOMP_MULTI is not set
+# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
+# CONFIG_SQUASHFS_XATTR is not set
+CONFIG_SQUASHFS_ZLIB=y
+# CONFIG_SQUASHFS_LZ4 is not set
+# CONFIG_SQUASHFS_LZO is not set
+# CONFIG_SQUASHFS_XZ is not set
+# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
+# CONFIG_SQUASHFS_EMBEDDED is not set
+CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
+# 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=y
+# CONFIG_NFS_SWAP is not set
+# CONFIG_NFS_V4_1 is not set
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+CONFIG_NFS_USE_KERNEL_DNS=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_GSS=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 is not set
+# 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 is not set
+CONFIG_KVM_COMPAT=y
+# CONFIG_VIRTUALIZATION is not set
+
+#
+# Kernel hacking
+#
+
+#
+# printk and dmesg options
+#
+CONFIG_PRINTK_TIME=y
+CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
+# CONFIG_BOOT_PRINTK_DELAY is not set
+# CONFIG_DYNAMIC_DEBUG is not set
+
+#
+# Compile-time checks and compiler options
+#
+CONFIG_DEBUG_INFO=y
+CONFIG_DEBUG_INFO_REDUCED=y
+# CONFIG_DEBUG_INFO_SPLIT is not set
+# CONFIG_DEBUG_INFO_DWARF4 is not set
+# CONFIG_GDB_SCRIPTS is not set
+CONFIG_ENABLE_WARN_DEPRECATED=y
+# CONFIG_ENABLE_MUST_CHECK is not set
+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_ARCH_WANT_FRAME_POINTERS=y
+CONFIG_FRAME_POINTER=y
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+CONFIG_MAGIC_SYSRQ=y
+CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
+CONFIG_DEBUG_KERNEL=y
+
+#
+# Memory Debugging
+#
+# CONFIG_PAGE_EXTENSION is not set
+# CONFIG_DEBUG_PAGEALLOC 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 is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_DEBUG_SHIRQ is not set
+
+#
+# Debug Lockups and Hangs
+#
+# CONFIG_LOCKUP_DETECTOR is not set
+# CONFIG_DETECT_HUNG_TASK 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_SCHEDSTATS is not set
+# CONFIG_SCHED_STACK_END_CHECK is not set
+# CONFIG_DEBUG_TIMEKEEPING is not set
+# CONFIG_TIMER_STATS is not set
+
+#
+# Lock Debugging (spinlocks, mutexes, etc...)
+#
+# 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_HAVE_DEBUG_BUGVERBOSE=y
+# CONFIG_DEBUG_BUGVERBOSE is not set
+# 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
+
+#
+# RCU Debugging
+#
+# CONFIG_PROVE_RCU is not set
+# CONFIG_SPARSE_RCU_POINTER is not set
+# CONFIG_TORTURE_TEST is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+# CONFIG_RCU_CPU_STALL_INFO is not set
+# CONFIG_RCU_TRACE 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_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
+
+#
+# Runtime Testing
+#
+# 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=y
+# CONFIG_TEST_HEXDUMP is not set
+# CONFIG_TEST_STRING_HELPERS is not set
+# CONFIG_TEST_KSTRTOX is not set
+# CONFIG_TEST_RHASHTABLE 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_SAMPLES is not set
+CONFIG_HAVE_ARCH_KGDB=y
+# CONFIG_KGDB is not set
+# CONFIG_ARM64_PTDUMP is not set
+# CONFIG_STRICT_DEVMEM is not set
+# CONFIG_PID_IN_CONTEXTIDR is not set
+# CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET is not set
+# CONFIG_DEBUG_SET_MODULE_RONX is not set
+# CONFIG_DEBUG_RODATA is not set
+# CONFIG_CORESIGHT is not set
+
+#
+# Security options
+#
+CONFIG_KEYS=y
+# CONFIG_PERSISTENT_KEYRINGS is not set
+# CONFIG_BIG_KEYS is not set
+# CONFIG_ENCRYPTED_KEYS is not set
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+# CONFIG_SECURITY is not set
+# CONFIG_SECURITYFS is not set
+CONFIG_DEFAULT_SECURITY_DAC=y
+CONFIG_DEFAULT_SECURITY=""
+CONFIG_CRYPTO=y
+
+#
+# Crypto core or helper
+#
+CONFIG_CRYPTO_ALGAPI=y
+CONFIG_CRYPTO_ALGAPI2=y
+# CONFIG_CRYPTO_AEAD is not set
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLKCIPHER2=y
+CONFIG_CRYPTO_HASH=y
+CONFIG_CRYPTO_HASH2=y
+# CONFIG_CRYPTO_RNG is not set
+CONFIG_CRYPTO_RNG2=y
+# CONFIG_CRYPTO_MANAGER is not set
+# CONFIG_CRYPTO_MANAGER2 is not set
+# CONFIG_CRYPTO_USER is not set
+# CONFIG_CRYPTO_GF128MUL is not set
+# CONFIG_CRYPTO_NULL is not set
+# CONFIG_CRYPTO_PCRYPT is not set
+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
+
+#
+# Authenticated Encryption with Associated Data
+#
+# CONFIG_CRYPTO_CCM is not set
+# CONFIG_CRYPTO_GCM is not set
+# CONFIG_CRYPTO_SEQIV is not set
+
+#
+# Block modes
+#
+# CONFIG_CRYPTO_CBC is not set
+# CONFIG_CRYPTO_CTR is not set
+# 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
+
+#
+# Hash modes
+#
+# CONFIG_CRYPTO_CMAC is not set
+# CONFIG_CRYPTO_HMAC is not set
+# CONFIG_CRYPTO_XCBC is not set
+# CONFIG_CRYPTO_VMAC is not set
+
+#
+# Digest
+#
+CONFIG_CRYPTO_CRC32C=y
+# CONFIG_CRYPTO_CRC32 is not set
+# CONFIG_CRYPTO_CRCT10DIF is not set
+# CONFIG_CRYPTO_GHASH 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 is not set
+# CONFIG_CRYPTO_SHA512 is not set
+# CONFIG_CRYPTO_TGR192 is not set
+# CONFIG_CRYPTO_WP512 is not set
+
+#
+# Ciphers
+#
+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 is not set
+# CONFIG_CRYPTO_FCRYPT is not set
+# CONFIG_CRYPTO_KHAZAD is not set
+# CONFIG_CRYPTO_SALSA20 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
+
+#
+# Compression
+#
+# CONFIG_CRYPTO_DEFLATE is not set
+# CONFIG_CRYPTO_ZLIB is not set
+# CONFIG_CRYPTO_LZO is not set
+# CONFIG_CRYPTO_LZ4 is not set
+# CONFIG_CRYPTO_LZ4HC is not set
+# CONFIG_CRYPTO_XZ is not set
+
+#
+# Random Number Generation
+#
+# CONFIG_CRYPTO_ANSI_CPRNG is not set
+# CONFIG_CRYPTO_DRBG_MENU is not set
+# CONFIG_CRYPTO_USER_API_HASH is not set
+# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
+# CONFIG_CRYPTO_USER_API_RNG is not set
+# CONFIG_CRYPTO_HW is not set
+# CONFIG_ASYMMETRIC_KEY_TYPE is not set
+
+#
+# OCF Configuration
+#
+# CONFIG_OCF_OCF is not set
+# CONFIG_ARM64_CRYPTO is not set
+# CONFIG_BINARY_PRINTF is not set
+
+#
+# Library routines
+#
+CONFIG_BITREVERSE=y
+CONFIG_HAVE_ARCH_BITREVERSE=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 is not set
+CONFIG_CRC16=y
+# CONFIG_CRC_T10DIF is not set
+CONFIG_CRC_ITU_T=y
+CONFIG_CRC32=y
+# CONFIG_CRC32_SELFTEST is not set
+# CONFIG_CRC32_SLICEBY8 is not set
+# CONFIG_CRC32_SLICEBY4 is not set
+CONFIG_CRC32_SARWATE=y
+# CONFIG_CRC32_BIT is not set
+CONFIG_CRC7=y
+# CONFIG_LIBCRC32C is not set
+# CONFIG_CRC8 is not set
+CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y
+# CONFIG_RANDOM32_SELFTEST is not set
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZLIB_DEFLATE=y
+CONFIG_LZO_COMPRESS=y
+CONFIG_LZO_DECOMPRESS=y
+# CONFIG_LZ4_COMPRESS is not set
+# CONFIG_LZ4HC_COMPRESS is not set
+# CONFIG_LZ4_DECOMPRESS is not set
+CONFIG_XZ_DEC=y
+# CONFIG_XZ_DEC_X86 is not set
+# CONFIG_XZ_DEC_POWERPC is not set
+# CONFIG_XZ_DEC_IA64 is not set
+# CONFIG_XZ_DEC_ARM is not set
+# CONFIG_XZ_DEC_ARMTHUMB is not set
+# CONFIG_XZ_DEC_SPARC is not set
+# CONFIG_XZ_DEC_BCJ is not set
+# CONFIG_XZ_DEC_TEST is not set
+CONFIG_DECOMPRESS_GZIP=y
+CONFIG_GENERIC_ALLOCATOR=y
+CONFIG_TEXTSEARCH=y
+# CONFIG_TEXTSEARCH_KMP is not set
+# CONFIG_TEXTSEARCH_BM is not set
+# CONFIG_TEXTSEARCH_FSM is not set
+CONFIG_ASSOCIATIVE_ARRAY=y
+CONFIG_HAS_IOMEM=y
+CONFIG_HAS_IOPORT_MAP=y
+CONFIG_HAS_DMA=y
+CONFIG_CPU_RMAP=y
+CONFIG_DQL=y
+CONFIG_GLOB=y
+# CONFIG_GLOB_SELFTEST is not set
+CONFIG_NLATTR=y
+CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
+CONFIG_AVERAGE=y
+# CONFIG_CORDIC is not set
+# CONFIG_DDR is not set
+CONFIG_LIBFDT=y
+CONFIG_OID_REGISTRY=y
+CONFIG_UCS2_STRING=y
+CONFIG_ARCH_HAS_SG_CHAIN=y
diff --git a/target/linux/layerscape-64b/ls1043ardb/target.mk b/target/linux/layerscape-64b/ls1043ardb/target.mk
new file mode 100644
index 0000000..9f2580b
--- /dev/null
+++ b/target/linux/layerscape-64b/ls1043ardb/target.mk
@@ -0,0 +1,16 @@ 
+#
+# Copyright (C) 2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+BOARDNAME += $(SUBTARGET)
+
+# subtarget macros
+# PARTITION_SIZE unit: (M)
+define Subtarget/Default
+	DEVICE_DTS = freescale/fsl-ls1043a-rdb
+	DTB_PARTITION_SIZE = 1
+	KERNEL_PARTITION_SIZE = 5
+	SQUASHFS_PARTITION_SIZE = 54
+endef