34 lines
642 B
Makefile
34 lines
642 B
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=arm
|
|
BOARD:=mandolin-pv1c
|
|
BOARDNAME:=mandolin-pv1c
|
|
FEATURES:=fpu usb ext4 display rtc
|
|
MAINTAINER:=Huangshr
|
|
CPU_TYPE:=cortex-a7
|
|
CPU_SUBTYPE:=neon
|
|
|
|
KERNEL_PATCHVER:=4.9
|
|
|
|
DEVICE_TYPE:=developerboard
|
|
|
|
include $(BUILD_DIR)/target.mk
|
|
|
|
define Target/Description
|
|
Build multi-platform images for the ARMv7 instruction set architecture
|
|
endef
|
|
|
|
KERNELNAME:=zImage dtbs
|
|
|
|
ifneq ($(CONFIG_KERNEL_KERNEL_LZO),)
|
|
KERNELNAME:=Image.lzo dtbs
|
|
endif
|
|
|
|
$(eval $(call BuildTarget))
|