Author: wmb
Date: Mon Oct 10 18:35:23 2011
New Revision: 2586
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2586
Log:
OLPC trac 11315 - pass a null cmdline to Linux in secure mode, paving the way for Linux to be responsible for its own non-optional settings.
Modified:
cpu/x86/pc/olpc/security.fth
Modified: cpu/x86/pc/olpc/security.fth
==============================================================================
--- cpu/x86/pc/olpc/security.fth Fri Oct 7 22:21:02 2011 (r2585)
+++ cpu/x86/pc/olpc/security.fth Mon Oct 10 18:35:23 2011 (r2586)
@@ -1231,7 +1231,7 @@
2drop ( )
['] secure-load-ramdisk to load-ramdisk
" init-program" $find if
- set-cmdline
+\ set-cmdline
execute
sound-end
go
Author: wmb
Date: Wed Oct 5 02:00:46 2011
New Revision: 2580
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2580
Log:
OLPC XO-1.75 - touchscreen driver selftest display formatting (added a cr).
Modified:
cpu/arm/olpc/1.75/rm3150-touchscreen.fth
Modified: cpu/arm/olpc/1.75/rm3150-touchscreen.fth
==============================================================================
--- cpu/arm/olpc/1.75/rm3150-touchscreen.fth Wed Oct 5 00:28:02 2011 (r2579)
+++ cpu/arm/olpc/1.75/rm3150-touchscreen.fth Wed Oct 5 02:00:46 2011 (r2580)
@@ -252,7 +252,7 @@
: selftest ( -- error? )
open 0= if
\ ." Touchscreen open failed" true exit
- ." No touchscreen present" false exit
+ ." No touchscreen present" cr false exit
then
\ Being able to open the touchpad is good enough in SMT mode
Author: wmb
Date: Wed Oct 5 00:28:02 2011
New Revision: 2579
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2579
Log:
OLPC XO-1.75 - trac #11292 - touchscreen absence - the usual case - is not reported as a selftest error.
Modified:
cpu/arm/olpc/1.75/rm3150-touchscreen.fth
Modified: cpu/arm/olpc/1.75/rm3150-touchscreen.fth
==============================================================================
--- cpu/arm/olpc/1.75/rm3150-touchscreen.fth Wed Oct 5 00:21:03 2011 (r2578)
+++ cpu/arm/olpc/1.75/rm3150-touchscreen.fth Wed Oct 5 00:28:02 2011 (r2579)
@@ -251,7 +251,8 @@
: selftest ( -- error? )
open 0= if
- ." Touchscreen open failed" true exit
+\ ." Touchscreen open failed" true exit
+ ." No touchscreen present" false exit
then
\ Being able to open the touchpad is good enough in SMT mode