fc03b3aa16
The Cavium OCTEON TX is an ARM 64-bit SoC leveraging CPU cores and periperhals from the Cavium ThunderX SoC. This initial support provides a 4.14 kernel and kernel+initramfs that is bootable on the Gateworks Newport GW630x as well as the Cavium sff8104 reference board. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
27 lines
541 B
Makefile
27 lines
541 B
Makefile
#
|
|
# Copyright (C) 2018 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:=octeontx
|
|
BOARDNAME:=Octeon-TX
|
|
FEATURES:=targz pcie gpio rtc usb
|
|
CFLAGS:=-Os -pipe -fno-caller-saves
|
|
|
|
MAINTAINER:=Tim Harvey <tharvey@gateworks.com>
|
|
|
|
KERNEL_PATCHVER:=4.14
|
|
|
|
define Target/Description
|
|
Build images for Octeon-TX CN80XX/CN81XX based boards
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
KERNELNAME:=Image
|
|
|
|
$(eval $(call BuildTarget))
|