mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-02 11:38:07 -07:00
Signed-off-by: AshyPinguin <pinguinlars1105+gentoo@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/46295 Closes: https://github.com/gentoo/gentoo/pull/46295 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
32 lines
991 B
Diff
32 lines
991 B
Diff
From a6c5ae5d936fc4450b138a42439baa01901eb2a3 Mon Sep 17 00:00:00 2001
|
|
From: AshyPinguin <pinguinlars1105+gentoo@gmail.com>
|
|
Date: Thu, 28 May 2026 20:18:25 +0200
|
|
Subject: [PATCH 1/3] fix: silence message about missing package
|
|
|
|
A package for kmsprint (something related to kms++-utils) needs to be
|
|
added to the gentoo repo to be able to drop this patch
|
|
|
|
Signed-off-by: AshyPinguin <pinguinlars1105+gentoo@gmail.com>
|
|
---
|
|
raspinfo/raspinfo | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/raspinfo/raspinfo b/raspinfo/raspinfo
|
|
index 0947b8e..258c228 100755
|
|
--- a/raspinfo/raspinfo
|
|
+++ b/raspinfo/raspinfo
|
|
@@ -15,8 +15,8 @@ display_info_drm() {
|
|
kmsprint -m
|
|
echo
|
|
kmsprint -p
|
|
- else
|
|
- echo "kmsprint is not installed. Install with: sudo apt install kms++-utils"
|
|
+ # else
|
|
+ # echo "kmsprint is not installed. Install with: sudo apt install kms++-utils" # suppressing because their isn't a package for it yet.
|
|
fi
|
|
|
|
echo
|
|
--
|
|
2.53.0
|
|
|