commit | 6f386d02473a83b163f3b59f05e01810d1907ea9 | [log] [tgz] |
---|---|---|
author | Caleb Connolly <caleb.connolly@linaro.org> | Tue Oct 17 11:55:36 2023 +0100 |
committer | Caleb Connolly <caleb.connolly@linaro.org> | Thu Dec 07 00:23:06 2023 +0000 |
tree | 62565275cf788e5de36e140be1e43fc5684a84f8 | |
parent | 2dc3c746798f6a70c14ca9e5943fd34843b1c038 [diff] |
bootstd: extend dtb search paths Some distros install their dtbs in /dtbs, add an additional search path for this. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
diff --git a/boot/bootmeth_efi.c b/boot/bootmeth_efi.c index ae936c8..94c3a18 100644 --- a/boot/bootmeth_efi.c +++ b/boot/bootmeth_efi.c
@@ -206,6 +206,9 @@ case 2: prefix = "/dtb/current"; break; + case 3: + prefix = "/dtbs"; + break; default: return log_msg_ret("pref", -EINVAL); }