You are not logged in.

#1 2018-07-24 01:52:26

Swayland
Member
Registered: 2018-06-28
Posts: 23

[SOLVED]Kernel Panic Requested init failed

So I don't really know what I did to trigger this. When I try to boot, I'm getting these error messages (please see the images attached below). I have two kernels installed: One is the default and the other is linux-x205ta. I read the arch wiki pages on kernel panic, but I could not get to my os without booting from a live cd and using arch-chroot. I don't think this was caused by the intel_sst_acpi error since I get that every time I boot. I don't really know what's going on.

Stuff I've Tried:
- Using mkinitcpio -p linux and mkinitcpio -p linux-x205ta
- Updating grub with grub-mkconfig
- Reinstalling grub completely
- Updating the entire system
- Switch kernels and boot with fallback initramfs

Stuff I'm going to try later:
- Remove intel-ucode completely and try to boot without it
- Rollback

Config files and command outputs that might be helpful:

I use f2fs with a root, boot and swap partition. (No separate home partition) My machine is Asus x205ta, and i use the linux-x205ta kernel by default. Here are the kernel messages.

https://photos.app.goo.gl/UdHo34qo3FqvGxJd8
https://photos.app.goo.gl/oXXvacDnQewT8zz19
https://photos.app.goo.gl/qLHJgE7VM5pGNsjq7

My /etc/fstab:

# Static information about the filesystems.
# See fstab(5) for details.

# <file system> <dir> <type> <options> <dump> <pass>
# /dev/mmcblk1p1
UUID=a7da7e07-17e8-4ddd-a6b0-df0e278024b2	/         	f2fs      	rw,relatime,lazytime,background_gc=on,no_heap,inline_xattr,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6	0 0

# /dev/mmcblk1p2
UUID=7EF0-8035      	/boot     	vfat      	rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro	0 2

# /dev/mmcblk1p3
UUID=10a8edf2-5e90-4b57-bb3f-f78b1f8cfe77	none      	swap      	defaults,pri=-2	0 0

My grub.cfg file

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if loadfont unicode ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-/dev/mmcblk1p1' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod fat
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root  7EF0-8035
	else
	  search --no-floppy --fs-uuid --set=root 7EF0-8035
	fi
	echo	'Loading Linux linux-x205ta ...'
	linux	/vmlinuz-linux-x205ta root=/dev/mmcblk1p1 rw  quiet intel_idle.max_cstate=1 init=/usr/lib/systemd/systemd
	echo	'Loading initial ramdisk ...'
	initrd	/intel-ucode.img /initramfs-linux-x205ta.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-/dev/mmcblk1p1' {
	menuentry 'Arch Linux, with Linux linux-x205ta' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-x205ta-advanced-/dev/mmcblk1p1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod fat
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  7EF0-8035
		else
		  search --no-floppy --fs-uuid --set=root 7EF0-8035
		fi
		echo	'Loading Linux linux-x205ta ...'
		linux	/vmlinuz-linux-x205ta root=/dev/mmcblk1p1 rw  quiet intel_idle.max_cstate=1 init=/usr/lib/systemd/systemd
		echo	'Loading initial ramdisk ...'
		initrd	/intel-ucode.img /initramfs-linux-x205ta.img
	}
	menuentry 'Arch Linux, with Linux linux-x205ta (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-x205ta-fallback-/dev/mmcblk1p1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod fat
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  7EF0-8035
		else
		  search --no-floppy --fs-uuid --set=root 7EF0-8035
		fi
		echo	'Loading Linux linux-x205ta ...'
		linux	/vmlinuz-linux-x205ta root=/dev/mmcblk1p1 rw  quiet intel_idle.max_cstate=1 init=/usr/lib/systemd/systemd
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-x205ta-fallback.img
	}
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-/dev/mmcblk1p1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod fat
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  7EF0-8035
		else
		  search --no-floppy --fs-uuid --set=root 7EF0-8035
		fi
		echo	'Loading Linux linux ...'
		linux	/vmlinuz-linux root=/dev/mmcblk1p1 rw  quiet intel_idle.max_cstate=1 init=/usr/lib/systemd/systemd
		echo	'Loading initial ramdisk ...'
		initrd	/intel-ucode.img /initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-/dev/mmcblk1p1' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod fat
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root  7EF0-8035
		else
		  search --no-floppy --fs-uuid --set=root 7EF0-8035
		fi
		echo	'Loading Linux linux ...'
		linux	/vmlinuz-linux root=/dev/mmcblk1p1 rw  quiet intel_idle.max_cstate=1 init=/usr/lib/systemd/systemd
		echo	'Loading initial ramdisk ...'
		initrd	/initramfs-linux-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

Last edited by Swayland (2018-07-31 00:59:42)

Offline

#2 2018-07-24 02:00:39

loqs
Member
Registered: 2014-03-06
Posts: 18,956

Re: [SOLVED]Kernel Panic Requested init failed

What kernel versions have you tried that have the issue?  What is the kernel version on the live media which does not have the issue?

Offline

#3 2018-07-24 04:31:28

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

The kernel version of the live media is 4.16.12-1 and the one that has the issue version 4.17.8-1. But rolling back to 4.16.12-1 does not help. I still get the same error.

Offline

#4 2018-07-24 10:13:54

loqs
Member
Registered: 2014-03-06
Posts: 18,956

Re: [SOLVED]Kernel Panic Requested init failed

If you use Arch_Linux_Archive#How_to_restore_all_packages_to_a_specific_date to downgrade the system to a known good date does that work?

Offline

#5 2018-07-24 21:30:38

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

Full rollback doesn't help either.

Offline

#6 2018-07-24 21:37:51

loqs
Member
Registered: 2014-03-06
Posts: 18,956

Re: [SOLVED]Kernel Panic Requested init failed

Chroot in from the live media what is the output of the following

pacman -Qkk filesystem systemd
stat /usr/lib/systemd/systemd

Offline

#7 2018-07-24 22:08:09

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

warning: filesystem: /usr (UID mismatch)
warning: filesystem: /usr (GID mismatch)
warning: filesystem: /usr/lib64 (No such file or directory)
warning: filesystem: /usr/lib (UID mismatch)
warning: filesystem: /usr/lib (GID mismatch)
warning: systemd: /usr (UID mismatch)
warning: systemd: /usr (GID mismatch)
warning: systemd: /usr/lib (UID mismatch)
warning: systemd: /usr/lib (GID mismatch)
backup file: filesystem: /etc/fstab (Modification time mismatch)
backup file: filesystem: /etc/fstab (Size mismatch)
backup file: filesystem: /etc/group (Modification time mismatch)
backup file: filesystem: /etc/group (Size mismatch)
backup file: filesystem: /etc/gshadow (Modification time mismatch)
backup file: filesystem: /etc/gshadow (Size mismatch)
backup file: filesystem: /etc/hosts (Modification time mismatch)
backup file: filesystem: /etc/hosts (Size mismatch)
backup file: filesystem: /etc/nsswitch.conf (Modification time mismatch)
backup file: filesystem: /etc/nsswitch.conf (Size mismatch)
backup file: filesystem: /etc/passwd (Modification time mismatch)
backup file: filesystem: /etc/passwd (Size mismatch)
backup file: filesystem: /etc/shadow (Modification time mismatch)
backup file: filesystem: /etc/shadow (Size mismatch)
backup file: filesystem: /etc/shells (Modification time mismatch)
backup file: filesystem: /etc/shells (Size mismatch)
filesystem: 111 total files, 3 altered files
systemd: 1443 total files, 2 altered files

And for the second command:

  File: /usr/lib/systemd/systemd
  Size: 1640616   	Blocks: 3208       IO Block: 4096   regular file
