You are not logged in.
A recent update of linux-ck broke my laptop. The regular kernel works fine.
Picture of the error message: https://goo.gl/photos/FKQ3xqMedtKQErQS6
/etc/fstab
UUID=61157010-1379-484a-87de-ee59679558c5 / ext4 discard,rw,relatime,data=ordered 0 1/boot/grub/grub.cfg
menuentry 'Arch Linux, with Linux linux-ck' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-advanced-61157010-1379-484a-87de-ee59679558c5' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 61157010-1379-484a-87de-ee59679558c5
else
search --no-floppy --fs-uuid --set=root 61157010-1379-484a-87de-ee59679558c5
fi
echo 'Loading Linux linux-ck ...'
linux /boot/vmlinuz-linux-ck root=UUID=61157010-1379-484a-87de-ee59679558c5 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/intel-ucode.img /boot/initramfs-linux-ck.img
}The code for the regular linux kernel looks the same:
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-61157010-1379-484a-87de-ee59679558c5' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 61157010-1379-484a-87de-ee59679558c5
else
search --no-floppy --fs-uuid --set=root 61157010-1379-484a-87de-ee59679558c5
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=61157010-1379-484a-87de-ee59679558c5 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/intel-ucode.img /boot/initramfs-linux.img
}Any idea how I should fix this? And why it's only happening on the -ck kernel?
Last edited by simendsjo (2015-08-02 17:54:39)
Offline
Looks like the newest ck resolved the issue.
Offline