df4f41261c
Historically on ARC we started from initramfs-based images because: a) It was much easier to debug especially when toolchain and other components were changing quite dynamically b) It was our usual approach for embedded Linux But now with ARC port of Lede/OpenWRT getting more stable and mature we're ready for more real-life scenarios with FS permanently stored on SD-card. This essentially benefits from ability to setup devices that survive reboots with all settings and extra packages kept in place. Still we keep an ability to build images with initramfs. This allows us to use storage-less simulators for testing still. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: John Crispin <john@phrozen.org>
27 lines
509 B
Makefile
27 lines
509 B
Makefile
#
|
|
# 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:=arc
|
|
CPU_TYPE:=archs
|
|
BOARD:=archs38
|
|
BOARDNAME:=Synopsys DesignWare ARC HS38
|
|
MAINTAINER:=Alexey Brodkin <abrodkin@synopsys.com>
|
|
SUBTARGETS:=sd ramdisk
|
|
|
|
KERNEL_PATCHVER:=4.4
|
|
|
|
DEVICE_TYPE:=developerboard
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
define Target/Description
|
|
Synopsys DesignWare boards
|
|
endef
|
|
|
|
$(eval $(call BuildTarget))
|