Device: b301h/45825d	Inode: 246054      Links: 1
Access: (0755/-rwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2018-07-24 14:24:19.000000000 -0700
Modify: 2018-06-12 13:09:20.000000000 -0700
Change: 2018-07-24 14:24:19.680305121 -0700
 Birth: -

Offline

#8 2018-07-24 22:26:35

loqs
Member
Registered: 2014-03-06
Posts: 18,956

Re: [SOLVED]Kernel Panic Requested init failed

warning: filesystem: /usr/lib64 (No such file or directory)

Have you installed anything as root that might have deleted /usr/lib64?
From the chroot hat is the output of

stat /usr
stat /usr/lib

Offline

#9 2018-07-25 00:20:32

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

  File: /usr
  Size: 3488      	Blocks: 7          IO Block: 4096   directory
Device: b301h/45825d	Inode: 337         Links: 9
Access: (0755/drwxr-xr-x)  Uid: ( 8070/ UNKNOWN)   Gid: ( 9999/ UNKNOWN)
Access: 2018-07-24 15:10:40.336819243 -0700
Modify: 2018-07-24 14:26:56.186961729 -0700
Change: 2018-07-24 14:26:56.186961729 -0700
 Birth: -
  File: /usr/lib
  Size: 192512    	Blocks: 256        IO Block: 4096   directory
Device: b301h/45825d	Inode: 2519        Links: 136
Access: (0755/drwxr-xr-x)  Uid: ( 8070/ UNKNOWN)   Gid: ( 9999/ UNKNOWN)
Access: 2018-07-24 14:25:32.933633746 -0700
Modify: 2018-07-24 14:25:32.906967081 -0700
Change: 2018-07-24 14:25:32.906967081 -0700
 Birth: -

Should the /lib64 directory be linked to the /usr/lib64 directory? If so could you post the archwiki page I should look at to make that happen? I don't think I installed any packages that deleted /usr/lib64...

Last edited by Swayland (2018-07-25 00:27:43)

Offline

#10 2018-07-25 07:29:10

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

Just symlink it.
The UIDs/GIDs are strange, something™ for sure blasted your installation.

Search for all files belonging to this UID,

find / -uid 8070

maybe this gives you an idea what screwed up your system (likely some AUR package or something completely bypassing the package manager)

To restore all ownership/permissions you can use https://github.com/andrewgregory/pacuti … irfile.pod but
a) shoud do that after identifying the culprit
b) this will not restore your filesystem (ie. broken or deleted symlinks) so you also should re-install the filesystem package

Offline

#11 2018-07-25 13:50:22

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

find: ‘/proc/647/task/647/fd/6’: No such file or directory
find: ‘/proc/647/task/647/fdinfo/6’: No such file or directory
find: ‘/proc/647/fd/5’: No such file or directory
find: ‘/proc/647/fdinfo/5’: No such file or directory
/usr
/usr/lib
/usr/lib/libtiff.so.3
/usr/lib/libtiff.so.3.6.1

Do you think libtiff screwed up my system? I'll try the pacutils thing after I get back from summerschool.

Offline

#12 2018-07-25 14:02:37

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

libtiff does NOT provide that file,

pacman -Qo /usr/lib/libtiff.so.3.6.1

There's also https://debianforum.de/forum/viewtopic.php?t=165869

Offline

#13 2018-07-25 17:44:30

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

That's weird. Pacman says that no package owns either file. I also checked with aurman that no AUR package owns this file. Does this mean I can safely delete it? I ran pacutils on /usr and /usr/lib. They now have the correct UID and GID. I recreated the symlink between lib64 and /usr/lib64. Should I be worried about this message?

find: ‘/proc/647/task/647/fd/6’: No such file or directory
find: ‘/proc/647/task/647/fdinfo/6’: No such file or directory
find: ‘/proc/647/fd/5’: No such file or directory
find: ‘/proc/647/fdinfo/5’: No such file or directory

Offline

#14 2018-07-25 18:18:49

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

Well, somehow™ the file ended up on your disk, it's some legacy tiff library and the weird UID/GID indicates that it did never get there using pacman, but likely some garbled standalone installer.
Deleting the file will likely break the program that installed it (anything you installed sidestepping the package manager, notably any binary-only program, is highly suspicious) and re-installing whatever caused this itfp. will break your system again.

The /proc/647 output is likely harmless, "cat /proc/647/cmdline" will tell you what process that is. Possibly find itself.

Offline

#15 2018-07-25 18:21:41

loqs
Member
Registered: 2014-03-06
Posts: 18,956

Re: [SOLVED]Kernel Panic Requested init failed

Have you reinstalled the filesystem package?

Offline

#16 2018-07-25 19:48:01

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

seth wrote:

Well, somehow™ the file ended up on your disk, it's some legacy tiff library and the weird UID/GID indicates that it did never get there using pacman, but likely some garbled standalone installer.

If that's the case it's probably because I tried to install this driver.

loqs wrote:

Have you reinstalled the filesystem package?

Should I try to reinstall the driver? It comes with a GUI installer, so I'm not entirely sure if I can run it through the chroot. I uninstalled the driver using the uninstall script because I got an error on install. (I got another error during uninstall, although I do not remember what it was). I removed the libtiff.so.3 and libtiff.so.3.6.1 files and tried to boot, but it still doesn't work.

Offline

#17 2018-07-25 20:05:15

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

That driver ships a libtiff and comes w/ a convoluted installer script (for its 30MB! wrapper around some PPDs and filters…) - there's https://aur.archlinux.org/packages/?K=d … ied-driver which you might be able to lift for your specific  driver.

Did you re-run mkinitcpio after fixing links and permissions?

Offline

#18 2018-07-25 21:28:55

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

Thanks seth and loqs! I am able to boot into my system now.

Offline

#19 2018-07-26 01:37:45

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

Actually I take that back sorry. I thought this would only be temporary but it doesnt seem so. Wifi has stopped working. I can use wifi-menu to scan for networks, but I cannot connect to them, so I don't think this is a problem with brcmfmac. I think this a continuation of the error caused by that driver.

-- Unit netctl@wlan0\x2dscorpion.service has begun starting up.
Jul 25 18:35:11 ARCHER network[11307]: Starting network profile 'wlan0-scorpion'...
Jul 25 18:35:11 ARCHER network[11307]: The interface of network profile 'wlan0-scorpion' is already up
Jul 25 18:35:11 ARCHER systemd[1]: netctl@wlan0\x2dscorpion.service: Main process exited, code=exited, status=1/FAILURE
Jul 25 18:35:11 ARCHER systemd[1]: netctl@wlan0\x2dscorpion.service: Failed with result 'exit-code'.
Jul 25 18:35:11 ARCHER systemd[1]: Failed to start Automatically generated profile by wifi-menu.
-- Subject: Unit netctl@wlan0\x2dscorpion.service has failed
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlan0\x2dscorpion.service has failed.

Also for some reason 'pacman -Qkk filesystem systemd' still gives one error I'm worried about:

backup file: filesystem: /etc/fstab (Modification time mismatch)
backup file: filesystem: /etc/fstab (Size mismatch)
backup file: filesystem: /etc/group (Modification time mismatch)
backup file: filesystem: /etc/group (Size mismatch)
backup file: filesystem: /etc/gshadow (Modification time mismatch)
backup file: filesystem: /etc/gshadow (Size mismatch)
backup file: filesystem: /etc/hosts (Modification time mismatch)
backup file: filesystem: /etc/hosts (Size mismatch)
backup file: filesystem: /etc/nsswitch.conf (Modification time mismatch)
backup file: filesystem: /etc/nsswitch.conf (Size mismatch)
backup file: filesystem: /etc/passwd (Modification time mismatch)
backup file: filesystem: /etc/passwd (Size mismatch)
backup file: filesystem: /etc/resolv.conf (Modification time mismatch)
backup file: filesystem: /etc/resolv.conf (Size mismatch)
backup file: filesystem: /etc/shadow (Modification time mismatch)
backup file: filesystem: /etc/shadow (Size mismatch)
backup file: filesystem: /etc/shells (Modification time mismatch)
backup file: filesystem: /etc/shells (Size mismatch)
warning: filesystem: /usr/lib64 (Symlink path mismatch)
warning: filesystem: /usr/lib64 (Modification time mismatch)
warning: filesystem: /usr/lib (UID mismatch)
warning: filesystem: /usr/lib (GID mismatch)
filesystem: 111 total files, 2 altered files
warning: systemd: /usr/lib (UID mismatch)
warning: systemd: /usr/lib (GID mismatch)
systemd: 1504 total files, 1 altered file

