2013-06-06 01:53:30 +02:00
|
|
|
|
################################################################################
|
2013-05-09 14:22:58 +02:00
|
|
|
|
#
|
|
|
|
|
# dtc
|
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
|
################################################################################
|
2013-05-09 14:22:58 +02:00
|
|
|
|
|
|
|
|
|
DTC_VERSION = e4b497f367a3b2ae99cc52089a14a221b13a76ef
|
|
|
|
|
DTC_SITE = git://git.jdl.com/software/dtc.git
|
|
|
|
|
DTC_LICENSE = GPLv2+/BSD-2c
|
|
|
|
|
DTC_LICENSE_FILES = README.license GPL
|
|
|
|
|
DTC_INSTALL_STAGING = YES
|
2013-06-04 02:51:36 +02:00
|
|
|
|
DTC_DEPENDENCIES = host-bison host-flex
|
2013-05-09 14:22:58 +02:00
|
|
|
|
|
2013-05-09 14:22:59 +02:00
|
|
|
|
define DTC_POST_INSTALL_TARGET_RM_DTDIFF
|
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/dtdiff
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_DTC_PROGRAMS),y)
|
|
|
|
|
|
|
|
|
|
DTC_LICENSE += (for the library), GPLv2+ (for the executables)
|
|
|
|
|
# Use default goal to build everything
|
|
|
|
|
DTC_BUILD_GOAL =
|
|
|
|
|
DTC_INSTALL_GOAL = install
|
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH),)
|
|
|
|
|
DTC_POST_INSTALL_TARGET_HOOKS += DTC_POST_INSTALL_TARGET_RM_DTDIFF
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
else # $(BR2_PACKAGE_DTC_PROGRAMS) != y
|
|
|
|
|
|
|
|
|
|
DTC_BUILD_GOAL = libfdt
|
|
|
|
|
# libfdt_install is our own install rule added by our patch
|
|
|
|
|
DTC_INSTALL_GOAL = libfdt_install
|
|
|
|
|
|
|
|
|
|
endif # $(BR2_PACKAGE_DTC_PROGRAMS) != y
|
|
|
|
|
|
2013-05-09 14:22:58 +02:00
|
|
|
|
define DTC_BUILD_CMDS
|
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2013-05-09 14:22:59 +02:00
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
|
$(MAKE) -C $(@D) PREFIX=/usr $(DTC_BUILD_GOAL)
|
2013-05-09 14:22:58 +02:00
|
|
|
|
endef
|
|
|
|
|
|
2013-05-09 14:22:59 +02:00
|
|
|
|
# For staging, only the library is needed
|
2013-05-09 14:22:58 +02:00
|
|
|
|
define DTC_INSTALL_STAGING_CMDS
|
|
|
|
|
$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) PREFIX=/usr libfdt_install
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
define DTC_INSTALL_TARGET_CMDS
|
2013-05-09 14:22:59 +02:00
|
|
|
|
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr $(DTC_INSTALL_GOAL)
|
2013-05-09 14:22:58 +02:00
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|