* Update buildroot-patches for 2020.11-rc1 buildroot * Update buildroot to 2020.11-rc1 Signed-off-by: Stefan Agner <stefan@agner.ch> * Don't rely on sfdisk --list-free output The --list-free (-F) argument does not allow machine readable mode. And it seems that the output format changes over time (different spacing, using size postfixes instead of raw blocks). Use sfdisk json output and calculate free partition space ourselfs. This works for 2.35 and 2.36 and is more robust since we rely on output which is meant for scripts to parse. * Migrate defconfigs for Buildroot 2020.11-rc1 In particular, rename BR2_TARGET_UBOOT_BOOT_SCRIPT(_SOURCE) to BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT(_SOURCE). * Rebase/remove systemd patches for systemd 246 * Drop apparmor/libapparmor from buildroot-external * hassos-persists: use /run as directory for lockfiles The U-Boot tools use /var/lock by default which is not created any more by systemd by default (it is under tmpfiles legacy.conf, which we no longer install). * Disable systemd-update-done.service The service is not suited for pure read-only systems. In particular the service needs to be able to write a file in /etc and /var. Remove the service. Note: This is a static service and cannot be removed using systemd-preset. * Disable apparmor.service for now The service loads all default profiles. Some might actually cause problems. E.g. the profile for ping seems not to match our setup for /etc/resolv.conf: [85503.634653] audit: type=1400 audit(1605286002.684:236): apparmor="DENIED" operation="open" profile="ping" name="/run/resolv.conf" pid=27585 comm="ping" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
65 lines
2.3 KiB
Makefile
65 lines
2.3 KiB
Makefile
################################################################################
|
|
#
|
|
# qt5tools
|
|
#
|
|
################################################################################
|
|
|
|
QT5TOOLS_VERSION = $(QT5_VERSION)
|
|
QT5TOOLS_SITE = $(QT5_SITE)
|
|
QT5TOOLS_SOURCE = qttools-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5TOOLS_VERSION).tar.xz
|
|
|
|
QT5TOOLS_INSTALL_STAGING = YES
|
|
|
|
# linguist tools compile conditionally on qtHaveModule(qmldevtools-private),
|
|
# but the condition is used only used to decide if lupdate will support
|
|
# parsing qml files (via setting QT_NO_QML define), no linking against
|
|
# target qt5 will happen
|
|
ifeq ($(BR2_PACKAGE_QT5DECLARATIVE),y)
|
|
QT5TOOLS_DEPENDENCIES += qt5declarative
|
|
endif
|
|
|
|
QT5TOOLS_LICENSE = GPL-2.0+ or LGPL-3.0, GPL-3.0 with exception(tools), GFDL-1.3 (docs)
|
|
QT5TOOLS_LICENSE_FILES = LICENSE.GPL2 LICENSE.GPL3 LICENSE.GPL3-EXCEPT LICENSE.LGPL3 LICENSE.FDL
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS) += \
|
|
linguist/lconvert linguist/lrelease linguist/lupdate
|
|
QT5TOOLS_INSTALL_STAGING_DIR_$(BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS) += \
|
|
linguist
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5TOOLS_QDOC_TOOL),y)
|
|
QT5TOOLS_BUILD_DIRS_y += qdoc
|
|
QT5TOOLS_INSTALL_STAGING_DIR_y += qdoc
|
|
QT5TOOLS_DEPENDENCIES += host-clang
|
|
endif
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_PIXELTOOL) += pixeltool
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_PIXELTOOL) += pixeltool
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTDIAG) += qtdiag
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTDIAG) += qtdiag
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTPATHS) += qtpaths
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTPATHS) += qtpaths
|
|
|
|
QT5TOOLS_BUILD_DIRS_$(BR2_PACKAGE_QT5TOOLS_QTPLUGININFO) += qtplugininfo
|
|
QT5TOOLS_INSTALL_TARGET_$(BR2_PACKAGE_QT5TOOLS_QTPLUGININFO) += qtplugininfo
|
|
|
|
define QT5TOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) sub-src-qmake_all
|
|
$(foreach p,$(QT5TOOLS_BUILD_DIRS_y), \
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/$(p)$(sep))
|
|
endef
|
|
|
|
# use install target to copy cmake module files
|
|
define QT5TOOLS_INSTALL_STAGING_CMDS
|
|
$(foreach p,$(QT5TOOLS_INSTALL_STAGING_DIR_y), \
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src/$(p) install$(sep))
|
|
endef
|
|
|
|
define QT5TOOLS_INSTALL_TARGET_CMDS
|
|
$(foreach p,$(QT5TOOLS_INSTALL_TARGET_y), \
|
|
$(INSTALL) -D -m0755 $(@D)/bin/$(p) $(TARGET_DIR)/usr/bin/$(p)$(sep))
|
|
endef
|
|
|
|
$(eval $(qmake-package))
|