What does it mean by a symlink path mismatch? I thought I was just supposed to execute the command

ln -s /lib64 /usr/lib64

after I made the empty directory. Journalctl gives me this:

Jul 25 18:35:06 ARCHER sudo[11233]:    sushi : TTY=pts/0 ; PWD=/home/sushi ; USER=root ; COMMAND=/usr/bin/wifi-menu
Jul 25 18:35:06 ARCHER sudo[11233]: pam_unix(sudo:session): session opened for user root by (uid=0)
Jul 25 18:35:11 ARCHER systemd[1]: Starting Automatically generated profile by wifi-menu...
-- Subject: Unit netctl@wlan0\x2dscorpion.service has begun start-up
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlan0\x2dscorpion.service has begun starting up.
Jul 25 18:35:11 ARCHER network[11307]: Starting network profile 'wlan0-scorpion'...
Jul 25 18:35:11 ARCHER network[11307]: The interface of network profile 'wlan0-scorpion' is already up
Jul 25 18:35:11 ARCHER systemd[1]: netctl@wlan0\x2dscorpion.service: Main process exited, code=exited, status=1/FAILURE
Jul 25 18:35:11 ARCHER systemd[1]: netctl@wlan0\x2dscorpion.service: Failed with result 'exit-code'.
Jul 25 18:35:11 ARCHER systemd[1]: Failed to start Automatically generated profile by wifi-menu.
-- Subject: Unit netctl@wlan0\x2dscorpion.service has failed
-- Defined-By: systemd
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit netctl@wlan0\x2dscorpion.service has failed.

I don't know if this helps, but dmesg | grep error returns:

[    1.293240] intel_sst_acpi 80860F28:00: Direct firmware load for intel/fw_sst_0f28.bin failed with error -2
[    3.961420] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    4.105133] bluetooth hci0: Direct firmware load for brcm/BCM43341B0.hcd failed with error -2
[    4.331251] brcmfmac mmc0:0001:1: Direct firmware load for brcm/brcmfmac43340-sdio.clm_blob failed with error -2

Last edited by Swayland (2018-07-26 01:43:16)

Offline

#20 2018-07-26 05:45:16

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

The symlinks are relative and should both end in /usr/lib:

/lib64 -> usr/lib
/usr/lib64 -> lib

The ownership of /usr/lib is still wrong.

wifi-menu/netctl fails because the interface is already up, most likely due to a competing network manager. I'm not sure this is related to your original issue.


pacman -Qkk linux-firmware

And please paste a complete journal of the boot.

Offline

#21 2018-07-26 17:39:48

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

I don't have a competing network manager. It was working fine before. Fixed ownership of /usr/lib. Full output of dmesg:

