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
|
|
|
|
2020-04-19 17:43:00 +02:00
|
|
|
DTC_VERSION = 1.6.0
|
2015-01-13 20:40:01 +01:00
|
|
|
DTC_SOURCE = dtc-$(DTC_VERSION).tar.xz
|
|
|
|
DTC_SITE = https://www.kernel.org/pub/software/utils/dtc
|
2017-03-30 15:43:39 +02:00
|
|
|
DTC_LICENSE = GPL-2.0+ or BSD-2-Clause (library)
|
2019-10-26 20:46:27 +02:00
|
|
|
DTC_LICENSE_FILES = README.license GPL BSD-2-Clause
|
2013-05-09 14:22:58 +02:00
|
|
|
DTC_INSTALL_STAGING = YES
|
package/dtc: needs host-pkgconf unconditionally
Commits 495e757d2 (package/dtc: add optional libyaml dependency) and
e43d9072a (package/dtc: fix build without libyaml), added a conditional
dependency to host-pkgconf, when libyaml is enabled, while commit
56d6dd453 (package/dtc: disable valgrind) explicitly disabled support of
valgrind.
However, presence of libyaml, as well as that of valgrind, *is* detected
by calling pkg-config:
NO_VALGRIND := $(shell $(PKG_CONFIG) --exists valgrind; echo $$?)
NO_YAML := $(shell $(PKG_CONFIG) --exists yaml-0.1; echo $$?)
Passing NO_YAML=1 or NO_VALGRIND=1 do not prevent the tests from being
executed, which would yield messages like:
/bin/sh: 1: /home/ymorin/dev/buildroot/O/host/bin/pkg-config: not found
(note however that, even if the test is executed, the value we pass on
the command line still takes precedence, and the support for either is
properly disabled.)
So, move the dependency on host-pkgconfig out of the condition. Ditto
for the host package.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: Titouan Christophe <titouan.christophe@railnova.eu>
Cc: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-11-03 11:42:06 +01:00
|
|
|
DTC_DEPENDENCIES = host-bison host-flex host-pkgconf
|
|
|
|
HOST_DTC_DEPENDENCIES = host-bison host-flex host-pkgconf
|
2013-05-09 14:22:58 +02:00
|
|
|
|
2018-07-28 15:33:51 +02:00
|
|
|
DTC_MAKE_OPTS = \
|
|
|
|
PREFIX=/usr \
|
2019-07-29 14:16:38 +02:00
|
|
|
NO_PYTHON=1 \
|
|
|
|
NO_VALGRIND=1
|
2018-07-28 15:33:51 +02:00
|
|
|
|
2019-11-03 16:12:57 +01:00
|
|
|
# For the host, we install headers in a special subdirectory to avoid
|
|
|
|
# conflicts with the in-kernel libfdt copy.
|
2018-07-28 15:33:51 +02:00
|
|
|
HOST_DTC_MAKE_OPTS = \
|
|
|
|
PREFIX=$(HOST_DIR) \
|
2019-11-03 16:12:57 +01:00
|
|
|
INCLUDEDIR=$(HOST_DIR)/include/libfdt \
|
2019-07-29 14:16:37 +02:00
|
|
|
NO_PYTHON=1 \
|
2019-07-29 14:16:38 +02:00
|
|
|
NO_VALGRIND=1 \
|
2019-07-29 14:16:37 +02:00
|
|
|
NO_YAML=1
|
2018-07-28 15:33:51 +02:00
|
|
|
|
2019-08-13 20:02:25 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBYAML),y)
|
package/dtc: needs host-pkgconf unconditionally
Commits 495e757d2 (package/dtc: add optional libyaml dependency) and
e43d9072a (package/dtc: fix build without libyaml), added a conditional
dependency to host-pkgconf, when libyaml is enabled, while commit
56d6dd453 (package/dtc: disable valgrind) explicitly disabled support of
valgrind.
However, presence of libyaml, as well as that of valgrind, *is* detected
by calling pkg-config:
NO_VALGRIND := $(shell $(PKG_CONFIG) --exists valgrind; echo $$?)
NO_YAML := $(shell $(PKG_CONFIG) --exists yaml-0.1; echo $$?)
Passing NO_YAML=1 or NO_VALGRIND=1 do not prevent the tests from being
executed, which would yield messages like:
/bin/sh: 1: /home/ymorin/dev/buildroot/O/host/bin/pkg-config: not found
(note however that, even if the test is executed, the value we pass on
the command line still takes precedence, and the support for either is
properly disabled.)
So, move the dependency on host-pkgconfig out of the condition. Ditto
for the host package.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: Titouan Christophe <titouan.christophe@railnova.eu>
Cc: Carlos Santos <unixmania@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-11-03 11:42:06 +01:00
|
|
|
DTC_DEPENDENCIES += libyaml
|
2019-08-13 20:02:25 +02:00
|
|
|
else
|
|
|
|
DTC_MAKE_OPTS += NO_YAML=1
|
|
|
|
endif
|
|
|
|
|
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)
|
|
|
|
|
2019-10-26 10:45:54 +02:00
|
|
|
DTC_LICENSE += , GPL-2.0+ (programs)
|
.mk files: bulk aligment and whitespace cleanup of assignments
The Buildroot coding style defines one space around make assignments and
does not align the assignment symbols.
This patch does a bulk fix of offending packages. The package
infrastructures (or more in general assignments to calculated variable
names, like $(2)_FOO) are not touched.
Alignment of line continuation characters (\) is kept as-is.
The sed command used to do this replacement is:
find * -name "*.mk" | xargs sed -i \
-e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*$#\1 \2#'
-e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*\([^\\]\+\)$#\1 \2 \3#'
-e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*\([^\\ \t]\+\s*\\\)\s*$#\1 \2 \3#'
-e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\(\s*\\\)#\1 \2\3#'
Brief explanation of this command:
^\([A-Z0-9a-z_]\+\) a regular variable at the beginning of the line
\([?:+]\?=\) any assignment character =, :=, ?=, +=
\([^\\]\+\) any string not containing a line continuation
\([^\\ \t]\+\s*\\\) string, optional whitespace, followed by a
line continuation character
\(\s*\\\) optional whitespace, followed by a line
continuation character
Hence, the first subexpression handles empty assignments, the second
handles regular assignments, the third handles regular assignments with
line continuation, and the fourth empty assignments with line
continuation.
This expression was tested on following test text: (initial tab not
included)
FOO = spaces before
FOO = spaces before and after
FOO = tab before
FOO = tab and spaces before
FOO = tab after
FOO = tab and spaces after
FOO = spaces and tab after
FOO = \
FOO = bar \
FOO = bar space \
FOO = \
GENIMAGE_DEPENDENCIES = host-pkgconf libconfuse
FOO += spaces before
FOO ?= spaces before and after
FOO :=
FOO =
FOO =
FOO =
FOO =
$(MAKE1) CROSS_COMPILE=$(TARGET_CROSS) -C
AT91BOOTSTRAP3_DEFCONFIG = \
AXEL_DISABLE_I18N=--i18n=0
After this bulk change, following manual fixups were done:
- fix line continuation alignment in cegui06 and spice (the sed
expression leaves the number of whitespace between the value and line
continuation character intact, but the whitespace before that could have
changed, causing misalignment.
- qt5base was reverted, as this package uses extensive alignment which
actually makes the code more readable.
Finally, the end result was manually reviewed.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Cc: Yann E. Morin <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-10-07 09:06:03 +02:00
|
|
|
DTC_INSTALL_GOAL = install
|
2013-05-09 14:22:59 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_BASH),)
|
|
|
|
DTC_POST_INSTALL_TARGET_HOOKS += DTC_POST_INSTALL_TARGET_RM_DTDIFF
|
|
|
|
endif
|
|
|
|
|
|
|
|
else # $(BR2_PACKAGE_DTC_PROGRAMS) != y
|
|
|
|
|
2015-01-13 20:40:03 +01:00
|
|
|
DTC_INSTALL_GOAL = install-lib
|
2013-05-09 14:22:59 +02:00
|
|
|
|
|
|
|
endif # $(BR2_PACKAGE_DTC_PROGRAMS) != y
|
|
|
|
|
2013-05-09 14:22:58 +02:00
|
|
|
define DTC_BUILD_CMDS
|
2019-07-22 06:21:12 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) EXTRA_CFLAGS="$(TARGET_CFLAGS) -fPIC" -C $(@D) $(DTC_MAKE_OPTS)
|
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
|
2018-07-28 15:33:51 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) $(DTC_MAKE_OPTS) install-lib \
|
2015-01-16 07:37:35 +01:00
|
|
|
install-includes
|
2013-05-09 14:22:58 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define DTC_INSTALL_TARGET_CMDS
|
2018-07-28 15:33:51 +02:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) $(DTC_MAKE_OPTS) $(DTC_INSTALL_GOAL)
|
2013-05-09 14:22:58 +02:00
|
|
|
endef
|
|
|
|
|
2015-10-03 21:44:12 +02:00
|
|
|
# host build
|
|
|
|
define HOST_DTC_BUILD_CMDS
|
2019-07-22 06:21:12 +02:00
|
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) EXTRA_CFLAGS="$(HOST_CFLAGS) -fPIC" -C $(@D) $(HOST_DTC_MAKE_OPTS)
|
2015-10-03 21:44:12 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_DTC_INSTALL_CMDS
|
2018-07-28 15:33:51 +02:00
|
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(HOST_DTC_MAKE_OPTS) install
|
2015-10-03 21:44:12 +02:00
|
|
|
endef
|
|
|
|
|
2013-05-09 14:22:58 +02:00
|
|
|
$(eval $(generic-package))
|
2015-10-03 21:44:12 +02:00
|
|
|
$(eval $(host-generic-package))
|