Author: wmb Date: 2009-12-15 06:26:00 +0100 (Tue, 15 Dec 2009) New Revision: 1611
Added: cpu/x86/pc/olpc/via/help.fth Modified: cpu/x86/pc/olpc/via/fw.bth Log: OLPC trac 9882 - updated help command for XO-1.5
Modified: cpu/x86/pc/olpc/via/fw.bth =================================================================== --- cpu/x86/pc/olpc/via/fw.bth 2009-12-15 05:02:15 UTC (rev 1610) +++ cpu/x86/pc/olpc/via/fw.bth 2009-12-15 05:26:00 UTC (rev 1611) @@ -348,12 +348,12 @@
fload ${BP}/cpu/x86/pc/olpc/setwp.fth
-fload ${BP}/cpu/x86/pc/olpc/help.fth +fload ${BP}/cpu/x86/pc/olpc/via/help.fth \ Help for common user tasks fload ${BP}/cpu/x86/pc/olpc/gui.fth fload ${BP}/cpu/x86/pc/olpc/via/suspend.fth \ Suspend/resume setup
-fload ${BP}/cpu/x86/pc/olpc/via/switches.fth \ Lid and ebook switches -fload ${BP}/cpu/x86/pc/olpc/via/leds.fth \ LEDs +fload ${BP}/cpu/x86/pc/olpc/via/switches.fth \ Lid and ebook switches +fload ${BP}/cpu/x86/pc/olpc/via/leds.fth \ LEDs fload ${BP}/cpu/x86/pc/olpc/via/factory.fth \ Manufacturing tools
fload ${BP}/cpu/x86/pc/olpc/disptest.fth
Added: cpu/x86/pc/olpc/via/help.fth =================================================================== --- cpu/x86/pc/olpc/via/help.fth (rev 0) +++ cpu/x86/pc/olpc/via/help.fth 2009-12-15 05:26:00 UTC (rev 1611) @@ -0,0 +1,33 @@ +purpose: Basic help for OLPC OFW + +warning @ warning off +: help ( -- ) + blue-letters ." UPDATES:" black-letters mcr + ." flash u:\q2c18.rom Rewrite the firmware from USB key" mcr + ." flash ext:\q2c18.rom Rewrite the firmware from external SD file" mcr + ." fs-update u:\boot\os51.zd Rewrite the OS on internal SD from USB key" mcr + blue-letters ." DIRECTORY LISTING:" black-letters mcr + ." dir u:\ List USB key root directory" mcr + ." dir u:\boot\ List USB key /boot directory" mcr + ." dir int:\boot*.zip List .zip files in internal SD /boot directory" mcr + blue-letters ." BOOTING:" black-letters mcr + ." boot Load the OS from list of default locations" mcr + ." 'printenv boot-device' shows the list" mcr + ." boot <cmdline> Load the OS, passing <cmdline> to kernel" mcr + ." boot u:\boot\vmlinuz Load the OS from a specific location" mcr + blue-letters ." CONFIGURATION VARIABLES FOR BOOTING:" black-letters mcr + ." boot-device Kernel or boot script path. Example: ext:\boot\olpc.fth" mcr + ." boot-file Default cmdline. Example: console=ttyS0,115200" mcr + ." ramdisk initrd pathname. Example: disk:\boot\initrd.imz" 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 !
openfirmware@openfirmware.info