[    0.000000] Linux version 4.17.3-1-x205ta (sushi@ARCHER) (gcc version 8.1.1 20180531 (GCC)) #1 SMP PREEMPT Tue Jul 17 13:48:07 PDT 2018
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-x205ta root=/dev/mmcblk1p1 rw quiet intel_idle.max_cstate=1
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000007bf0afff] usable
[    0.000000] BIOS-e820: [mem 0x000000007bf0b000-0x000000007bf3afff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007bf3b000-0x000000007bf6efff] ACPI datapacman -Qkk linux-firmware
[    0.000000] BIOS-e820: [mem 0x000000007bf6f000-0x000000007c037fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007c038000-0x000000007c91ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007c920000-0x000000007c97bfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007c97c000-0x000000007c983fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007c984000-0x000000007c984fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007c985000-0x000000007cbfffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi:  ACPI=0x7bf6e000  ACPI 2.0=0x7bf6e014  ESRT=0x7bf3a000  SMBIOS=0x7c984190 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. X205TA/X205TA, BIOS X205TA.205 10/06/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7cc00 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07E000000 mask FFE000000 uncachable
[    0.000000]   2 base 07D000000 mask FFF000000 uncachable
[    0.000000]   3 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   4 base 07CE00000 mask FFFE00000 uncachable
[    0.000000]   5 base 07CD00000 mask FFFF00000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] esrt: ESRT header is not in the memory map.
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [        (ptrval)] 44000 size 24576
[    0.000000] BRK [0x5292b000, 0x5292bfff] PGTABLE
[    0.000000] BRK [0x5292c000, 0x5292cfff] PGTABLE
[    0.000000] BRK [0x5292d000, 0x5292dfff] PGTABLE
[    0.000000] BRK [0x5292e000, 0x5292efff] PGTABLE
[    0.000000] BRK [0x5292f000, 0x5292ffff] PGTABLE
[    0.000000] BRK [0x52930000, 0x52930fff] PGTABLE
[    0.000000] BRK [0x52931000, 0x52931fff] PGTABLE
[    0.000000] Secure boot could not be determined
[    0.000000] RAMDISK: [mem 0x3701f000-0x37806fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000007BF6E014 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x000000007BF6D0F8 0000D4 (v01 _ASUS_ Notebook 00000003 MSFT 0100000D)
[    0.000000] ACPI: FACP 0x000000007BF69000 00010C (v05 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: DSDT 0x000000007BF52000 0126F4 (v02 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: TCPA 0x000000007BF6C000 000032 (v02                 00000000      00000000)
[    0.000000] ACPI: UEFI 0x000000007BFEB000 000042 (v01 _ASUS_ Notebook 00000000      00000000)
[    0.000000] ACPI: OEM0 0x000000007BF6B000 000084 (v05 _ASUS_ BATTERY  00000003 AMI  0100000D)
[    0.000000] ACPI: DBG2 0x000000007BF6A000 000072 (v00 _ASUS_ INTLDBG2 00000003 AMI  0100000D)
[    0.000000] ACPI: HPET 0x000000007BF68000 000038 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: LPIT 0x000000007BF67000 000104 (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: APIC 0x000000007BF66000 00006C (v03 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: MCFG 0x000000007BF65000 00003C (v01 _ASUS_ Notebook 00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF51000 000603 (v01 _ASUS_ CpuDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF4F000 001BE2 (v01 _ASUS_ DptfTab  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF4E000 000058 (v01 _ASUS_ LowPwrM  00000003 AMI  0100000D)
[    0.000000] ACPI: SSDT 0x000000007BF4D000 0000FF (v01 _ASUS_ SoCDptf  00000003 AMI  0100000D)
[    0.000000] ACPI: FPDT 0x000000007BF4C000 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x000000007BF4B000 000763 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF4A000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF49000 00017A (v01 PmRef  ApTst    00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x000000007BF48000 000427 (v01 Intel_ Tpm2Tabl 00001000 INTL 20061109)
[    0.000000] ACPI: TPM2 0x000000007BF47000 000034 (v03                 00000000      00000000)
[    0.000000] ACPI: BGRT 0x000000007BF46000 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: CSRT 0x000000007BF45000 00014C (v00 _ASUS_ Notebook 00000005 INTL 20120624)
[    0.000000] ACPI: MSDM 0x000000007BF39F90 000055 (v03 _ASUS_ Notebook 00000000 ASUS 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000007cbfffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x000000007bf0afff]
[    0.000000]   node   0: [mem 0x000000007c97c000-0x000000007c983fff]
[    0.000000]   node   0: [mem 0x000000007c985000-0x000000007cbfffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007cbfffff]
[    0.000000] On node 0 totalpages: 507690
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 104 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7920 pages used for memmap
[    0.000000]   DMA32 zone: 503694 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 100 pages
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics memory at [mem 0x7cf00000-0x7eefffff]
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-86
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf0b000-0x7bf3afff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf3b000-0x7bf6efff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf6f000-0x7c037fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c038000-0x7c91ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c920000-0x7c97bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c984000-0x7c984fff]
[    0.000000] e820: [mem 0x7ef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] random: get_random_bytes called from start_kernel+0x9b/0x52c with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 43 pages/cpu @        (ptrval) s136920 r8192 d31016 u524288
[    0.000000] pcpu-alloc: s136920 r8192 d31016 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 499602
[    0.000000] Kernel command line: button.lid_init_state=open systemd.gpt_auto=0 nmi_watchdog=0 BOOT_IMAGE=/vmlinuz-linux-x205ta root=/dev/mmcblk1p1 rw quiet intel_idle.max_cstate=1
[    0.000000] ACPI: button: Notify initial lid state as open
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 1904168K/2030760K available (12300K kernel code, 1312K rwdata, 2780K rodata, 1416K init, 1280K bss, 126592K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 35963 entries in 141 pages
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 4352, nr_irqs: 1024, preallocated irqs: 0
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] ACPI: Core revision 20180313
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] tsc: Detected 1332.800 MHz processor
[    0.000023] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x133626f6b26, max_idle_ns: 440795214178 ns
[    0.000029] Calibrating delay loop (skipped), value calculated using timer frequency.. 2666.66 BogoMIPS (lpj=4442666)
[    0.000036] pid_max: default: 32768 minimum: 301
[    0.001678] Security Framework initialized
[    0.001683] Yama: becoming mindful.
[    0.001724] AppArmor: AppArmor initialized
[    0.001779] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.001792] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.002263] CPU: Physical Processor ID: 0
[    0.002266] CPU: Processor Core ID: 0
[    0.002276] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.002278] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.002292] mce: CPU supports 6 MCE banks
[    0.002303] CPU0: Thermal monitoring enabled (TM1)
[    0.002308] process: using mwait in idle threads
[    0.002315] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.002318] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.002323] Spectre V2 : Mitigation: Full generic retpoline
[    0.002657] Freeing SMP alternatives memory: 28K
[    0.003333] TSC deadline timer enabled
[    0.003333] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3735F @ 1.33GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.016692] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[    0.016719] ... version:                3
[    0.016721] ... bit width:              40
[    0.016723] ... generic registers:      2
[    0.016726] ... value mask:             000000ffffffffff
[    0.016728] ... max period:             0000007fffffffff
[    0.016729] ... fixed-purpose events:   3
[    0.016731] ... event mask:             0000000700000003
[    0.020022] Hierarchical SRCU implementation.
[    0.030032] smp: Bringing up secondary CPUs ...
[    0.050043] x86: Booting SMP configuration:
[    0.050047] .... node  #0, CPUs:      #1 #2 #3
[    0.091490] smp: Brought up 1 node, 4 CPUs
[    0.091490] smpboot: Max logical packages: 1
[    0.091490] smpboot: Total of 4 processors activated (10666.66 BogoMIPS)
[    0.091490] devtmpfs: initialized
[    0.091490] x86/mm: Memory block size: 128MB
[    0.093699] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.093699] PM: Registering ACPI NVS region [mem 0x7bf6f000-0x7c037fff] (823296 bytes)
[    0.093699] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.093699] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.093699] pinctrl core: initialized pinctrl subsystem
[    0.093816] NET: Registered protocol family 16
[    0.094000] audit: initializing netlink subsys (disabled)
[    0.094020] audit: type=2000 audit(1532620300.093:1): state=initialized audit_enabled=0 res=1
[    0.094020] cpuidle: using governor ladder
[    0.094020] cpuidle: using governor menu
[    0.094020] ACPI: bus type PCI registered
[    0.094020] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.094020] PCI: Using configuration type 1 for base access
[    0.099482] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.100093] cryptd: max_cpu_qlen set to 1000
[    0.100223] ACPI: Added _OSI(Module Device)
[    0.100226] ACPI: Added _OSI(Processor Device)
[    0.100229] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.100231] ACPI: Added _OSI(Processor Aggregator Device)
[    0.100234] ACPI: Added _OSI(Linux-Dell-Video)
[    0.160159] ACPI: 9 ACPI AML tables successfully acquired and loaded
[    0.181044] ACPI: Dynamic OEM Table Load:
[    0.181067] ACPI: SSDT 0xFFFF9B1739352000 000501 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.183013] ACPI: Dynamic OEM Table Load:
[    0.183031] ACPI: SSDT 0xFFFF9B1739354000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.185661] ACPI: Dynamic OEM Table Load:
[    0.185678] ACPI: SSDT 0xFFFF9B173937D800 00015F (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.186827] ACPI: Dynamic OEM Table Load:
[    0.186844] ACPI: SSDT 0xFFFF9B17393BFD80 00008D (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.193529] ACPI: Interpreter enabled
[    0.193584] ACPI: (supports S0 S5)
[    0.193588] ACPI: Using IOAPIC for interrupt routing
[    0.193707] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.202409] ACPI: Power Resource [USBC] (on)
[    0.213661] ACPI: Power Resource [PLPE] (on)
[    0.223511]  (null): Device [PWM1] is in always present list
[    0.230341] ACPI: Power Resource [CLK0] (on)
[    0.230500] ACPI: Power Resource [CLK1] (on)
[    0.231547] ACPI: Power Resource [P28T] (off)
[    0.231712] ACPI: Power Resource [P18T] (off)
[    0.238389] ACPI: Power Resource [P28X] (off)
[    0.238550] ACPI: Power Resource [P18X] (off)
[    0.238718] ACPI: Power Resource [P28P] (off)
[    0.238878] ACPI: Power Resource [P18P] (off)
[    0.239057] ACPI: Power Resource [P1XT] (off)
[    0.241334] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.250467] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.250484] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.250718] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.252378] PCI host bridge to bus 0000:00
[    0.252386] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.252391] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.252395] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.252399] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.252404] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.252408] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.252412] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.252416] pci_bus 0000:00: root bus resource [mem 0x90c00000-0x90ffffff window]
[    0.252420] pci_bus 0000:00: root bus resource [mem 0x7cf00001-0x7ef00000 window]
[    0.252424] pci_bus 0000:00: root bus resource [mem 0x80000000-0x908ffffe window]
[    0.252428] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.252433] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.252450] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.252778] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.252799] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
[    0.252814] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[    0.252827] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.252857] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.253182] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.253212] pci 0000:00:1a.0: reg 0x10: [mem 0x90700000-0x907fffff]
[    0.253226] pci 0000:00:1a.0: reg 0x14: [mem 0x90600000-0x906fffff]
[    0.253325] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.253627] pci 0000:00:1d.0: [8086:0f34] type 00 class 0x0c0320
[    0.253663] pci 0000:00:1d.0: reg 0x10: [mem 0x9080d000-0x9080d3ff]
[    0.253794] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.254087] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.254436] pci_bus 0000:00: on NUMA node 0
[    0.255801] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.256165] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.256520] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.256880] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.257234] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.257589] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.257943] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.258299] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.261451] ACPI: \: failed to evaluate _DSM (0x1001)
[    0.310318] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    0.343650] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    0.344137] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.344137] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.344137] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.344137] vgaarb: loaded
[    0.344137] ACPI: bus type USB registered
[    0.344137] usbcore: registered new interface driver usbfs
[    0.344137] usbcore: registered new interface driver hub
[    0.344137] usbcore: registered new device driver usb
[    0.456674] random: fast init done
[    0.558442] EDAC MC: Ver: 3.0.0
[    0.558623] Registered efivars operations
[    0.563413] Advanced Linux Sound Architecture Driver Initialized.
[    0.563417] PCI: Using ACPI for IRQ routing
[    0.563421] PCI: pci_cache_line_size set to 64 bytes
[    0.563447] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.563453] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.563456] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.563459] e820: reserve RAM buffer [mem 0x7bf0b000-0x7bffffff]
[    0.563463] e820: reserve RAM buffer [mem 0x7c984000-0x7fffffff]
[    0.563467] e820: reserve RAM buffer [mem 0x7cc00000-0x7fffffff]
[    0.563708] NetLabel: Initializing
[    0.563711] NetLabel:  domain hash size = 128
[    0.563713] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.563759] NetLabel:  unlabeled traffic allowed by default
[    0.564894] clocksource: Switched to clocksource tsc-early
[    0.592104] VFS: Disk quotas dquot_6.6.0
[    0.592149] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.592437] AppArmor: AppArmor Filesystem Enabled
[    0.592487] pnp: PnP ACPI init
[    0.592650] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.593389] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.593396] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.593400] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.593405] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.593410] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.593425] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.593855] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.596613] system 00:03: [io  0x0240-0x0259] has been reserved
[    0.596629] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.612007] pnp: PnP ACPI: found 4 devices
[    0.616764] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.616771] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.616775] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.616780] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.616784] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.616789] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.616793] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.616798] pci_bus 0000:00: resource 11 [mem 0x90c00000-0x90ffffff window]
[    0.616802] pci_bus 0000:00: resource 12 [mem 0x7cf00001-0x7ef00000 window]
[    0.616806] pci_bus 0000:00: resource 13 [mem 0x80000000-0x908ffffe window]
[    0.616811] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.617089] NET: Registered protocol family 2
[    0.617427] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes)
[    0.617448] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.617519] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.617635] TCP: Hash tables configured (established 16384 bind 16384)
[    0.617711] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.617738] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.617852] NET: Registered protocol family 1
[    0.617887] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.618395] PCI: CLS 0 bytes, default 64
[    0.618509] Unpacking initramfs...
[    0.860731] Freeing initrd memory: 8096K
[    0.860876] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x133626f6b26, max_idle_ns: 440795214178 ns
[    0.860922] clocksource: Switched to clocksource tsc
[    0.861994] Scanning for low memory corruption every 60 seconds
[    0.863510] Initialise system trusted keyrings
[    0.863640] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.867262] zbud: loaded
[    0.867951] pstore: using lz4hc compression
[    0.872364] NET: Registered protocol family 38
[    0.872454] Key type asymmetric registered
[    0.872457] Asymmetric key parser 'x509' registered
[    0.872560] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.872659] io scheduler noop registered
[    0.872662] io scheduler deadline registered
[    0.872789] io scheduler cfq registered (default)
[    0.872793] io scheduler mq-deadline registered
[    0.872795] io scheduler kyber registered
[    0.872814] io scheduler bfq registered
[    0.873170] efifb: probing for efifb
[    0.873201] efifb: framebuffer at 0x80000000, using 4160k, total 4160k
[    0.873204] efifb: mode is 1366x768x32, linelength=5504, pages=1
[    0.873206] efifb: scrolling: redraw
[    0.873210] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.884010] Console: switching to colour frame buffer device 170x48
[    0.894202] fb0: EFI VGA frame buffer device
[    0.894230] intel_idle: MWAIT substates: 0x33000020
[    0.894233] intel_idle: v0.4.1 model 0x37
[    0.894242] intel_idle: max_cstate 1 reached
[    0.894481] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.902638] ACPI: AC Adapter [ADP1] (off-line)
[    0.902821] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.902843] ACPI: Lid Switch [LID]
[    0.902943] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.902964] ACPI: Power Button [PWRB]
[    0.903061] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.903086] ACPI: Sleep Button [SLPB]
[    0.909654] [Firmware Bug]: No valid trip found
[    0.910211] EINJ: EINJ table not found.
[    0.910213] ERST DBG: ERST support is disabled.
[    0.910525] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.930831] 00:02: ttyS0 at I/O 0x3f8 (irq = 27, base_baud = 115200) is a 16550A
[    0.931938] hpet: number irqs doesn't agree with number of timers
[    0.932017] Linux agpgart interface v0.103
[    0.932829] rtc_cmos 00:00: registered as rtc0
[    0.932874] rtc_cmos 00:00: no alarms, 242 bytes nvram
[    0.933098] intel_pstate: Intel P-state driver initializing
[    0.933332] sdhci: Secure Digital Host Controller Interface driver
[    0.933381] sdhci: Copyright(c) Pierre Ossman
[    0.935194] mmc0: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    0.951449] mmc1: SDHCI controller on ACPI [80860F14:00] using ADMA
[    0.955987] ACPI: Battery Slot [BATC] (battery present)
[    0.956907] mmc2: SDHCI controller on ACPI [PNP0FFF:00] using ADMA
[    0.957074] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.957434] ledtrig-cpu: registered to indicate activity on CPUs
[    0.975867] hidraw: raw HID events driver (C) Jiri Kosina
[    0.975975] usbcore: registered new interface driver usbhid
[    0.975979] usbhid: USB HID core driver
[    0.996195] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)
[    0.997816] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    0.999435] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    1.000629] asus 0018:0B05:8585.0001: Fixing up Asus notebook report descriptor
[    1.001445] input: PDEC3393:00 0B05:8585 as /devices/platform/80860F41:00/i2c-0/i2c-PDEC3393:00/0018:0B05:8585.0001/input/input3
[    1.001601] asus 0018:0B05:8585.0001: input,hidraw0: I2C HID v1.00 Keyboard [PDEC3393:00 0B05:8585] on i2c-PDEC3393:00
[    1.002275] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)
[    1.062714] mmc0: new ultra high speed DDR50 SDIO card at address 0001
[    1.081617] mmc1: new HS200 MMC card at address 0001
[    1.082565] mmcblk1: mmc1:0001 HBG4e 29.1 GiB 
[    1.083414] mmcblk1boot0: mmc1:0001 HBG4e partition 1 4.00 MiB
[    1.084236] mmcblk1boot1: mmc1:0001 HBG4e partition 2 4.00 MiB
[    1.084489] mmcblk1rpmb: mmc1:0001 HBG4e partition 3 4.00 MiB, chardev (248:0)
[    1.088590]  mmcblk1: p1 p2 p3
[    1.122815] mmc2: new high speed SDHC card at address aaaa
[    1.123541] mmcblk2: mmc2:aaaa SL32G 29.7 GiB 
[    1.149619]  mmcblk2: p1
[    1.269589] elan_i2c i2c-ELAN0100:00: Elan Touchpad: Module ID: 0x0026, Firmware: 0x000a, Sample: 0x0001, IAP: 0x0000
[    1.270156] input: Elan Touchpad as /devices/platform/80860F41:03/i2c-3/i2c-ELAN0100:00/input/input4
[    1.270563] asus_wmi: ASUS WMI generic driver loaded
[    1.271290] asus_wmi: Initialization: 0x1
[    1.271725] asus_wmi: BIOS WMI version: 7.9
[    1.272079] asus_wmi: SFUN value: 0x37
[    1.283882] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input5
[    1.285424] asus_wmi: Number of fans: 1
[    1.294569] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input6
[    1.296528] intel_sst_acpi 80860F28:00: Detected Baytrail-CR platform
[    1.296620] intel_sst_acpi 80860F28:00: LPE base: 0x90a00000 size:0x200000
[    1.296624] intel_sst_acpi 80860F28:00: IRAM base: 0x90ac0000
[    1.296643] intel_sst_acpi 80860F28:00: DRAM base: 0x90b00000
[    1.296652] intel_sst_acpi 80860F28:00: SHIM base: 0x90b40000
[    1.296666] intel_sst_acpi 80860F28:00: Mailbox base: 0x90b44000
[    1.296695] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    1.296803] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    1.296985] intel_sst_acpi 80860F28:00: Direct firmware load for intel/fw_sst_0f28.bin failed with error -2
[    1.296990] intel_sst_acpi 80860F28:00: request fw failed
[    1.310982] xt_time: kernel timezone is -0000
[    1.311847] NET: Registered protocol family 10
[    1.312397] Segment Routing with IPv6
[    1.312869] NET: Registered protocol family 17
[    1.312891] Key type dns_resolver registered
[    1.313403] microcode: sig=0x30678, pf=0x2, revision=0x829
[    1.313510] microcode: Microcode Update Driver: v2.2.
[    1.313531] SSE version of gcm_enc/dec engaged.
[    1.325769] sched_clock: Marking stable (1325754549, 0)->(1339036867, -13282318)
[    1.326222] registered taskstats version 1
[    1.326239] Loading compiled-in X.509 certificates
[    1.326283] zswap: loaded using pool lzo/zbud
[    1.326478] AppArmor: AppArmor sha1 policy hashing enabled
[    1.361424] i2c_designware 80860F41:04: I2C bus managed by PUNIT
[    1.382023] rtc_cmos 00:00: setting system clock to 2018-07-26 15:51:42 UTC (1532620302)
[    1.382223] ALSA device list:
[    1.382226]   No soundcards found.
[    1.400006] Freeing unused kernel memory: 1416K
[    1.400044] Write protecting the kernel read-only data: 18432k
[    1.401370] Freeing unused kernel memory: 2008K
[    1.409251] Freeing unused kernel memory: 1316K
[    1.726539] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.727040] ehci-pci: EHCI PCI platform driver
[    1.727363] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.727379] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    1.727399] ehci-pci 0000:00:1d.0: debug port 2
[    1.731317] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.731352] ehci-pci 0000:00:1d.0: irq 30, io mem 0x9080d000
[    1.743373] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.743862] hub 1-0:1.0: USB hub found
[    1.743884] hub 1-0:1.0: 8 ports detected

