unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Brice Waegeneire <brice@waegenei.re>
To: "pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de>
Cc: 42193@debbugs.gnu.org
Subject: [bug#42193] [WIP 2/6] services: Add 'kernel-profile-service-type'.
Date: Wed, 08 Jul 2020 16:22:06 +0000	[thread overview]
Message-ID: <934d7c4429a5e64e12af5928ddf10b0d@waegenei.re> (raw)
In-Reply-To: <20200708112947.i4iaayf45y5jxoti@pelzflorian.localdomain>

On 2020-07-08 11:29, pelzflorian (Florian Pelz) wrote:
> Thank you for your work!

Note that it's not finished yet.

> After I apply this kernel profile patch, I get an error:
> 
> florian@florianmacbook ~/git/guix [env]$ ./pre-inst-env guix system
> disk-image --file-system-type=iso9660        gnu/system/install.scm
> substitute: Liste der Substitute von „https://ci.guix.gnu.org“ wird
> aktualisiert … 100.0%
> The following derivations will be built:
>    /gnu/store/l51h17zylvjmapvcpdmmqmvrylv8b2cb-iso9660-image.drv
>    /gnu/store/mhdkqnh4iri5rk1ayqd3xlw04q86zj29-grub.cfg.drv
>    /gnu/store/xvgn60irpzzdwvk30lqpsj2hh81h8jyh-system.drv
>    /gnu/store/6y2r0ab5jcflbajd6843v9g1j0v9xrzj-gc-roots.drv
>    /gnu/store/156m13243bcn2429swq8brp2qmfifi3b-system.drv
> building /gnu/store/156m13243bcn2429swq8brp2qmfifi3b-system.drv...
> |builder for `/gnu/store/156m13243bcn2429swq8brp2qmfifi3b-system.drv'
> failed with exit code 1
> build of /gnu/store/156m13243bcn2429swq8brp2qmfifi3b-system.drv failed
> View build log at
> '/var/log/guix/drvs/15/6m13243bcn2429swq8brp2qmfifi3b-system.drv.bz2'.
> cannot build derivation
> `/gnu/store/6y2r0ab5jcflbajd6843v9g1j0v9xrzj-gc-roots.drv': 1
> dependencies couldn't be built
> cannot build derivation
> `/gnu/store/xvgn60irpzzdwvk30lqpsj2hh81h8jyh-system.drv': 1
> dependencies couldn't be built
> cannot build derivation
> `/gnu/store/l51h17zylvjmapvcpdmmqmvrylv8b2cb-iso9660-image.drv': 1
> dependencies couldn't be built
> guix system: error: build of
> `/gnu/store/l51h17zylvjmapvcpdmmqmvrylv8b2cb-iso9660-image.drv' failed
> florian@florianmacbook ~/git/guix [env]$ bzcat
> /var/log/guix/drvs/15/6m13243bcn2429swq8brp2qmfifi3b-system.drv.bz2
> Backtrace:
>            1 (primitive-load "/gnu/store/59nx7bbflcqzavwsjj3wkq3lwfb?")
>            0 (symlink "/gnu/store/86xgvarqwir47c16x6crx0jra5dgzr62-?" 
> ?)
> 
> ERROR: In procedure symlink:
> In procedure symlink: File exists
> 
> 
> I have no idea where this comes from but I hope you can reproduce the 
> error.

Unfortunately I can't, it build successfully for me when applied on top 
of
6f3ede9ae2b2268181ebc0ca3764d865bd06bd63.  You probably just need to 
clean
your Guix repository and rebuild it from scratch

> In general, I would be happy to use the kernel module configuration
> service for replacing the uvesafb-service-type by something like
> 
>  (simple-service 'uvesafb-module
>              kernel-module-configuration-service-type
>              (list (kernel-module
>                     (name "uvesafb")
>                     (options
>                      (list #~(string-append "v86d=" #$v86d 
> "/sbin/v86d")
>                            "mode_option=1024x768\n"))))))))

I think it should work without gexp/ungexp and the "\n".

> Even better would be if it were possible to detect the resolution to
> use for uvesafb at runtime before the module is loaded.  Is it
> possible to execute as root at runtime before modprobe a script like
> testvbe.scm attached to the first message from
> <https://issues.guix.gnu.org/40538#0> to compute the mode_option to
> use?

AFAIU it's not possible because service extensions are generated at 
build time,
not run time so you can't extend KMCS with a value generated when your 
service
is executed. It is a limitation of the service extension paradigm.

A kind of dirty way to achieve what you want would be for KMCS' options 
field
to accept an arbitrary configuration path that will be symlinked to, 
like
“(options "/var/run/uvesafb/uvesafb.conf")”. That way from uvesafb 
service
you generate that modprobe configuration file at run time (before KMCS) 
and
so when KMCS run modprobe it's direcotry configuration contains a 
symlink
named "uvesafb.conf" which point to "/var/run/uvesafb/uvesafb.conf". But
it doesn't seems Guixy to me.

- Brice




  reply	other threads:[~2020-07-08 16:23 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200704185234.12571-1-brice@waegenei.re>
2020-07-04 18:54 ` [bug#42193] [WIP 1/6] services: simulated-wifi: Use 'kernel-module-loader' Brice Waegeneire
2020-07-04 18:54 ` Brice Waegeneire
2020-07-06 11:08   ` Danny Milosavljevic
2020-07-06 12:31     ` Brice Waegeneire
2020-07-04 18:54 ` [bug#42193] [WIP 2/6] services: Add 'kernel-profile-service-type' Brice Waegeneire
2020-07-08 11:29   ` pelzflorian (Florian Pelz)
2020-07-08 16:22     ` Brice Waegeneire [this message]
2020-07-11 17:30       ` pelzflorian (Florian Pelz)
2020-07-04 18:54 ` [bug#42193] [WIP 3/6] services: Add 'modprobe-service-type' Brice Waegeneire
2020-07-04 18:54 ` [bug#42193] [WIP 4/6] services: kernel-module-loader: Return a single 'shepherd-service' Brice Waegeneire
2020-07-06  0:03   ` Danny Milosavljevic
2020-07-06 10:01     ` Brice Waegeneire
2020-07-17 18:49   ` Danny Milosavljevic
2021-01-06 18:20     ` Danny Milosavljevic
2020-07-04 18:54 ` [bug#42193] [WIP 5/6] WIP services: Add kernel-arguments-service-type Brice Waegeneire
2020-07-04 18:54 ` [bug#42193] [WIP 6/6] WIP services: Add kernel-module-configuration service Brice Waegeneire

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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=934d7c4429a5e64e12af5928ddf10b0d@waegenei.re \
    --to=brice@waegenei.re \
    --cc=42193@debbugs.gnu.org \
    --cc=pelzflorian@pelzflorian.de \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).