Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.
# Config file for Syslinux -
# /boot/syslinux/syslinux.cfg

LABEL arch
    MENU LABEL Arch Linux
    LINUX ../vmlinuz-linux
    APPEND root=/dev/sda3 rw
    INITRD ../initramfs-linux-ck.img

LABEL archfallback
    MENU LABEL Arch Linux Fallback
    LINUX ../vmlinuz-linux
    APPEND root=/dev/sda3 rw
    INITRD ../initramfs-linux-fallback.img

I have just changed my arch config to load the CK image. However, upon boot, fsck fails complaining that /dev/sda3 cannot be found. This is weird, because archfallback loads correctly as usual.

Also, I should add the parameter elevator=bfq. Should I do that with a new APPEND line?

EDIT: I just saw that there is also a vmlinuz-linux-ck. I'll try and report back. The kernel parameter quesion remains.

share|improve this question

1 Answer 1

For anyone who encounters the same problem, this is the correct way to configure it:

LABEL arch
    MENU LABEL Arch Linux
    LINUX ../vmlinuz-linux-ck
    APPEND elevator=bfq
    APPEND root=/dev/sda3 rw
    INITRD ../initramfs-linux-ck.img

As noted in the ArchWiki, to check that the BFQ/BFS scheduler are loaded you have to check the output of dmesg | grep scheduler.

share|improve this answer
    
Good work. Thanks for reporting back. –  mikeserv Sep 6 '14 at 1:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.