From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Subject: Re: KMScon vs. AMD Radeon Date: Mon, 15 Apr 2019 14:09:57 +0200 Message-ID: <878swbpizu.fsf@gnu.org> References: <87tvffilot.fsf@gmail.com> <20190403131944.2b4244c5@scratchpost.org> <20190403205630.30b80f49@scratchpost.org> <87wokaq0gd.fsf@gnu.org> <20190403230244.663ee305@scratchpost.org> <20190404050217.6wsqln62utbl4ock@pelzflorian.localdomain> <87o95mfcer.fsf@gmail.com> <87h8bdkhhs.fsf@gmail.com> <20190404160748.3jr76nocxxith3jz@pelzflorian.localdomain> <20190414094859.dutthslrhr5jjosp@pelzflorian.localdomain> <20190414205456.5ax4ne5e26pcshef@pelzflorian.localdomain> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:56615) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hG0R5-00074a-Tl for guix-devel@gnu.org; Mon, 15 Apr 2019 08:10:08 -0400 In-Reply-To: <20190414205456.5ax4ne5e26pcshef@pelzflorian.localdomain> (pelzflorian@pelzflorian.de's message of "Sun, 14 Apr 2019 22:54:56 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: "pelzflorian (Florian Pelz)" Cc: Guix-devel , Mathieu Othacehe , Pierre Neidhardt --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, "pelzflorian (Florian Pelz)" skribis: > Deniz at Parabola GNU/Linux-libre discussed a similar issue for > Parabola today: > > Here what would need to be publicized would be how to blacklist the > radeon driver at boot, in the case something goes wrong and the user > is left with a black screen during the boot of linux-libre. > > On Parabola adding "modprobe.blacklist=3Dradeon" to the kernel command > line does that at boot. This enables users to easily use the > installation medias. > > > > Deniz also wrote that this would break HDMI, but HDMI does not work > for me in the Guix installer anyway (but possibly it worked for > others?) If that=E2=80=99s the best option we have so far, we can do this: --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/system/install.scm b/gnu/system/install.scm index d887313132..5776938f10 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -426,6 +426,7 @@ Access documentation at any time by pressing Alt-F2.\x1b[0m (target "/dev/sda"))) (label (string-append "GNU Guix installation " (package-version guix))) + (kernel-arguments '("modprobe.blacklist=radeon")) (file-systems ;; Note: the disk image build code overrides this root file system with --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Thoughts? Ludo=E2=80=99. --=-=-=--