mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
tool/create_builddir: prepend board-specific repos
Board-specific repositories must appear before generic repositories (i.e., gems) in 'REPOSITORIES' to select board-specific sculpt/ configuration snippets over the defaults provided by gems. When listing the board-specific repositories last, Sculpt images for the PinePhone or MNT Reform may wrongly include launchers and presets of the PC version.
This commit is contained in:
parent
05fd121975
commit
cb5eb740c0
@ -1,4 +1,6 @@
|
||||
|
||||
#
|
||||
# Board support for Raspberry Pi family
|
||||
#
|
||||
#REPOSITORIES += $(GENODE_DIR)/repos/rpi
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
#
|
||||
# Board-support for Xilinx Zynq-7000 SoC
|
||||
#
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
#
|
||||
# Board support for i.MX SoC family
|
||||
#
|
||||
@ -12,3 +13,4 @@
|
||||
# Board support for Allwinner SoC family
|
||||
#
|
||||
#REPOSITORIES += $(GENODE_DIR)/repos/allwinner
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
#
|
||||
# Board support for RISC-V Qemu / MiG-V
|
||||
#
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
#
|
||||
# Drivers for x86 PC
|
||||
#
|
||||
|
@ -85,13 +85,13 @@ endif
|
||||
$(BUILD_DIR)/etc:
|
||||
@mkdir -p $@
|
||||
|
||||
BUILD_CONF_X86 := run_x86 run_boot_dir repos repos_x86
|
||||
BUILD_CONF_ARM_V6 := run_arm_v6 run_boot_dir repos repos_arm_v6
|
||||
BUILD_CONF_ARM_V7 := run_arm_v7 run_boot_dir repos repos_arm_v7
|
||||
BUILD_CONF_X86 := run_x86 run_boot_dir repos_x86 repos
|
||||
BUILD_CONF_ARM_V6 := run_arm_v6 run_boot_dir repos_arm_v6 repos
|
||||
BUILD_CONF_ARM_V7 := run_arm_v7 run_boot_dir repos_arm_v7 repos
|
||||
BUILD_CONF(arm_v6) := $(BUILD_CONF_ARM_V6)
|
||||
BUILD_CONF(arm_v7a) := $(BUILD_CONF_ARM_V7)
|
||||
BUILD_CONF(arm_v8a) := run_arm_v8 run_boot_dir repos repos_arm_v8
|
||||
BUILD_CONF(riscv) := run_riscv run_boot_dir repos repos_riscv
|
||||
BUILD_CONF(arm_v8a) := run_arm_v8 run_boot_dir repos_arm_v8 repos
|
||||
BUILD_CONF(riscv) := run_riscv run_boot_dir repos_riscv repos
|
||||
BUILD_CONF(x86_32) := run_x86_32 $(BUILD_CONF_X86)
|
||||
BUILD_CONF(x86_64) := run_x86_64 $(BUILD_CONF_X86)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user