mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
6006f73383
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>
26 lines
511 B
Makefile
26 lines
511 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=powerpc
|
|
BOARD:=mpc85xx
|
|
BOARDNAME:=Freescale MPC85xx
|
|
CPU_TYPE:=8540
|
|
FEATURES:=squashfs ramdisk nand
|
|
SUBTARGETS:=p1010 p1020 p2020
|
|
|
|
KERNEL_PATCHVER:=5.10
|
|
|
|
KERNELNAME:=zImage
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += \
|
|
kmod-input-core kmod-input-gpio-keys kmod-button-hotplug \
|
|
kmod-leds-gpio swconfig kmod-ath9k wpad-basic-wolfssl kmod-usb2 \
|
|
uboot-envtools
|
|
|
|
$(eval $(call BuildTarget))
|