29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: William Douglas <william.douglas@intel.com>
|
||
|
Date: Wed, 20 Jun 2018 17:23:21 +0000
|
||
|
Subject: [PATCH] Enable stateless firmware loading
|
||
|
|
||
|
Prefer the order of specific version before generic and /etc before
|
||
|
/lib to enable the user to give specific overrides for generic
|
||
|
firmware and distribution firmware.
|
||
|
---
|
||
|
drivers/base/firmware_loader/main.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/drivers/base/firmware_loader/main.c b/drivers/base/firmware_loader/main.c
|
||
|
index bf44c79beae9..019547b549a9 100644
|
||
|
--- a/drivers/base/firmware_loader/main.c
|
||
|
+++ b/drivers/base/firmware_loader/main.c
|
||
|
@@ -439,6 +439,8 @@ static int fw_decompress_xz(struct device *dev, struct fw_priv *fw_priv,
|
||
|
static char fw_path_para[256];
|
||
|
static const char * const fw_path[] = {
|
||
|
fw_path_para,
|
||
|
+ "/etc/firmware/" UTS_RELEASE,
|
||
|
+ "/etc/firmware",
|
||
|
"/lib/firmware/updates/" UTS_RELEASE,
|
||
|
"/lib/firmware/updates",
|
||
|
"/lib/firmware/" UTS_RELEASE,
|
||
|
--
|
||
|
https://clearlinux.org
|
||
|
|