mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 04:36:33 +00:00
barebox: support multiple image files
Add support for specifying multiple image files in BR2_TARGET_BAREBOX_IMAGE_FILE config option. This is useful for boards with several RAM size variants. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> [Thomas: rename internal variable from $(1)_IMAGE_FILE to $(1)_IMAGE_FILES.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
0f7b5d4a9f
commit
9c61322c46
@ -30,9 +30,9 @@ config BR2_TARGET_BAREBOX_AUX_CONFIG_FRAGMENT_FILES
|
|||||||
that will be merged to the main Barebox configuration file.
|
that will be merged to the main Barebox configuration file.
|
||||||
|
|
||||||
config BR2_TARGET_BAREBOX_AUX_IMAGE_FILE
|
config BR2_TARGET_BAREBOX_AUX_IMAGE_FILE
|
||||||
string "Image filename"
|
string "Image file names"
|
||||||
help
|
help
|
||||||
Name of the generated barebox image, which will be copied to
|
Space-separated list of barebox images which will be copied to
|
||||||
the images directory.
|
the images directory.
|
||||||
|
|
||||||
If left empty, defaults to:
|
If left empty, defaults to:
|
||||||
|
@ -109,11 +109,11 @@ define $(1)_BUILD_CMDS
|
|||||||
$$($(1)_BUILD_CUSTOM_ENV)
|
$$($(1)_BUILD_CUSTOM_ENV)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(1)_IMAGE_FILE = $$(call qstrip,$$(BR2_TARGET_$(1)_IMAGE_FILE))
|
$(1)_IMAGE_FILES = $$(call qstrip,$$(BR2_TARGET_$(1)_IMAGE_FILE))
|
||||||
|
|
||||||
define $(1)_INSTALL_IMAGES_CMDS
|
define $(1)_INSTALL_IMAGES_CMDS
|
||||||
if test -n "$$($(1)_IMAGE_FILE)"; then \
|
if test -n "$$($(1)_IMAGE_FILES)"; then \
|
||||||
cp -L $$(@D)/$$($(1)_IMAGE_FILE) $$(BINARIES_DIR) ; \
|
cp -L $$(foreach image,$$($(1)_IMAGE_FILES),$$(@D)/$$(image)) $$(BINARIES_DIR) ; \
|
||||||
elif test -h $$(@D)/barebox-flash-image ; then \
|
elif test -h $$(@D)/barebox-flash-image ; then \
|
||||||
cp -L $$(@D)/barebox-flash-image $$(BINARIES_DIR)/barebox.bin ; \
|
cp -L $$(@D)/barebox-flash-image $$(BINARIES_DIR)/barebox.bin ; \
|
||||||
else \
|
else \
|
||||||
|
@ -31,9 +31,9 @@ config BR2_TARGET_BAREBOX_CONFIG_FRAGMENT_FILES
|
|||||||
that will be merged to the main Barebox configuration file.
|
that will be merged to the main Barebox configuration file.
|
||||||
|
|
||||||
config BR2_TARGET_BAREBOX_IMAGE_FILE
|
config BR2_TARGET_BAREBOX_IMAGE_FILE
|
||||||
string "Image filename"
|
string "Image file names"
|
||||||
help
|
help
|
||||||
Name of the generated barebox image, which will be copied to
|
Space-separated list of barebox images which will be copied to
|
||||||
the images directory.
|
the images directory.
|
||||||
|
|
||||||
If left empty, defaults to:
|
If left empty, defaults to:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user