summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2021-06-24 10:52:17 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-06-25 09:27:07 +0200
commit04e3a8fe4ae82bacd532e4fe91ec7a79260043e1 (patch)
treea67a7453e7179baab446134c964011b9b6ad7a00 /common
parent9d43ef0db1ff83f673b7f7a3bc3a0e9c564365b1 (diff)
downloadbarebox-04e3a8fe4ae82bacd532e4fe91ec7a79260043e1.tar.gz
barebox-04e3a8fe4ae82bacd532e4fe91ec7a79260043e1.tar.xz
firmware: Load from global search path
We have a global firmware search path, so use it. This removes the path argument from of_firmware_load_overlay(). blspec already extends the global firmware search path, so the path is not needed there. The of_overlay command has an option for specifying the search path, this is removed here, the global search path has to be used instead. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Link: https://lore.barebox.org/20210624085223.14616-13-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/blspec.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/common/blspec.c b/common/blspec.c
index c39805cb0b..148e52b038 100644
--- a/common/blspec.c
+++ b/common/blspec.c
@@ -39,7 +39,6 @@ static int blspec_apply_oftree_overlay(char *file, const char *abspath,
struct fdt_header *fdt;
struct device_node *overlay;
char *path;
- char *firmware_path;
size_t size;
path = basprintf("%s/%s", abspath, file);
@@ -64,15 +63,7 @@ static int blspec_apply_oftree_overlay(char *file, const char *abspath,
goto out;
}
- /*
- * Unfortunately the device tree overlay contains only the filename of
- * the firmware and relies on the firmware search paths to find the
- * actual file. Use /lib/firmware in the Linux root directory and hope
- * for the best.
- */
- firmware_path = basprintf("%s/%s", abspath, "/lib/firmware");
- ret = of_firmware_load_overlay(overlay, firmware_path);
- free(firmware_path);
+ ret = of_firmware_load_overlay(overlay);
if (ret) {
pr_warn("failed to load firmware: skip overlay \"%s\"\n", path);
of_delete_node(overlay);