Skip to content

Commit 0408edc

Browse files
committed
meta-mchp-polarfire-soc: conf: machines: add whitespace with :append operator
Add a leading whitespace in MACHINE_FEATURES:append in all PolarFire SoC machine configuration files. This ensures that the appended content is properly separated from the existing value, preventing concatenation errors (e.g., "feature1feature2"). The whitespace is required before the appended content when using the :append operator in BitBake recipes. Signed-off-by: Valentina Fernandez <[email protected]>
1 parent 4962a8d commit 0408edc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

meta-mchp-polarfire-soc/meta-mchp-polarfire-soc-bsp/conf/machine/mpfs-icicle-kit-amp.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require include/mpfs-common.inc
77

88
MACHINE_TYPE = "amp"
99

10-
MACHINE_FEATURES:append = "pci usbgadget usbhost wifi"
10+
MACHINE_FEATURES:append = " pci usbgadget usbhost wifi"
1111

1212
RISCV_SBI_FDT ?= "mpfs-icicle-kit.dtb"
1313
KERNEL_DTC_FLAGS += "-@"

meta-mchp-polarfire-soc/meta-mchp-polarfire-soc-bsp/conf/machine/mpfs-icicle-kit-nand.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require include/mpfs-common.inc
77

88
MACHINE_TYPE = "smp"
99

10-
MACHINE_FEATURES:append = "pci usbgadget usbhost wifi"
10+
MACHINE_FEATURES:append = " pci usbgadget usbhost wifi"
1111

1212
RISCV_SBI_FDT ?= "mpfs-icicle-kit.dtb"
1313
KERNEL_DTC_FLAGS += "-@"

meta-mchp-polarfire-soc/meta-mchp-polarfire-soc-bsp/conf/machine/mpfs-icicle-kit-nor.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require include/mpfs-common.inc
77

88
MACHINE_TYPE = "smp"
99

10-
MACHINE_FEATURES:append = "pci usbgadget usbhost wifi"
10+
MACHINE_FEATURES:append = " pci usbgadget usbhost wifi"
1111

1212
RISCV_SBI_FDT ?= "mpfs-icicle-kit.dtb"
1313
KERNEL_DTC_FLAGS += "-@"

meta-mchp-polarfire-soc/meta-mchp-polarfire-soc-bsp/conf/machine/mpfs-video-kit.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require include/mpfs-common.inc
77
MACHINE_TYPE = "smp"
88

9-
MACHINE_FEATURES:append = "pci usbgadget usbhost wifi"
9+
MACHINE_FEATURES:append = " pci usbgadget usbhost wifi"
1010

1111
RISCV_SBI_FDT ?= "mpfs-video-kit.dtb"
1212
KERNEL_DTC_FLAGS += "-@"

0 commit comments

Comments
 (0)