all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: tumashu  <tumashu@163.com>
To: jbranso@dismail.de
Cc: help-guix <help-guix@gnu.org>
Subject: Re:Re: How to run "rmmod xxx" when I shutdown my computer.
Date: Sat, 26 Feb 2022 08:16:25 +0800 (CST)	[thread overview]
Message-ID: <76290968.18d.17f3362c6ad.Coremail.tumashu@163.com> (raw)
In-Reply-To: <45eea5948ba531b7813738e0597867ac@dismail.de>

















At 2022-02-26 07:51:53, jbranso@dismail.de wrote:
>February 22, 2022 5:59 PM, "tumashu" <tumashu@163.com> wrote:
>
>> rmmod mt7921e, a mediatek wifi module
>> 
>> I find this mode let shutdow time > 10min, so i want to unload it before shutdown
>> 
>> not the blacklight.
>
>I suppose another possibility is to purchase an open wifi dongle from thinkpenguin.

Good idea too, now i have resolve this problem in the below service :-)

(define-public mt7921e-service-type
  (shepherd-service-type
   'mt7921e
   (lambda _
     (shepherd-service
      (documentation "关机之前运行 'rmmod mt7921e' 命令。
ThinkPad-T14-AMD 笔记本电脑使用 MEDIATEK 7961 无线网卡,所以开机的时候会自动加
载 mt7921e 内核模块,但这个模块会导致关机时间消耗很长时间(> 5分钟), 这个服务的
主要作用就是在关机之前将 mt7921 模块卸载,加快关机。")
      (provision '(mt7921e))
      (requirement '(xorg-server))
      (start #~(lambda _
                 (invoke #$(file-append kmod "/bin/modprobe") "mt7921e")
                 #t))
      (stop  #~(lambda _
                 (invoke #$(file-append kmod "/bin/rmmod") "mt7921e")
                 #f))))
   #f
   (description "关机之前运行 'rmmod mt7921e' 命令。")))


>
>> 
>> --
>> 发自我的网易邮箱手机智能版
>> <br/><br/><br/>
>> 
>> ----- Original Message -----
>> From: jbranso@dismail.de
>> To: tumashu <tumashu@163.com>, help-guix <help-guix@gnu.org>
>> Sent: Tue, 22 Feb 2022 22:47:32 +0000
>> Subject: Re: How to run "rmmod xxx" when I shutdown my computer.
>> 
>> February 21, 2022 9:45 PM, "tumashu" <tumashu@163.com> wrote:
>> 
>>> Hello, every one.
>>> 
>>> I find a kernel module let shutdown time > 10min, so I want to run "rmmod xxx" before shutdown or
>>> reboot. How to do this job in guix system?
>> 
>> Hmmm...Could you potentially blacklist the module?
>> 
>> https://guix.gnu.org/manual/en/html_node/Bootloader-Configuration.html
>> 
>> The linux-arguments may be a way to blacklist kernel modules.
>> 
>> May I ask why you wish to remove the module before shutdown or reboot?
>> 
>> Also which kernel module?
>> 
>>> 
>>> Thanks!

      reply	other threads:[~2022-02-26  0:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-22  2:41 How to run "rmmod xxx" when I shutdown my computer tumashu
2022-02-22 22:47 ` jbranso
2022-02-22 22:59   ` tumashu
2022-02-23 18:49   ` jbranso--- via
2022-02-25 23:51   ` jbranso
2022-02-26  0:16     ` tumashu [this message]

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=76290968.18d.17f3362c6ad.Coremail.tumashu@163.com \
    --to=tumashu@163.com \
    --cc=help-guix@gnu.org \
    --cc=jbranso@dismail.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 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.