Author: quozl Date: Fri Aug 5 02:41:47 2011 New Revision: 2414 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2414
Log: OLPC XO-1.75 - update help, it was XO-1 specific
Added: cpu/arm/olpc/1.75/help.fth Modified: cpu/arm/olpc/1.75/fw.bth
Modified: cpu/arm/olpc/1.75/fw.bth ============================================================================== --- cpu/arm/olpc/1.75/fw.bth Fri Aug 5 02:22:51 2011 (r2413) +++ cpu/arm/olpc/1.75/fw.bth Fri Aug 5 02:41:47 2011 (r2414) @@ -161,7 +161,7 @@ : rom-pa ( -- adr ) mfg-data-buf mfg-data-offset - ; \ Fake out setwp.fth fload ${BP}/cpu/x86/pc/olpc/setwp.fth
-fload ${BP}/cpu/x86/pc/olpc/help.fth +fload ${BP}/cpu/arm/olpc/1.75/help.fth fload ${BP}/cpu/x86/pc/olpc/gui.fth fload ${BP}/cpu/x86/pc/olpc/strokes.fth fload ${BP}/cpu/x86/pc/olpc/plot.fth
Added: cpu/arm/olpc/1.75/help.fth ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ cpu/arm/olpc/1.75/help.fth Fri Aug 5 02:41:47 2011 (r2414) @@ -0,0 +1,33 @@ +purpose: Basic help for OLPC OFW + +warning @ warning off +: help ( -- ) + blue-letters ." INSTALLATION:" black-letters mcr + \ ================================================================================ + ." fs-update u:\os1.zd4 Install OS from USB drive to internal storage" mcr + ." flash u:\q4b07.rom Install firmware from USB drive" mcr + ." flash ext:\q4b07.rom Install firmware from external SD card" mcr + blue-letters ." DIRECTORY LISTING:" black-letters mcr + ." dir u:\ List USB drive root directory" mcr + ." dir u:\boot\ List USB drive /boot directory" mcr + ." dir int:\boot*.zip List .zip files in internal SD /boot directory" mcr + blue-letters ." BOOTING:" black-letters mcr + ." boot Start the OS from list of default locations" mcr + ." printenv boot-device Show the list of default locations used by boot" mcr + ." boot u:\test.fth Start the OS from a specific location" mcr + blue-letters ." CONFIGURATION VARIABLES FOR BOOTING:" black-letters mcr + ." boot-device Kernel or boot script paths. Example: ext:\boot\olpc.fth" mcr + ." boot-file Default kernel command line. Example: console=ttyS0,115200" mcr + ." ramdisk Initial RAMDISK path. Example: int:\boot\initrd.img" mcr + blue-letters ." MANAGING CONFIGURATION VARIABLES:" black-letters mcr + ." printenv [ <name> ] Show configuration variables" mcr + ." setenv <name> <value> Set configuration variable" mcr + ." editenv <name> Edit configuration variable" mcr + blue-letters ." DIAGNOSTICS:" black-letters mcr + ." test <device-name> Test device. Example: test mouse" mcr + ." test-all Test all devices that have test routines" mcr + ." menu Graphical interface to selftests" mcr + blue-letters ." More information: " black-letters mcr + green-letters ." http://wiki.laptop.org/go/OFW_FAQ" black-letters cr +; +warning !