mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
@@ -5,8 +5,10 @@ config BR2_PACKAGE_RAUC
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_OPENSSL
|
||||
select BR2_PACKAGE_DBUS # run-time dependency
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_SQUASHFS # run-time dependency
|
||||
select BR2_PACKAGE_UBOOT_TOOLS if BR2_TARGET_UBOOT # run-time dependency
|
||||
select BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV if BR2_TARGET_UBOOT
|
||||
help
|
||||
RAUC is the Robust Auto-Update Controller developed by
|
||||
Pengutronix. It supports updating embedded Linux
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Locally calculated, after verifying against
|
||||
# https://github.com/rauc/rauc/releases/download/v1.1/rauc-1.1.tar.xz.asc
|
||||
sha256 e49086da3a72564806963d2309e8e2b255492fb314db61f84c9b4cebece98e3f rauc-1.1.tar.xz
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
|
||||
# https://github.com/rauc/rauc/releases/download/v1.4/rauc-1.4.tar.xz.asc
|
||||
sha256 85aabf214cd93a37f7ad0b3aaad89eb94facf0f3ebf6e2edca945acbca9b0967 rauc-1.4.tar.xz
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RAUC_VERSION = 1.1
|
||||
RAUC_VERSION = 1.4
|
||||
RAUC_SITE = https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)
|
||||
RAUC_SOURCE = rauc-$(RAUC_VERSION).tar.xz
|
||||
RAUC_LICENSE = LGPL-2.1
|
||||
RAUC_LICENSE_FILES = COPYING
|
||||
RAUC_DEPENDENCIES = host-pkgconf openssl libglib2
|
||||
RAUC_DEPENDENCIES = host-pkgconf openssl libglib2 dbus
|
||||
|
||||
ifeq ($(BR2_PACKAGE_RAUC_NETWORK),y)
|
||||
RAUC_CONF_OPTS += --enable-network
|
||||
@@ -30,13 +30,23 @@ ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
||||
RAUC_DEPENDENCIES += systemd
|
||||
endif
|
||||
|
||||
define RAUC_INSTALL_INIT_SYSTEMD
|
||||
mkdir $(TARGET_DIR)/usr/lib/systemd/system/rauc.service.d
|
||||
printf '[Install]\nWantedBy=multi-user.target\n' \
|
||||
>$(TARGET_DIR)/usr/lib/systemd/system/rauc.service.d/buildroot-enable.conf
|
||||
endef
|
||||
|
||||
HOST_RAUC_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-openssl \
|
||||
host-libglib2 \
|
||||
host-squashfs \
|
||||
$(if $(BR2_PACKAGE_HOST_LIBP11),host-libp11)
|
||||
HOST_RAUC_CONF_OPTS += --disable-network --disable-json --disable-service
|
||||
HOST_RAUC_CONF_OPTS += \
|
||||
--disable-network \
|
||||
--disable-json \
|
||||
--disable-service \
|
||||
--without-dbuspolicydir
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user