[    1.961464] **********************************************************
[    1.961466] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **
[    1.961467] **                                                      **
[    1.961468] ** trace_printk() being used. Allocating extra memory.  **
[    1.961469] **                                                      **
[    1.961470] ** This means that this is a DEBUG kernel and it is     **
[    1.961471] ** unsafe for production use.                           **
[    1.961472] **                                                      **
[    1.961473] ** If you see this message and you are not debugging    **
[    1.961475] ** the kernel, report this immediately to your vendor!  **
[    1.961476] **                                                      **
[    1.961477] **   NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE   **
[    1.961478] **********************************************************
[    2.010070] F2FS-fs (mmcblk1p1): Found nat_bits in checkpoint
[    2.073408] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.221330] hub 1-1:1.0: USB hub found
[    2.221511] hub 1-1:1.0: 4 ports detected
[    2.285323] F2FS-fs (mmcblk1p1): Mounted with checkpoint version = 57c0f161
[    2.485540] systemd[1]: systemd 239 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN +PCRE2 default-hierarchy=hybrid)
[    2.500063] usb 1-1.1: new high-speed USB device number 3 using ehci-pci
[    2.500417] systemd[1]: Detected architecture x86-64.
[    2.507328] systemd[1]: Set hostname to <ARCHER>.
[    2.693399] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
[    2.783440] systemd[1]: File /usr/lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    2.783451] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    2.798897] hub 1-1.2:1.0: USB hub found
[    2.799209] hub 1-1.2:1.0: 4 ports detected
[    2.854318] systemd[1]: /etc/systemd/system/netctl@wlan0\x2dscorpion.service:1: .include directives are deprecated, and support for them will be removed in a future version of systemd. Please use drop-in files instead.
[    2.861682] random: systemd: uninitialized urandom read (16 bytes read)
[    2.862422] systemd[1]: Listening on udev Kernel Socket.
[    2.862605] random: systemd: uninitialized urandom read (16 bytes read)
[    2.862838] systemd[1]: Listening on udev Control Socket.
[    2.862871] random: systemd: uninitialized urandom read (16 bytes read)
[    2.865690] systemd[1]: Created slice system-netctl.slice.
[    2.865881] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.080062] usb 1-1.2.1: new high-speed USB device number 5 using ehci-pci
[    3.088140] systemd-journald[245]: Received request to flush runtime journal from PID 1
[    3.177425] hub 1-1.2.1:1.0: USB hub found
[    3.177489] hub 1-1.2.1:1.0: 4 ports detected
[    3.281132] 80860F0A:00: ttyS1 at MMIO 0x90941000 (irq = 16, base_baud = 2764800) is a 16550A
[    3.281355] serial serial0: tty port ttyS1 registered
[    3.297068] 80860F0A:01: ttyS2 at MMIO 0x90947000 (irq = 17, base_baud = 2764800) is a 16550A
[    3.378319] mousedev: PS/2 mouse device common for all mice
[    3.405065] Bluetooth: Core ver 2.22
[    3.405106] NET: Registered protocol family 31
[    3.405108] Bluetooth: HCI device and connection manager initialized
[    3.405116] Bluetooth: HCI socket layer initialized
[    3.405121] Bluetooth: L2CAP socket layer initialized
[    3.405135] Bluetooth: SCO socket layer initialized
[    3.450558] mei_txe 0000:00:1a.0: can't derive routing for PCI INT A
[    3.450564] mei_txe 0000:00:1a.0: PCI INT A: not connected
[    3.460719] Bluetooth: HCI UART driver ver 2.3
[    3.460724] Bluetooth: HCI UART protocol H4 registered
[    3.460726] Bluetooth: HCI UART protocol BCSP registered
[    3.460728] Bluetooth: HCI UART protocol ATH3K registered
[    3.460729] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    3.460824] Bluetooth: HCI UART protocol Intel registered
[    3.461152] hci_uart_bcm serial0-0: ACPI Interrupt resource is active-high, this is usually wrong, treating the IRQ as active-low
[    3.461809] Bluetooth: HCI UART protocol Broadcom registered
[    3.461813] Bluetooth: HCI UART protocol QCA registered
[    3.461815] Bluetooth: HCI UART protocol AG6XX registered
[    3.461817] Bluetooth: HCI UART protocol Marvell registered
[    3.476721] usb 1-1.2.1.1: new high-speed USB device number 6 using ehci-pci
[    3.489187] media: Linux media interface: v0.10
[    3.500862] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    3.532077] EFI Variables Facility v0.08 2004-May-17
[    3.540371] Linux video capture interface: v2.00
[    3.544261] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.552592] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.574087] hub 1-1.2.1.1:1.0: USB hub found
[    3.574144] hub 1-1.2.1.1:1.0: 4 ports detected
[    3.657818] Bluetooth: hci0: BCM: chip id 82
[    3.658309] Bluetooth: hci0: BCM: features 0x2f
[    3.659495] Bluetooth: hci0: BCM43341B0
[    3.659505] Bluetooth: hci0: BCM43341B0 (002.001.014) build 0000
[    3.870089] usb 1-1.2.1.1.1: new high-speed USB device number 7 using ehci-pci
[    3.936585] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.936592] cfg80211: failed to load regulatory.db
[    3.938121] cht-bsw-rt5645 cht-bsw-rt5645: BIOS Routing: AIF2 connected
[    3.938128] cht-bsw-rt5645 cht-bsw-rt5645: quirk SSP0_AIF2 enabled
[    3.941693] cht-bsw-rt5645 cht-bsw-rt5645: snd-soc-dummy-dai <-> media-cpu-dai mapping ok
[    3.941757] cht-bsw-rt5645 cht-bsw-rt5645: snd-soc-dummy-dai <-> deepbuffer-cpu-dai mapping ok
[    3.942038] cht-bsw-rt5645 cht-bsw-rt5645: rt5645-aif2 <-> ssp0-port mapping ok
[    3.945543] bluetooth hci0: Direct firmware load for brcm/BCM43341B0.hcd failed with error -2
[    3.945553] Bluetooth: hci0: BCM: Patch brcm/BCM43341B0.hcd not found
[    3.996012] pstore: Registered efi as persistent store backend
[    4.000761] input: chtrt5645 Headset as /devices/platform/80860F28:00/cht-bsw-rt5645/sound/card0/input8
[    4.029052] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)
[    4.030603] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    4.032134] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)
[    4.035238] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)
[    4.049680] uvcvideo: Found UVC 1.00 device USB Camera (0bda:57b5)
[    4.062212] uvcvideo 1-1.1:1.0: Entity type for entity Extension 7 was not initialized!
[    4.062218] uvcvideo 1-1.1:1.0: Entity type for entity Processing 2 was not initialized!
[    4.062222] uvcvideo 1-1.1:1.0: Entity type for entity Camera 1 was not initialized!
[    4.062226] uvcvideo 1-1.1:1.0: Entity type for entity Extension 4 was not initialized!
[    4.062385] input: USB Camera: USB Camera as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input9
[    4.062562] usbcore: registered new interface driver uvcvideo
[    4.062564] USB Video Class driver (1.1.1)
[    4.086737] usb 1-1.2.1.1.2: new full-speed USB device number 8 using ehci-pci
[    4.096773] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43340-sdio for chip BCM43340/2
[    4.097100] usbcore: registered new interface driver brcmfmac
[    4.192873] input: gpio-keys as /devices/platform/gpio-keys.0.auto/input/input10
[    4.193225] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input11
[    4.200507] random: crng init done
[    4.200512] random: 7 urandom warning(s) missed due to ratelimiting
[    4.202828] intel_soc_dts_thermal: request_threaded_irq ret -22
[    4.207356] intel_rapl: Found RAPL domain package
[    4.207361] intel_rapl: Found RAPL domain core
[    4.228857] Adding 2101224k swap on /dev/mmcblk1p3.  Priority:-2 extents:1 across:2101224k SSFS
[    4.255329] checking generic (80000000 410000) vs hw (80000000 10000000)
[    4.255350] fb: switching to inteldrmfb from EFI VGA
[    4.255450] Console: switching to colour dummy device 80x25
[    4.255823] [drm] Replacing VGA console driver
[    4.268551] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.268595] [drm] Driver supports precise vblank timestamp query.
[    4.269646] FAT-fs (mmcblk1p2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    4.276783] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    4.303755] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43340-sdio for chip BCM43340/2
[    4.303809] brcmfmac mmc0:0001:1: Direct firmware load for brcm/brcmfmac43340-sdio.clm_blob failed with error -2
[    4.303814] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[    4.304196] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM43340/2 wl0: Oct 23 2017 08:41:23 version 6.10.190.70 (r674464) FWID 01-98d71006
[    4.305643] [drm] Initialized i915 1.6.0 20180308 for 0000:00:02.0 on minor 0
[    4.310866] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    4.311407] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12
[    4.314813] [drm] HDaudio controller not detected, using LPE audio instead
[    4.314938] [drm] DRM_I915_DEBUG enabled
[    4.317586] fbcon: inteldrmfb (fb0) is primary device
[    4.485047] usblp 1-1.2.1.1.2:1.0: usblp0: USB Bidirectional printer dev 8 if 0 alt 1 proto 2 vid 0x067B pid 0x2305
[    4.485689] usbcore: registered new interface driver usblp
[    4.763217] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    4.805295] asix 1-1.2.1.1.1:1.0 eth0: register 'asix' at usb-0000:00:1d.0-1.2.1.1.1, ASIX AX88772 USB 2.0 Ethernet, 00:50:5b:05:2d:39
[    4.805490] usbcore: registered new interface driver asix
[    5.462669] Console: switching to colour frame buffer device 170x48
[    5.496849] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   31.405089] audit: type=1006 audit(1532620332.519:2): pid=843 uid=0 old-auid=4294967295 auid=1000 tty=tty1 old-ses=4294967295 ses=1 res=1
[   31.492199] audit: type=1006 audit(1532620332.606:3): pid=852 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   35.879636] intel_sst_acpi 80860F28:00: FW Version 01.0c.00.01
[   77.541502] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   77.545446] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   77.675352] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   77.687342] asix 1-1.2.1.1.1:1.0 eth0: link up, 100Mbps, full-duplex, lpa 0x4DE1
[  646.271533] i2c i2c-3: i2c write failed
[  646.356962] PM: suspend entry (s2idle)
[  646.356966] PM: Syncing filesystems ... done.
[  646.854901] Freezing user space processes ... (elapsed 0.001 seconds) done.
[  646.856831] OOM killer disabled.
[  646.856836] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  646.858294] Suspending console(s) (use no_console_suspend to debug)
[  646.877285] ------------[ cut here ]------------
[  646.877288] reqid not found
[  646.877351] WARNING: CPU: 0 PID: 1360 at drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.c:77 brcmf_pno_remove_request+0xb2/0xe0 [brcmfmac]
[  646.877353] Modules linked in: asix libphy usbnet mii usblp nls_iso8859_1 nls_cp437 vfat fat intel_rapl intel_soc_dts_thermal intel_powerclamp gpio_keys coretemp i915 uvcvideo kvm_intel videobuf2_vmalloc intel_gtt lz4hc i2c_algo_bit videobuf2_memops kvm lz4hc_compress brcmfmac irqbypass videobuf2_v4l2 drm_kms_helper snd_soc_sst_cht_bsw_rt5645 syscopyarea brcmutil efi_pstore videobuf2_common sysfillrect sysimgblt fb_sys_fops intel_cstate prime_numbers videodev efivars cfg80211 pcspkr drm media hci_uart btbcm mei_txe lpc_ich btintel joydev mei btqca mfd_core bluetooth mousedev input_leds tpm_crb crc16 tpm_tis tpm_tis_core tpm processor_thermal_device int3400_thermal evdev intel_soc_dts_iosf 8250_dw int3403_thermal soc_button_array acpi_thermal_rel int340x_thermal_zone int3406_thermal mac_hid snd_soc_rt5645
[  646.877446]  snd_soc_rl6231 sch_fq_codel f2fs fscrypto hid_generic ehci_pci ehci_hcd
[  646.877460] CPU: 0 PID: 1360 Comm: kworker/u8:3 Not tainted 4.17.3-1-x205ta #1
[  646.877462] Hardware name: ASUSTeK COMPUTER INC. X205TA/X205TA, BIOS X205TA.205 10/06/2014
[  646.877470] Workqueue: events_unbound async_run_entry_fn
[  646.877485] RIP: 0010:brcmf_pno_remove_request+0xb2/0xe0 [brcmfmac]
[  646.877488] RSP: 0018:ffffa6d7c1087d30 EFLAGS: 00010246
[  646.877492] RAX: 0000000000000000 RBX: ffff9b1732eaee40 RCX: ffffffff9d240d68
[  646.877495] RDX: 0000000000000000 RSI: 0000000000000002 RDI: 0000000000000246
[  646.877497] RBP: 0000000000000000 R08: 000000cc06e5b2d0 R09: 000000000000000f
[  646.877500] R10: 0000000000000268 R11: 0000000000074508 R12: ffff9b1732eaeec8
[  646.877502] R13: ffff9b17324a82e0 R14: ffff9b1732162000 R15: ffff9b173765ba80
[  646.877506] FS:  0000000000000000(0000) GS:ffff9b173ba00000(0000) knlGS:0000000000000000
[  646.877508] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  646.877511] CR2: 00007f68be2d3850 CR3: 0000000041690000 CR4: 00000000001006f0
[  646.877513] Call Trace:
[  646.877533]  brcmf_pno_stop_sched_scan+0x22/0x50 [brcmfmac]
[  646.877546]  brcmf_cfg80211_sched_scan_stop+0x25/0x60 [brcmfmac]
[  646.877558]  brcmf_cfg80211_suspend+0x30e/0x350 [brcmfmac]
[  646.877581]  wiphy_suspend+0x6f/0x2d0 [cfg80211]
[  646.877600]  ? wiphy_resume+0x140/0x140 [cfg80211]
[  646.877607]  dpm_run_callback+0x3d/0x120
[  646.877613]  __device_suspend+0xdb/0x400
[  646.877618]  async_suspend+0x1a/0x90
[  646.877623]  async_run_entry_fn+0x3a/0x150
[  646.877630]  process_one_work+0x1da/0x3c0
[  646.877635]  worker_thread+0x2b/0x410
[  646.877640]  ? process_one_work+0x3c0/0x3c0
[  646.877644]  kthread+0x116/0x130
[  646.877649]  ? kthread_flush_work_fn+0x10/0x10
[  646.877655]  ret_from_fork+0x35/0x40
[  646.877660] Code: 08 48 89 74 d3 08 48 63 d0 39 ca 7e e7 49 8d 3c 24 31 db e8 11 49 49 dc 89 d8 5b 5d 41 5c c3 48 c7 c7 42 7f 3e c0 e8 1f e9 cb db <0f> 0b 49 8d 3c 24 bb fe ff ff ff e8 ee 48 49 dc 89 d8 5b 5d 41 
[  646.877742] ---[ end trace 19454498508f0564 ]---
[  646.901707] serial 00:02: disabled
[ 5422.709364] i2c_designware 80860F41:00: timeout waiting for bus ready
[ 5423.514284] OOM killer enabled.
[ 5423.514290] Restarting tasks ... done.
[ 5423.555354] PM: suspend exit
[ 5424.933431] asix 1-1.2.1.1.1:1.0 eth0: link up, 100Mbps, full-duplex, lpa 0x4DE1
[ 5569.060395] fuse init (API version 7.26)

