mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
43
package/mender-grubenv/Config.in
Normal file
43
package/mender-grubenv/Config.in
Normal file
@@ -0,0 +1,43 @@
|
||||
config BR2_PACKAGE_MENDER_GRUBENV
|
||||
bool "mender-grubenv"
|
||||
depends on BR2_TARGET_GRUB2_ARCH_SUPPORTS
|
||||
depends on BR2_PACKAGE_MENDER # runtime
|
||||
# grubenv provides it's own fw_printenv.
|
||||
depends on !BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV
|
||||
depends on BR2_TARGET_GRUB2 # runtime
|
||||
help
|
||||
Contains the boot scripts and tools used by Mender to
|
||||
integrate with the GRUB bootloader.
|
||||
|
||||
The following Grub modules must be selected for this package:
|
||||
loadenv hashsum echo halt gcry_sha256 test
|
||||
|
||||
https://github.com/mendersoftware/grub-mender-grubenv
|
||||
|
||||
if BR2_PACKAGE_MENDER_GRUBENV
|
||||
|
||||
config BR2_PACKAGE_MENDER_GRUBENV_DEFINES
|
||||
string "path to grubenv defines"
|
||||
help
|
||||
Specify a path to the mender grubenv defines file.
|
||||
If no path is specified, the example file in the source
|
||||
directory will be used.
|
||||
|
||||
The example file in the source directory sets the following:
|
||||
mender_rootfsa_part=2
|
||||
mender_rootfsb_part=3
|
||||
mender_kernel_root_base=/dev/mmcblk0p
|
||||
mender_grub_storage_device=hd0
|
||||
kernel_imagetype=bzImage
|
||||
|
||||
endif
|
||||
|
||||
comment "mender-grubenv needs a grub2 bootloader"
|
||||
depends on BR2_TARGET_GRUB2_ARCH_SUPPORTS
|
||||
depends on BR2_PACKAGE_MENDER
|
||||
depends on !BR2_TARGET_GRUB2
|
||||
|
||||
comment "mender-grubenv does not work with uboot-tools fw_printenv"
|
||||
depends on BR2_TARGET_GRUB2_ARCH_SUPPORTS
|
||||
depends on BR2_PACKAGE_MENDER
|
||||
depends on BR2_PACKAGE_UBOOT_TOOLS_FWPRINTENV
|
||||
3
package/mender-grubenv/mender-grubenv.hash
Normal file
3
package/mender-grubenv/mender-grubenv.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 e50cc18a844e3fd1edef7af9224733b0338a34d51f1186ee19803ef7af1a5065 mender-grubenv-1.3.0.tar.gz
|
||||
sha256 98ed35b5a138f58164b5c0dbccd9d7f01ef4d84b9dba01e896f0a3241c50c0f7 LICENSE
|
||||
53
package/mender-grubenv/mender-grubenv.mk
Normal file
53
package/mender-grubenv/mender-grubenv.mk
Normal file
@@ -0,0 +1,53 @@
|
||||
################################################################################
|
||||
#
|
||||
# mender-grubenv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MENDER_GRUBENV_VERSION = 1.3.0
|
||||
MENDER_GRUBENV_SITE = $(call github,mendersoftware,grub-mender-grubenv,$(MENDER_GRUBENV_VERSION))
|
||||
MENDER_GRUBENV_LICENSE = Apache-2.0
|
||||
MENDER_GRUBENV_LICENSE_FILES = LICENSE
|
||||
|
||||
ifeq ($(BR2_TARGET_GRUB2_I386_PC)$(BR2_TARGET_GRUB2_ARM_UBOOT),y)
|
||||
MENDER_GRUBENV_ENV_DIR = /boot/grub
|
||||
else
|
||||
MENDER_GRUBENV_ENV_DIR = /boot/efi/EFI/BOOT
|
||||
endif
|
||||
|
||||
MENDER_GRUBENV_MAKE_ENV = \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_MAKE_ENV) \
|
||||
ENV_DIR=$(MENDER_GRUBENV_ENV_DIR)
|
||||
|
||||
MENDER_GRUBENV_DEFINES = \
|
||||
$(or $(call qstrip,$(BR2_PACKAGE_MENDER_GRUBENV_DEFINES)),\
|
||||
$(@D)/mender_grubenv_defines.example)
|
||||
|
||||
# These grub modules must be built in for the grub scripts to work properly.
|
||||
# Without them, the system will not boot.
|
||||
MENDER_GRUBENV_MANDATORY_MODULES=loadenv hashsum echo halt gcry_sha256 test
|
||||
MENDER_GRUBENV_MODULES_MISSING = \
|
||||
$(filter-out $(call qstrip,$(BR2_TARGET_GRUB2_BUILTIN_MODULES)),\
|
||||
$(MENDER_GRUBENV_MANDATORY_MODULES))
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MENDER_GRUBENV)$(BR_BUILDING),yy)
|
||||
ifneq ($(MENDER_GRUBENV_MODULES_MISSING),)
|
||||
$(error The following missing grub2 modules must be enabled for mender-grubenv \
|
||||
to work: $(MENDER_GRUBENV_MODULES_MISSING))
|
||||
endif
|
||||
endif
|
||||
|
||||
define MENDER_GRUBENV_CONFIGURE_CMDS
|
||||
$(INSTALL) -m 0644 $(MENDER_GRUBENV_DEFINES) $(@D)/mender_grubenv_defines
|
||||
endef
|
||||
|
||||
define MENDER_GRUBENV_BUILD_CMDS
|
||||
$(MENDER_GRUBENV_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define MENDER_GRUBENV_INSTALL_TARGET_CMDS
|
||||
$(MENDER_GRUBENV_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user