View previous topic :: View next topic |
Author |
Message |
nnnv n00b
Joined: 15 Jan 2025 Posts: 3
|
Posted: Wed Jan 15, 2025 12:44 pm Post subject: going bald - dracut stuck on boot, not recognizing my disk |
|
|
Everything works with the dist-kernel, tried to boot my custom kernel I set up for the first time, but dracut is still (after numerous times of tweaking the config) getting stuck on boot and throwing an emeregency shell...
Message i get on boot:
Code: | Starting systemd-udevd version 254
Failed to send request to update enviroment: Connection refused
/init: line 160: 309 Aborted
/init: line 161: 310 Aborted
dracut Warning: Could not boot.
dracut Warning: /dev/disk/by-uuid/(uuid) does not exist
Dropping to debug shell.
|
Appreciate any help, banging my head against this for the last week hah
Also dropping my config file:
https://www.dropbox.com/scl/fi/2xp50m5enlbd83aavh2ua/.config.txt?rlkey=1n8pwrkzmeay4qig8f9j67mpc&st=nl8tkxmv&dl=0
[Administrator edit: added [code] tags to preserve output layout. -Hu] |
|
Back to top |
|
|
pietinger Moderator
Joined: 17 Oct 2006 Posts: 5348 Location: Bavaria
|
Posted: Thu Jan 16, 2025 8:33 pm Post subject: |
|
|
You have configured a monolithic kernel (like me) and I guess you are missing some options, e.g. ->
Code: | 1.
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
2.
CONFIG_DRM_SIMPLEDRM=y
3.
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
4.
CONFIG_EXT2_FS=y
CONFIG_EXT3_FS=y
CONFIG_EXT4_FS=y
# CONFIG_EXT4_FS_POSIX_ACL is not set
5.
# CONFIG_GENTOO_LINUX_INIT_SCRIPT is not set
# CONFIG_GENTOO_LINUX_INIT_SYSTEMD is not set |
1. Maybe you need it
2. Makes more problems than it resolves
3. Enable it.
4. You dont need EXT2 and 3 if you have EXT4 (EXT4 can process EVERYTHING) ... but you really need POSIX
5. Enable it.
Another question is: Why do you need an initramfs? Do you use an encrypted root?
Maybe have a look here: https://wiki.gentoo.org/wiki/User:Pietinger/Tutorials/Manual_kernel_configuration _________________ https://wiki.gentoo.org/wiki/User:Pietinger |
|
Back to top |
|
|
nnnv n00b
Joined: 15 Jan 2025 Posts: 3
|
|
Back to top |
|
|
nnnv n00b
Joined: 15 Jan 2025 Posts: 3
|
Posted: Fri Jan 17, 2025 10:42 am Post subject: |
|
|
i'm sure it is one crucial option i forgot to set, but i have no luck in figuring out which one haha |
|
Back to top |
|
|
pietinger Moderator
Joined: 17 Oct 2006 Posts: 5348 Location: Bavaria
|
Posted: Fri Jan 17, 2025 12:18 pm Post subject: |
|
|
nnnv wrote: | i'm sure it is one crucial option i forgot to set, but i have no luck in figuring out which one haha |
Yes, it is this one:
Code: | # CONFIG_FUTEX is not set |
I suggest to enable also:
Code: | # CONFIG_FHANDLE is not set
# CONFIG_POSIX_TIMERS is not set
# CONFIG_PRINTK is not set
# CONFIG_ADVISE_SYSCALLS is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set |
_________________ https://wiki.gentoo.org/wiki/User:Pietinger |
|
Back to top |
|
|
|