For linux firmware

linux-firmware: 1944 total files, 0 altered files

For systemd,

backup file: filesystem: /etc/fstab (Size mismatch)
backup file: filesystem: /etc/group (Size mismatch)
backup file: filesystem: /etc/gshadow (Size mismatch)
backup file: filesystem: /etc/hosts (Size mismatch)
backup file: filesystem: /etc/nsswitch.conf (Size mismatch)
backup file: filesystem: /etc/passwd (Size mismatch)
backup file: filesystem: /etc/resolv.conf (Modification time mismatch)
backup file: filesystem: /etc/resolv.conf (Size mismatch)
backup file: filesystem: /etc/shadow (Size mismatch)
backup file: filesystem: /etc/shells (Size mismatch)
warning: filesystem: /usr/lib64 (Symlink path mismatch)
filesystem: 111 total files, 1 altered file
systemd: 1504 total files, 0 altered files

I don't understand the symlinks. I was supposed to run these commands right?

ln -s /lib64 usr/lib && ln -s /usr/lib64 lib

Why do I still have the symlink error?

Offline

#22 2018-07-26 20:01:24

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

The ln syntax is "ln -s <target> <link>"…

cd /
ln -s usr/lib lib64
cd usr
ln -s lib lib64

Since the firmware should be present package intact) but the module doesn't find it, it's probably looking up the garbled symlink path.

