From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Legoll Subject: Re: Kernel config Date: Sun, 17 Jul 2016 18:22:12 +0200 Message-ID: References: <877fcliitk.fsf@elephly.net> <87twfp71pb.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59680) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOopb-0005cs-W6 for help-guix@gnu.org; Sun, 17 Jul 2016 12:22:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bOopb-0008NV-46 for help-guix@gnu.org; Sun, 17 Jul 2016 12:22:15 -0400 In-Reply-To: <87twfp71pb.fsf@gnu.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: =?UTF-8?Q?Ludovic_Court=C3=A8s?= Cc: help-guix@gnu.org Would the following work in the mean time ? 1. Adding the following to gnu/packages/linux.scm : (define-public linux-libre-config variant (package (inherit linux-libre) (native-inputs (let ((conf (kernel-config (or (%current-target-system) (%current-system)) #:variant variant))) `(,@(alist-delete "kconfig" (package-native-inputs linux-libre)) ("kconfig" ,conf)))))) 2. Adding this to your OS definition config.scm : (operating-system ... (kernel (linux-libre-config "4.6-vince"))) 3. putting the kconfig file into: gnu/packages/linux-libre-4.6-vince-x86_64.conf If that's OK, I can prepare a patch adding the missing pieces... -- Vincent Legoll