drop installer
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
From: Cyril Brulebois <cyril@debamax.com>
|
||||
Date: Wed, 12 Apr 2023 11:55:08 +0200
|
||||
Subject: fbdev/offb: Update expected device name
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
Origin: https://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git/commit?id=27c74ea74be805ccba1bc1a0a03cc79c51dca6ea
|
||||
|
||||
Since commit 241d2fb56a18 ("of: Make OF framebuffer device names unique"),
|
||||
as spotted by Frédéric Bonnard, the historical "of-display" device is
|
||||
gone: the updated logic creates "of-display.0" instead, then as many
|
||||
"of-display.N" as required.
|
||||
|
||||
This means that offb no longer finds the expected device, which prevents
|
||||
the Debian Installer from setting up its interface, at least on ppc64el.
|
||||
|
||||
It might be better to iterate on all possible nodes, but updating the
|
||||
hardcoded device from "of-display" to "of-display.0" is confirmed to fix
|
||||
the Debian Installer at the very least.
|
||||
|
||||
Link: https://bugzilla.kernel.org/show_bug.cgi?id=217328
|
||||
Link: https://bugs.debian.org/1033058
|
||||
Fixes: 241d2fb56a18 ("of: Make OF framebuffer device names unique")
|
||||
Cc: stable@vger.kernel.org
|
||||
Signed-off-by: Cyril Brulebois <cyril@debamax.com>
|
||||
Signed-off-by: Helge Deller <deller@gmx.de>
|
||||
---
|
||||
drivers/video/fbdev/offb.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/drivers/video/fbdev/offb.c b/drivers/video/fbdev/offb.c
|
||||
index 0065a77b6dbc8..b5fdef2b74359 100644
|
||||
--- a/drivers/video/fbdev/offb.c
|
||||
+++ b/drivers/video/fbdev/offb.c
|
||||
@@ -696,7 +696,7 @@ MODULE_DEVICE_TABLE(of, offb_of_match_display);
|
||||
|
||||
static struct platform_driver offb_driver_display = {
|
||||
.driver = {
|
||||
- .name = "of-display",
|
||||
+ .name = "of-display.0",
|
||||
.of_match_table = offb_of_match_display,
|
||||
},
|
||||
.probe = offb_probe_display,
|
||||
--
|
||||
2.30.2
|
||||
|
@@ -1,37 +0,0 @@
|
||||
From: Ben Hutchings <benh@debian.org>
|
||||
Subject: firmware_loader: Log direct loading failures as info for d-i
|
||||
Date: Thu, 30 May 2024 13:14:32 +0100
|
||||
Forwarded: not-needed
|
||||
|
||||
On an installed Debian system, firmware packages will normally be
|
||||
installed automatically based on a mapping of device IDs to firmware.
|
||||
Within the Debian installer this has not yet happened and we need a
|
||||
way to detect missing firmware.
|
||||
|
||||
Although many/most drivers log firmware loading failures, they do so
|
||||
using many different formats. This adds a single log message to the
|
||||
firmware loader, which the installer's hw-detect package will look
|
||||
for. The log level is set to "info" because some failures are
|
||||
expected and we do not want to confuse users with bogus error messages
|
||||
(like in bug #966218).
|
||||
|
||||
NOTE: The log message format must not be changed without coordinating
|
||||
this with the check-missing-firmware.sh in hw-detect.
|
||||
---
|
||||
drivers/base/firmware_loader/fallback.c | 2 +-
|
||||
drivers/base/firmware_loader/main.c | 17 ++++++++---------
|
||||
2 files changed, 9 insertions(+), 10 deletions(-)
|
||||
|
||||
--- a/drivers/base/firmware_loader/main.c
|
||||
+++ b/drivers/base/firmware_loader/main.c
|
||||
@@ -586,6 +586,10 @@ fw_get_filesystem_firmware(struct device
|
||||
}
|
||||
__putname(path);
|
||||
|
||||
+ if (rc)
|
||||
+ dev_info(device, "firmware: failed to load %s (%d)\n",
|
||||
+ fw_priv->fw_name, rc);
|
||||
+
|
||||
return rc;
|
||||
}
|
||||
|
4
debian/patches/series
vendored
4
debian/patches/series
vendored
@@ -31,7 +31,6 @@ debian/linux-perf-remove-remaining-source-filenames-from-executable.patch
|
||||
# Fixes/improvements to firmware loading
|
||||
features/all/drivers-media-dvb-usb-af9005-request_firmware.patch
|
||||
debian/iwlwifi-do-not-request-unreleased-firmware.patch
|
||||
debian/firmware_loader-log-direct-loading-failures-as-info-for-d-i.path
|
||||
bugfix/all/radeon-amdgpu-firmware-is-required-for-drm-and-kms-on-r600-onward.patch
|
||||
|
||||
# Change some defaults for security reasons
|
||||
@@ -107,7 +106,4 @@ bugfix/all/perf-tools-support-extra-cxxflags.patch
|
||||
bugfix/all/perf-tools-pass-extra_cflags-through-to-libbpf-build-again.patch
|
||||
bugfix/all/kbuild-bpf-fix-btf-reproducibility.patch
|
||||
|
||||
# debian-installer fixes
|
||||
bugfix/powerpc/fbdev-offb-Update-expected-device-name.patch
|
||||
|
||||
# ABI maintenance
|
||||
|
Reference in New Issue
Block a user