public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/uboot-tools] rawhide: FFL: convert a few debug statements into info
@ 2026-06-23 9:22 Dusty Mabe
0 siblings, 0 replies; only message in thread
From: Dusty Mabe @ 2026-06-23 9:22 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/uboot-tools
Branch : rawhide
Commit : 40a137ae166cd4a38133cf8bb4be8b012be721e6
Author : Dusty Mabe <dusty@dustymabe.com>
Date : 2026-06-19T14:20:29-04:00
Stats : +2/-2 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/uboot-tools/c/40a137ae166cd4a38133cf8bb4be8b012be721e6?branch=rawhide
Log:
FFL: convert a few debug statements into info
This way on boot we'll get one of the three:
- Found DTB on disk
- Found DTB: Prior firmware
- Using DT from U-Boot
Since it's only one log statement per boot I don't think this will
add too much noise.
---
diff --git a/uefi-initial-find_fdt_location-for-finding-the-DT-on-disk.patch b/uefi-initial-find_fdt_location-for-finding-the-DT-on-disk.patch
index 5948f93..ac58bad 100644
--- a/uefi-initial-find_fdt_location-for-finding-the-DT-on-disk.patch
+++ b/uefi-initial-find_fdt_location-for-finding-the-DT-on-disk.patch
@@ -169,7 +169,7 @@ index 44b806aadc4..61e982091b9 100644
+ /* Check if there is device tree loaded from disk */
+ fdt_opt = find_fdt_location();
+ if (fdt_opt)
-+ log_debug("Found DTB on disk\n");
++ log_info("Found DTB on disk\n");
+
/* Check if there is a hardware device tree */
- fdt_opt = env_get("fdt_addr");
@@ -181,7 +181,7 @@ index 44b806aadc4..61e982091b9 100644
/* Use our own device tree as fallback */
if (!fdt_opt) {
fdt_opt = env_get("fdtcontroladdr");
-+ log_debug("Using DT from U-Boot\n");
++ log_info("Using DT from U-Boot\n");
if (!fdt_opt) {
log_err("need device tree\n");
return EFI_NOT_FOUND;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-23 9:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-23 9:22 [rpms/uboot-tools] rawhide: FFL: convert a few debug statements into info Dusty Mabe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox