43b6d3f059
This is needed for the definition of $(LINUX_DIR). This is used in u-boot.mk to change the device-tree compiler to the dtc used by linux. Without this, the build will use the system dtc. This results in a build failure when a dtc does not exist outside the buildroot. Signed-off-by: Alexandru Gagniuc <alex.g@adaptrum.com>
43 lines
816 B
Makefile
43 lines
816 B
Makefile
#
|
|
# Copyright (C) 2012-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_VERSION:=2017.01
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=omap
|
|
BUILD_DEVICES:=Default
|
|
UBOOT_IMAGE:=u-boot.img MLO
|
|
endef
|
|
|
|
define U-Boot/omap4_panda
|
|
NAME:=Pandaboard
|
|
endef
|
|
|
|
define U-Boot/am335x_evm
|
|
NAME:=AM335x EVM
|
|
endef
|
|
|
|
define U-Boot/omap3_overo
|
|
NAME:=Gumstix Overo
|
|
endef
|
|
|
|
define U-Boot/omap3_beagle
|
|
NAME:=BeagleBoard
|
|
endef
|
|
|
|
UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|