diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2023-01-25 17:30:46 -0800 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2023-01-26 07:16:58 -0800 |
| commit | 37d619108ffc737b4722e7fa3e1c8f477366ef8c (patch) | |
| tree | 4f7a4fe153947746e520c388aac28a7fa863eff4 | |
| parent | 7fe0c34349c84d3e78c417fda82b54c9a77536f9 (diff) | |
| download | meta-xilinx-37d619108ffc737b4722e7fa3e1c8f477366ef8c.tar.gz | |
u-boot-xlnx: Set UBRANCH to the correct value
Using ?= will result in UBRANCH not being set, as "" was already defined
as the default value. Using = will result in the correct value and stop
the system from automatically setting 'nobranch=1'.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
| -rw-r--r-- | meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.1.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.1.inc b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.1.inc index 36c35a8f..c0ef3210 100644 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.1.inc +++ b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.1.inc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | UBOOT_VERSION = "v2023.01" | 1 | UBOOT_VERSION = "v2023.01" |
| 2 | 2 | ||
| 3 | UBRANCH ?= "xlnx_rebase_v2023.01" | 3 | UBRANCH = "xlnx_rebase_v2023.01" |
| 4 | 4 | ||
| 5 | SRCREV = "08377c71703ea43167ba6e7f6f5ee22fa64dd2a4" | 5 | SRCREV = "08377c71703ea43167ba6e7f6f5ee22fa64dd2a4" |
| 6 | 6 | ||
