About News Download Docs Forum Bugs Contact

Forum

Information

Tools

Resources

All posts created by public

Submitted by public 04 Feb, 2026 16:56 #

mesa is needed only for open source drivers, but not sure if our z-rejected spell for nvidia proprietary drivers is up to date. also, have you tried to build all drivers in kernel? maybe the modules don't want to load? can be udev/kmod issue.

Submitted by public 02 Feb, 2026 18:56 #

Have you tried igp first?

Submitted by public 28 Jul, 2023 17:21 #

the fix is already in the repo.try updating your grimoire and recast init.d.

Edited 28 Jul, 2023 19:47
Submitted by public 07 Dec, 2022 19:54 #
$ grep --version
grep (GNU grep) 3.8
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and others; see
<https://git.sv.gnu.org/cgit/grep.git/tree/AUTHORS>.
Edited 08 Dec, 2022 14:42
Submitted by public 25 Nov, 2022 23:27 #

no idea why it works for me without the patch.

$ cat -A /proc/filesystems
...
nodev^Ifuse$
...

What's yours?

Submitted by public 20 Nov, 2022 02:53 #

I tried your patch. works great, but I had no problem with staging before your patch. what locale do you use? can you change it to C and check some spell without your patch?

Submitted by public 05 Sep, 2022 19:27 #

Since I don't have git push access I'll leave the patch here.

From 2c09ae123ebcbb7cb7964e97342a88be1cca0a03 Mon Sep 17 00:00:00 2001
From: Pavel Vinogradov <public@sourcemage.org>
Date: Sat, 3 Sep 2022 18:57:39 -0400
Subject: [PATCH] libsecurity, libsorcery: adapted for grep 3.8 (egrep -> grep
 -E)

---
 var/lib/sorcery/modules/libsecurity | 2 +-
 var/lib/sorcery/modules/libsorcery  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/var/lib/sorcery/modules/libsecurity b/var/lib/sorcery/modules/libsecurity
index 628172c2..de09b08a 100755
--- a/var/lib/sorcery/modules/libsecurity
+++ b/var/lib/sorcery/modules/libsecurity
@@ -58,7 +58,7 @@ gaze_checkmd5() {
       SOURCE="$(ls $SOURCE_CACHE/$SOURCE* 2> /dev/null | cut -d'/' -f 5 | head -n 1)"
       if [ "$SOURCE" ]
       then
-        if [[ -z $(echo ${SOURCE#$OLDSOURCE.} | egrep '^[0-9]{14}$') ]]
+        if [[ -z $(echo ${SOURCE#$OLDSOURCE.} | grep -E '^[0-9]{14}$') ]]
         then
           APPEND="FUZZ s/$OLDSOURCE/$SOURCE/ "
         else
diff --git a/var/lib/sorcery/modules/libsorcery b/var/lib/sorcery/modules/libsorcery
index f68d6805..fc5ef969 100755
--- a/var/lib/sorcery/modules/libsorcery
+++ b/var/lib/sorcery/modules/libsorcery
@@ -883,7 +883,7 @@ unset_details()  {
     TEMP=${TEMP}${i}\\n
   done
   # not all SOURCE_* should be deleted (SOURCE_CACHE)
-  VARS="$VARS $(echo -e $TEMP | egrep "^SOURCE[0-9]*(_URL|_GPG|_IGNORE)?$")"
+  VARS="$VARS $(echo -e $TEMP | grep -E "^SOURCE[0-9]*(_URL|_GPG|_IGNORE)?$")"

   unset $VARS
 }
--
2.37.3
Edited 09 Sep, 2022 15:09
Submitted by public 13 Aug, 2022 19:21 #

fixed here.