Offline

#23 2018-07-26 21:28:49

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

Okay, so I got the garbled symlinks to finally work. Now there are no more warnings

backup file: filesystem: /etc/fstab (Size mismatch)
backup file: filesystem: /etc/group (Size mismatch)
backup file: filesystem: /etc/gshadow (Size mismatch)
backup file: filesystem: /etc/hosts (Size mismatch)
backup file: filesystem: /etc/nsswitch.conf (Size mismatch)
backup file: filesystem: /etc/passwd (Size mismatch)
backup file: filesystem: /etc/resolv.conf (Size mismatch)
backup file: filesystem: /etc/shadow (Size mismatch)
backup file: filesystem: /etc/shells (Size mismatch)
filesystem: 111 total files, 0 altered files
systemd: 1504 total files, 0 altered files
linux-firmware: 1944 total files, 0 altered files

However, netctl still won't connect to my network. Here are all my linked files and directories with a depth of 2.

     2577      0 lrwxrwxrwx   1  root     root           10 Jan  5  2018 ./var/mail -> spool/mail
     2578      0 lrwxrwxrwx   1  root     root            6 Jan  5  2018 ./var/run -> ../run
     2579      0 lrwxrwxrwx   1  root     root           11 Jan  5  2018 ./var/lock -> ../run/lock
     9599      0 lrwxrwxrwx   1  root     root           28 Jul 26 14:22 ./dev/log -> /run/systemd/journal/dev-log
     9585      0 lrwxrwxrwx   1  root     root           12 Jul 26 14:22 ./dev/initctl -> /run/initctl
     9244      0 lrwxrwxrwx   1  root     root            4 Jul 26 14:22 ./dev/rtc -> rtc0
      285      0 lrwxrwxrwx   1  root     root           15 Jul 26 14:22 ./dev/stderr -> /proc/self/fd/2
      284      0 lrwxrwxrwx   1  root     root           15 Jul 26 14:22 ./dev/stdout -> /proc/self/fd/1
      283      0 lrwxrwxrwx   1  root     root           15 Jul 26 14:22 ./dev/stdin -> /proc/self/fd/0
      282      0 lrwxrwxrwx   1  root     root           13 Jul 26 14:22 ./dev/fd -> /proc/self/fd
      281      0 lrwxrwxrwx   1  root     root           11 Jul 26 14:22 ./dev/core -> /proc/kcore
     2503      0 lrwxrwxrwx   1  root     root           19 Jan  5  2018 ./etc/mtab -> ../proc/self/mounts
    43216      0 lrwxrwxrwx   1  root     root           21 Jul 17 12:13 ./etc/os-release -> ../usr/lib/os-release
    45430      0 lrwxrwxrwx   1  root     root           39 Jul 17 12:48 ./etc/localtime -> /usr/share/zoneinfo/America/Los_Angeles
