unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59748: task init:1 blocked
@ 2022-12-01 20:42 Christopher Howard
  2022-12-02 17:09 ` Christopher Howard
  0 siblings, 1 reply; 2+ messages in thread
From: Christopher Howard @ 2022-12-01 20:42 UTC (permalink / raw)
  To: 59748

[-- Attachment #1: Type: text/plain, Size: 1743 bytes --]

I did a system reconfigure today, and I have a boot failure when I use the new system profile. More specifically, after I load the kernel (6.0.10) then I get to a boot message that the kernel modules are loading. If I wait long enough, eventually I get a message "task init:1 blocked for more than 120 seconds", which repeats every two minutes or so. The keyboard still works (I can enter a newline and watch the cursor move) but I cannot enter commands. I am using a LUKS encrypted system, and the hangup occurs in between the point were the (initially decrypted) kernel loads and the time when I would enter the password to unlock the main filesystem.

My last system upgrade was on October 31. That profile still works.

I will attach my system manifest file.

Here is my system information (running under the old profile):

```
christopher@theoden ~$ neofetch --stdout
christopher@theoden 
------------------- 
OS: Guix System x86_64 
Host: OptiPlex 9020 00 
Kernel: 5.19.17-gnu 
Uptime: 19 mins 
Packages: 93 (guix-system), 182 (guix-user) 
Shell: bash 5.1.8 
Resolution: 1920x1080 
DE: GNOME 
Theme: Adwaita [GTK2/3] 
Icons: Adwaita [GTK2/3] 
Terminal: .gnome-terminal 
CPU: Intel i5-4570 (4) @ 3.600GHz 
GPU: Intel HD Graphics 
GPU: AMD ATI Radeon HD 8490 / R5 235X OEM 
Memory: 1425MiB / 7867MiB 
```

Here is the guix commit I pulled:

```
christopher@theoden ~$ guix describe
Generation 42	Dec 01 2022 08:57:30	(current)
  guix df25165
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: df25165530352161d6110466b2c9dbae7dc7e282
```

-- 
📛 Christopher Howard
🚀 gemini://gem.librehacker.com
🌐 http://gem.librehacker.com

בראשית ברא אלהים את השמים ואת הארץ

[-- Attachment #2: theoden-system.scm --]
[-- Type: text/plain, Size: 3225 bytes --]

;; -*- geiser-scheme-implementation: guile -*-

(use-modules (gnu)
	     (gnu packages cups)
	     (gnu packages gnome)
	     (gnu packages scanner))

(use-service-modules desktop networking ssh xorg cups)

(operating-system
 (locale "en_US.utf8")
 (timezone "America/Anchorage")
 (keyboard-layout
  (keyboard-layout "us" "altgr-intl" #:options '("ctrl:swapcaps")))
 (bootloader
  (bootloader-configuration
   (bootloader grub-bootloader)
   (targets (list "/dev/sda"))
   (keyboard-layout keyboard-layout)))
 (kernel-arguments (cons "cpufreq.default_governor=conservative"
			 %default-kernel-arguments))
 (mapped-devices
    (list (mapped-device
            (source
              (uuid "32325179-3734-4223-9d4a-fe15aeca876a"))
            (target "cryptroot")
            (type luks-device-mapping))))
  (file-systems
    (cons* (file-system
             (mount-point "/")
             (device "/dev/mapper/cryptroot")
             (type "ext4")
             (dependencies mapped-devices))
;	   %fuse-control-file-system
           %base-file-systems))
  (host-name "theoden")
  (users (cons* (user-account
		 (name "christopher")
		 (comment "Christopher Howard")
		 (group "users")
		 (home-directory "/home/christopher")
		 (supplementary-groups
		  '("wheel" "netdev" "audio" "video"
		    "dialout" "lp" "disk" "floppy"
		    "cdrom" "lpadmin" "kvm")))
		%base-user-accounts))
  (packages
   (append
    (list
     (list (specification->package "bind") "utils"))
   (append
    (map specification->package
	 '("cups"
	   "dosfstools"
	   "ed"
	   "evolution"
	   "evolution-data-server"
	   "file"
	   "font-adobe-source-code-pro"
	   "font-dejavu"
	   "font-fantasque-sans"
	   "font-fira-mono"
           "font-ghostscript"
	   "font-gnu-freefont"
	   "font-google-noto"
	   "font-hermit"
	   "font-inconsolata"
	   "font-mononoki"
	   "font-tamzen"
           "gnome-dictionary"
	   "gnome-maps"
	   "gnome-tweaks"
	   "gsettings-desktop-schemas"
	   "mg"
	   "neofetch"
	   "nss-certs"
	   "procenv"
	   "recutils"
	   "sane-backends"
	   "screen"
	   "seahorse"
	   "s-tui"
	   "simple-scan"
	   "torsocks"
	   "tmon"
	   "tree"
	   "turbostat"
	   "wget"))
   %base-packages)))

 (services
  (modify-services
   (cons*
    (service gnome-desktop-service-type)
    (service tor-service-type)
    (rngd-service)
    (service openssh-service-type)
    (set-xorg-configuration
     (xorg-configuration
      (keyboard-layout keyboard-layout)))
    (service cups-service-type
	     (cups-configuration
	      (web-interface? #t)
	      (log-level 'debug)
	      (access-log-level 'all)
	      (extensions
	       (list hplip-minimal cups-filters))))
    (udev-rules-service
     'usbasp
     (udev-rule
      "99-USBasp.rules"
      (string-append
       "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\", "
       "ATTRS{idVendor}==\"16c0\", ATTRS{idProduct}==\"05dc\", "
       "MODE=\"0666\"")))
    %desktop-services)
   (udev-service-type
    config =>
    (udev-configuration
     (inherit config)
     (rules (cons sane-backends
		  (udev-configuration-rules config)))))
   (guix-service-type
    config =>
    (guix-configuration
     (inherit config)
     (extra-options (list "--gc-keep-outputs=yes")))))))

^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#59748: task init:1 blocked
  2022-12-01 20:42 bug#59748: task init:1 blocked Christopher Howard
@ 2022-12-02 17:09 ` Christopher Howard
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Howard @ 2022-12-02 17:09 UTC (permalink / raw)
  To: 59748

For additional troubleshooting, I modified my system profile by adding (kernel (specification->package "linux-libre@5.15")) to use the older kernel version. I am able to boot into that modified profile without issues. So clearly there is something broken in relationship to the upgrade to linux-libre 6.0.10.

Christopher Howard




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-02 17:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-01 20:42 bug#59748: task init:1 blocked Christopher Howard
2022-12-02 17:09 ` Christopher Howard

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).