diff options
author | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2022-06-07 13:13:11 +0200 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-06-19 12:31:02 +0200 |
commit | 6006f73383cc7626552175010de23530bdcc8718 (patch) | |
tree | 88449f78349c9f7b899dc0b2790e06eb5bd37cc4 /target | |
parent | 742926e5f5cb2a9e6ee7acc2d2da817dadb75d23 (diff) | |
download | upstream-6006f73383cc7626552175010de23530bdcc8718.tar.gz upstream-6006f73383cc7626552175010de23530bdcc8718.tar.bz2 upstream-6006f73383cc7626552175010de23530bdcc8718.zip |
mpc85xx: enable NAND support for all subtargets
In subtarget p2020, there wasn't enabled nand support, and because of
that there weren't available tools from mtd-utils package, which has
utilities for NAND flash memory even though reference board, which
is the only currently supported device in p2020 subtarget has NAND [1].
All subtargets in mpc85xx has already enabled nand support, let's do it
globally.
[1] https://www.nxp.com/design/qoriq-developer-resources/p2020-reference-design-board:P2020RDB
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/mpc85xx/Makefile | 2 | ||||
-rw-r--r-- | target/linux/mpc85xx/p1010/target.mk | 1 | ||||
-rw-r--r-- | target/linux/mpc85xx/p1020/target.mk | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/target/linux/mpc85xx/Makefile b/target/linux/mpc85xx/Makefile index 6bf096740e..398e578882 100644 --- a/target/linux/mpc85xx/Makefile +++ b/target/linux/mpc85xx/Makefile @@ -8,7 +8,7 @@ ARCH:=powerpc BOARD:=mpc85xx BOARDNAME:=Freescale MPC85xx CPU_TYPE:=8540 -FEATURES:=squashfs ramdisk +FEATURES:=squashfs ramdisk nand SUBTARGETS:=p1010 p1020 p2020 KERNEL_PATCHVER:=5.10 diff --git a/target/linux/mpc85xx/p1010/target.mk b/target/linux/mpc85xx/p1010/target.mk index 12ed78ace1..019536ff1a 100644 --- a/target/linux/mpc85xx/p1010/target.mk +++ b/target/linux/mpc85xx/p1010/target.mk @@ -1,5 +1,4 @@ BOARDNAME:=P1010 -FEATURES+=nand KERNELNAME:=simpleImage.tl-wdr4900-v1 define Target/Description diff --git a/target/linux/mpc85xx/p1020/target.mk b/target/linux/mpc85xx/p1020/target.mk index a25409eebb..000fc64644 100644 --- a/target/linux/mpc85xx/p1020/target.mk +++ b/target/linux/mpc85xx/p1020/target.mk @@ -1,5 +1,4 @@ BOARDNAME:=P1020 -FEATURES+=nand define Target/Description Build firmware images for Freescale P1020 based boards. |