by WarheadsSE » Tue Mar 11, 2014 2:26 am
What you will need to do is to alter the boot.scr.uimg on mmcblk0p12.
$this->bbcode_second_pass_code('', '
$ sudo su
# mount /dev/mmcblk0p12 /mnt
# cd /mnt/u-boot
# cp boot.scr.uimg boot.scr.uimg.org
# cp boot.scr.uimg boot.scr
# vim boot.scr
')
At this point you need to remove the gibberish on the first line (everything before setenv) as it is the header that you will be replacing.
Add in the following to the end of the file
$this->bbcode_second_pass_code('', '
setenv common_bootargs cros_legacy console=/dev/ttyS0
')
Save and close the file.
Regenerate the uimg.
$this->bbcode_second_pass_code('', '
# pacman -S uboot-mkimage
# mkimage -A arm -T script -C none -n 'Chromebook Boot Script' -d boot.scr boot.scr.uimg
# cat boot.scr.uimg
# cd -
# umount /mnt
$
')
And.. reboot.
What we're doing here is removing the 'debug' argument being passed as part of cmdline (cat /proc/cmdline) that is telling systemd to spew that "spam"