diff options
| author | Vagrant Cascadian <[email protected]> | 2026-01-29 20:04:24 -0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-10 15:55:45 -0600 |
| commit | 03d2d5fc003f355515e202c14aee8cc543b730e4 (patch) | |
| tree | bb4eb44ab227ca440e346aafa3f5fa91a5a25e64 /board/sifive | |
| parent | b3087d21f022e29678e396b425e4a78ff7cf0912 (diff) | |
board: sifive: unmatched: set fdtfile with unquoted variable.
The fdtdfile variable contains quotes:
printenv fdtfile
fdtfile="sifive/hifive-unmatched-a00.dtb"
But this leads to issues which booting with an extlinux.conf format
file failing to find the .dtb file:
Retrieving file: /usr/lib/linux-image-6.12.63+deb13-riscv64/"sifive/hifive-unmatched-a00.dtb"
Skipping fdtdir /usr/lib/linux-image-6.12.63+deb13-riscv64/ for failure retrieving dts
Use the DEFAULT_FDT_FILE variable which has the quotes removed.
Signed-off-by: Vagrant Cascadian <[email protected]>
Diffstat (limited to 'board/sifive')
| -rw-r--r-- | board/sifive/unmatched/unmatched.env | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sifive/unmatched/unmatched.env b/board/sifive/unmatched/unmatched.env index 34425dc9efa..f309229481b 100644 --- a/board/sifive/unmatched/unmatched.env +++ b/board/sifive/unmatched/unmatched.env @@ -16,4 +16,4 @@ partitions= name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1}; name=loader2,size=4MB,type=${type_guid_gpt_loader2}; name=system,size=-,bootable,type=${type_guid_gpt_system}; -fdtfile=CONFIG_DEFAULT_FDT_FILE +fdtfile=DEFAULT_FDT_FILE |