4026531844      0 lrwxrwxrwx   1  root     root            8 Jul 26 14:22 ./proc/net -> self/net
4026531843      0 lrwxrwxrwx   1  root     root           11 Jul 26 14:22 ./proc/mounts -> self/mounts
4026531841      0 lrwxrwxrwx   1  root     root            0 Jul 26 14:22 ./proc/self -> 1371
4026531842      0 lrwxrwxrwx   1  root     root            0 Jul 26 14:22 ./proc/thread-self -> 1371/task/1371
    252318      0 lrwxrwxrwx   1  root     root            3 Jan  5  2018 ./usr/lib64 -> lib
      2523      0 lrwxrwxrwx   1  root     root            3 Jan  5  2018 ./usr/sbin -> bin
      2486      0 lrwxrwxrwx   1  root     root            7 Jan  5  2018 ./bin -> usr/bin
      2510      0 lrwxrwxrwx   1  root     root            7 Jan  5  2018 ./lib -> usr/lib
      2511      0 lrwxrwxrwx   1  root     root            7 Jan  5  2018 ./lib64 -> usr/lib
      2515      0 lrwxrwxrwx   1  root     root            7 Jan  5  2018 ./sbin -> usr/bin

Offline

#24 2018-07-27 04:40:58

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,197

Re: [SOLVED]Kernel Panic Requested init failed

The more interesting question is whether the firmware is now loaded.

Offline

#25 2018-07-27 18:17:45

Swayland
Member
Registered: 2018-06-28
Posts: 23

Re: [SOLVED]Kernel Panic Requested init failed

How do I check that? Also, in the dmesg it says that I am using a debug kernel, but I don't have debug as a kernel parameter. What does this mean? (I can scan for networks, I just can't connect to them)

Last edited by Swayland (2018-07-27 18:18:06)

Offline

Board footer

Powered by FluxBB