2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-12-12 17:37:35 +01:00
|
|
|
#
|
|
|
|
# uboot-tools
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2019-07-08 23:08:29 +02:00
|
|
|
UBOOT_TOOLS_VERSION = 2019.07
|
.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
|
|
|
UBOOT_TOOLS_SOURCE = u-boot-$(UBOOT_TOOLS_VERSION).tar.bz2
|
|
|
|
UBOOT_TOOLS_SITE = ftp://ftp.denx.de/pub/u-boot
|
2017-03-30 15:43:32 +02:00
|
|
|
UBOOT_TOOLS_LICENSE = GPL-2.0+
|
2013-10-22 18:46:40 +02:00
|
|
|
UBOOT_TOOLS_LICENSE_FILES = Licenses/gpl-2.0.txt
|
2016-05-02 13:16:53 +02:00
|
|
|
UBOOT_TOOLS_INSTALL_STAGING = YES
|
2011-07-18 15:22:13 +02:00
|
|
|
|
2015-04-18 08:46:43 +02:00
|
|
|
define UBOOT_TOOLS_CONFIGURE_CMDS
|
|
|
|
mkdir -p $(@D)/include/config
|
|
|
|
touch $(@D)/include/config/auto.conf
|
|
|
|
endef
|
|
|
|
|
2016-06-03 21:35:39 +02:00
|
|
|
UBOOT_TOOLS_MAKE_OPTS = CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2018-08-10 07:37:21 +02:00
|
|
|
HOSTCFLAGS="$(HOST_CFLAGS)" \
|
2016-06-03 21:35:39 +02:00
|
|
|
STRIP=$(TARGET_STRIP)
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT),y)
|
2017-12-01 13:40:20 +01:00
|
|
|
UBOOT_TOOLS_MAKE_OPTS += CONFIG_FIT=y CONFIG_MKIMAGE_DTC_PATH=dtc
|
2016-06-03 21:35:39 +02:00
|
|
|
UBOOT_TOOLS_DEPENDENCIES += dtc
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT),y)
|
2019-03-31 22:20:29 +02:00
|
|
|
UBOOT_TOOLS_MAKE_OPTS += CONFIG_FIT_SIGNATURE=y CONFIG_FIT_SIGNATURE_MAX_SIZE=0x10000000
|
2016-06-03 21:35:39 +02:00
|
|
|
UBOOT_TOOLS_DEPENDENCIES += openssl host-pkgconf
|
|
|
|
endif
|
|
|
|
|
2019-04-10 21:17:57 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_FIT_CHECK_SIGN),y)
|
|
|
|
define UBOOT_TOOLS_INSTALL_FIT_CHECK_SIGN
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/fit_check_sign $(TARGET_DIR)/usr/bin/fit_check_sign
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2011-07-18 15:22:13 +02:00
|
|
|
define UBOOT_TOOLS_BUILD_CMDS
|
2016-06-03 21:35:39 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(UBOOT_TOOLS_MAKE_OPTS) \
|
|
|
|
CROSS_BUILD_TOOLS=y tools-only
|
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(UBOOT_TOOLS_MAKE_OPTS) \
|
2017-11-01 19:53:18 +01:00
|
|
|
envtools no-dot-config-targets=envtools
|
2011-07-18 15:22:13 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE),y)
|
|
|
|
define UBOOT_TOOLS_INSTALL_MKIMAGE
|
2011-12-16 21:08:59 +01:00
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/mkimage $(TARGET_DIR)/usr/bin/mkimage
|
2011-07-18 15:22:13 +02:00
|
|
|
endef
|
2016-06-03 21:35:39 +02:00
|
|
|
endif
|
2011-07-18 15:22:13 +02:00
|
|
|
|
2012-12-20 03:47:17 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE),y)
|
|
|
|
define UBOOT_TOOLS_INSTALL_MKENVIMAGE
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/mkenvimage $(TARGET_DIR)/usr/bin/mkenvimage
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2011-07-18 15:22:13 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV),y)
|
|
|
|
define UBOOT_TOOLS_INSTALL_FWPRINTENV
|
2011-12-16 21:08:59 +01:00
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/env/fw_printenv $(TARGET_DIR)/usr/sbin/fw_printenv
|
2011-07-18 15:22:13 +02:00
|
|
|
ln -sf fw_printenv $(TARGET_DIR)/usr/sbin/fw_setenv
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-02-25 15:19:01 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_UBOOT_TOOLS_DUMPIMAGE),y)
|
|
|
|
define UBOOT_TOOLS_INSTALL_DUMPIMAGE
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/dumpimage $(TARGET_DIR)/usr/sbin/dumpimage
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-05-02 13:16:53 +02:00
|
|
|
define UBOOT_TOOLS_INSTALL_STAGING_CMDS
|
|
|
|
$(INSTALL) -D -m 0755 $(@D)/tools/env/lib.a $(STAGING_DIR)/usr/lib/libubootenv.a
|
|
|
|
$(INSTALL) -D -m 0644 $(@D)/tools/env/fw_env.h $(STAGING_DIR)/usr/include/fw_env.h
|
|
|
|
endef
|
|
|
|
|
2011-07-18 15:22:13 +02:00
|
|
|
define UBOOT_TOOLS_INSTALL_TARGET_CMDS
|
|
|
|
$(UBOOT_TOOLS_INSTALL_MKIMAGE)
|
2012-12-20 03:47:17 +01:00
|
|
|
$(UBOOT_TOOLS_INSTALL_MKENVIMAGE)
|
2011-07-18 15:22:13 +02:00
|
|
|
$(UBOOT_TOOLS_INSTALL_FWPRINTENV)
|
2016-02-25 15:19:01 +01:00
|
|
|
$(UBOOT_TOOLS_INSTALL_DUMPIMAGE)
|
2019-04-10 21:17:57 +02:00
|
|
|
$(UBOOT_TOOLS_INSTALL_FIT_CHECK_SIGN)
|
2011-07-18 15:22:13 +02:00
|
|
|
endef
|
|
|
|
|
2015-04-18 08:46:43 +02:00
|
|
|
define HOST_UBOOT_TOOLS_CONFIGURE_CMDS
|
|
|
|
mkdir -p $(@D)/include/config
|
|
|
|
touch $(@D)/include/config/auto.conf
|
|
|
|
endef
|
|
|
|
|
2016-06-03 21:35:39 +02:00
|
|
|
HOST_UBOOT_TOOLS_MAKE_OPTS = HOSTCC="$(HOSTCC)" \
|
|
|
|
HOSTCFLAGS="$(HOST_CFLAGS)" \
|
|
|
|
HOSTLDFLAGS="$(HOST_LDFLAGS)"
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_HOST_UBOOT_TOOLS_FIT_SUPPORT),y)
|
2017-12-01 13:40:20 +01:00
|
|
|
HOST_UBOOT_TOOLS_MAKE_OPTS += CONFIG_FIT=y CONFIG_MKIMAGE_DTC_PATH=dtc
|
2016-06-03 21:35:39 +02:00
|
|
|
HOST_UBOOT_TOOLS_DEPENDENCIES += host-dtc
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_HOST_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT),y)
|
2019-03-31 22:20:29 +02:00
|
|
|
HOST_UBOOT_TOOLS_MAKE_OPTS += CONFIG_FIT_SIGNATURE=y CONFIG_FIT_SIGNATURE_MAX_SIZE=0x10000000
|
2016-06-03 21:35:39 +02:00
|
|
|
HOST_UBOOT_TOOLS_DEPENDENCIES += host-openssl
|
|
|
|
endif
|
|
|
|
|
2011-07-18 15:22:13 +02:00
|
|
|
define HOST_UBOOT_TOOLS_BUILD_CMDS
|
2016-06-03 21:35:39 +02:00
|
|
|
$(MAKE1) -C $(@D) $(HOST_UBOOT_TOOLS_MAKE_OPTS) tools-only
|
2011-07-18 15:22:13 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_UBOOT_TOOLS_INSTALL_CMDS
|
2017-07-05 13:14:19 +02:00
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/mkimage $(HOST_DIR)/bin/mkimage
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/mkenvimage $(HOST_DIR)/bin/mkenvimage
|
|
|
|
$(INSTALL) -m 0755 -D $(@D)/tools/dumpimage $(HOST_DIR)/bin/dumpimage
|
2011-07-18 15:22:13 +02:00
|
|
|
endef
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(generic-package))
|
2012-07-03 00:06:54 +02:00
|
|
|
$(eval $(host-generic-package))
|
2013-11-07 00:12:35 +01:00
|
|
|
|
|
|
|
# Convenience variables for other mk files that make use of mkimage
|
|
|
|
|
2017-07-05 13:14:19 +02:00
|
|
|
MKIMAGE = $(HOST_DIR)/bin/mkimage
|
2013-11-07 00:12:35 +01:00
|
|
|
|
2015-02-14 10:23:06 +01:00
|
|
|
# mkimage supports arm blackfin m68k microblaze mips mips64 nios2 powerpc ppc sh sparc sparc64 x86
|
|
|
|
# KERNEL_ARCH can be arm64 arc arm blackfin m68k microblaze mips nios2 powerpc sh sparc i386 x86_64 xtensa
|
2013-11-07 00:12:35 +01:00
|
|
|
# For arm64, arc, xtensa we'll just keep KERNEL_ARCH
|
|
|
|
# For mips64, we'll just keep mips
|
|
|
|
# For i386 and x86_64, we need to convert
|
|
|
|
ifeq ($(KERNEL_ARCH),x86_64)
|
|
|
|
MKIMAGE_ARCH = x86
|
|
|
|
else ifeq ($(KERNEL_ARCH),i386)
|
|
|
|
MKIMAGE_ARCH = x86
|
|
|
|
else
|
|
|
|
MKIMAGE_ARCH = $(KERNEL_ARCH)
|
|
|
|
endif
|