From: "pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: guix-devel@gnu.org, jbranso@dismail.de
Subject: Re: kmscon not working on MacBook
Date: Fri, 20 Mar 2020 09:51:33 +0100 [thread overview]
Message-ID: <20200320085133.maj6jkgijvqpnerj@pelzflorian.localdomain> (raw)
In-Reply-To: <20200320084850.klhoxexhnamkoelg@pelzflorian.localdomain>
[-- Attachment #1: Type: text/plain, Size: 128 bytes --]
On Fri, Mar 20, 2020 at 09:48:50AM +0100, pelzflorian (Florian Pelz) wrote:
> The attached patch […]
Forgot attachment …
[-- Attachment #2: 0001-for-TESTING-only-works-for-some-machines-installer-R.patch --]
[-- Type: text/plain, Size: 2933 bytes --]
From 2dd61d18b88f197d8d6951fe1dc97bafdf4fe03f Mon Sep 17 00:00:00 2001
From: Florian Pelz <pelzflorian@pelzflorian.de>
Date: Thu, 19 Mar 2020 15:50:00 +0100
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Subject: [PATCH 3/3] [for TESTING, only works for some machines] installer:
Run installer in uvesafb.
* gnu/system/install.scm (installation-os): Load uvesafb before installer.
---
gnu/system/install.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index c15c2c7814..88db4320b0 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -50,6 +50,7 @@
#:use-module (gnu packages texinfo)
#:use-module (gnu packages compression)
#:use-module (gnu packages nvi)
+ #:use-module (gnu packages xorg)
#:use-module (ice-9 match)
#:use-module (srfi srfi-26)
#:export (installation-os
@@ -304,8 +305,34 @@ Access documentation at any time by pressing Alt-F2.\x1b[0m
(define bare-bones-os
(load "examples/bare-bones.tmpl"))
+ (define (insmod-uvesafb-activation value)
+ #~(begin
+ (use-modules (guix build utils))
+ (symlink #$(file-append linux-libre "/lib") "/lib")))
+
+ (define (insmod-uvesafb-shepherd-service _)
+ (list (shepherd-service
+ (provision '(insmod-uvesafb))
+ (requirement '(user-processes udev dbus-system))
+ (start #~(make-forkexec-constructor
+ (list #+(file-append kmod "/bin/modprobe") "uvesafb"
+ (string-append "v86d=" #$v86d "/sbin/v86d")
+ "mode_option=1024x768")))
+ (stop #~(make-kill-destructor))
+ (one-shot? #t))))
+
(list (service virtual-terminal-service-type)
+ (service
+ (service-type (name 'insmod-uvesafb)
+ (extensions
+ (list (service-extension activation-service-type
+ insmod-uvesafb-activation)
+ (service-extension shepherd-root-service-type
+ insmod-uvesafb-shepherd-service)))
+ (description "Start uvesafb."))
+ #t)
+
(service kmscon-service-type
(kmscon-configuration
(virtual-terminal "tty1")
@@ -434,7 +461,7 @@ Access documentation at any time by pressing Alt-F2.\x1b[0m
;; non-functional:
;; <https://lists.gnu.org/archive/html/guix-devel/2019-03/msg00441.html>.
;; Thus, blacklist it.
- (kernel-arguments '("quiet" "modprobe.blacklist=radeon"))
+ (kernel-arguments '("quiet" "modprobe.blacklist=radeon" "nomodeset"))
(file-systems
;; Note: the disk image build code overrides this root file system with
--
2.25.1
next prev parent reply other threads:[~2020-03-20 8:51 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-24 21:38 Plan for a release! Ludovic Courtès
2020-02-24 22:55 ` Vincent Legoll
2020-02-25 14:00 ` Jonathan Brielmaier
2020-02-25 15:15 ` Vincent Legoll
2020-02-24 23:35 ` zimoun
2020-02-25 15:47 ` Joshua Branson
2020-03-05 4:54 ` jbranso
2020-03-08 12:04 ` pelzflorian (Florian Pelz)
2020-03-08 21:03 ` kmscon not working on MacBook Ludovic Courtès
2020-03-09 7:43 ` pelzflorian (Florian Pelz)
2020-03-09 9:48 ` Vincent Legoll
2020-03-09 16:45 ` Ludovic Courtès
2020-03-11 7:14 ` pelzflorian (Florian Pelz)
2020-03-11 7:25 ` pelzflorian (Florian Pelz)
2020-03-20 8:48 ` pelzflorian (Florian Pelz)
2020-03-20 8:51 ` pelzflorian (Florian Pelz) [this message]
2020-03-25 23:00 ` pelzflorian (Florian Pelz)
2020-03-26 2:26 ` Bengt Richter
2020-03-26 16:53 ` pelzflorian (Florian Pelz)
2020-03-29 10:26 ` pelzflorian (Florian Pelz)
2020-03-08 12:35 ` Gnome takes more than 5 minutes to start Ricardo Wurmus
2020-03-08 21:04 ` Btrfs/udev issue Ludovic Courtès
2020-03-05 13:42 ` Plan for a release! jbranso
2020-03-05 16:45 ` sirgazil
2020-03-06 16:32 ` Joshua Branson
2020-03-05 21:09 ` Jan
2020-03-06 16:33 ` Joshua Branson
2020-03-06 16:51 ` Thunar cannot launch gio-launch-desktop Ricardo Wurmus
2020-03-06 17:57 ` Jan
2020-03-06 21:51 ` Ricardo Wurmus
2020-03-06 23:59 ` Jan
2020-03-07 23:41 ` Jan
2020-03-08 9:08 ` Ricardo Wurmus
2020-03-08 22:05 ` Jan
2020-03-08 23:41 ` Jan
2020-03-09 22:41 ` Jan
2020-03-06 6:44 ` Plan for a release! pelzflorian (Florian Pelz)
2020-03-06 9:58 ` John Soo
2020-03-08 12:33 ` Ricardo Wurmus
2020-03-08 21:10 ` Ludovic Courtès
2020-03-12 13:54 ` Ludovic Courtès
2020-03-18 16:53 ` Ludovic Courtès
2020-03-18 17:31 ` Ricardo Wurmus
2020-03-18 17:49 ` Mathieu Othacehe
2020-03-20 10:52 ` Mathieu Othacehe
2020-03-20 13:13 ` Gábor Boskovits
2020-03-20 13:58 ` Mathieu Othacehe
2020-03-21 15:46 ` Ludovic Courtès
2020-03-23 14:05 ` Mathieu Othacehe
2020-03-26 11:55 ` Ludovic Courtès
2020-03-26 12:37 ` Vincent Legoll
2020-03-26 14:24 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200320085133.maj6jkgijvqpnerj@pelzflorian.localdomain \
--to=pelzflorian@pelzflorian.de \
--cc=guix-devel@gnu.org \
--cc=jbranso@dismail.de \
--cc=ludo@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.