[openfirmware] [commit] r2905 - in cpu: arm/olpc x86/pc/olpc x86/pc/olpc/via

repository service svn at openfirmware.info
Wed Mar 21 05:01:29 CET 2012


Author: quozl
Date: Wed Mar 21 05:01:28 2012
New Revision: 2905
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2905

Log:
OLPC - make help consistent across platforms

Modified:
   cpu/arm/olpc/help.fth
   cpu/x86/pc/olpc/help.fth
   cpu/x86/pc/olpc/via/help.fth

Modified: cpu/arm/olpc/help.fth
==============================================================================
--- cpu/arm/olpc/help.fth	Wed Mar 21 00:56:47 2012	(r2904)
+++ cpu/arm/olpc/help.fth	Wed Mar 21 05:01:28 2012	(r2905)
@@ -5,26 +5,24 @@
    blue-letters  ." INSTALLATION:" cancel  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
+   ."   flash u:\q4d06.rom     Install firmware from USB drive" mcr
    blue-letters  ." DIRECTORY LISTING:" cancel  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
+   ."   dir int:\boot\*.zip    List .zip files in internal /boot directory" mcr
    blue-letters  ." BOOTING:" cancel  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:" cancel  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
+   ."   boot-file    Default kernel command line.  Example: debug" mcr
    ."   ramdisk      Initial RAMDISK path.         Example: int:\boot\initrd.img" mcr
    blue-letters  ." MANAGING CONFIGURATION VARIABLES:" cancel  mcr
    ."   printenv [ <name> ]    Show configuration variables" mcr
    ."   setenv <name> <value>  Set configuration variable" mcr
    ."   editenv <name>         Edit configuration variable" mcr
    blue-letters  ." DIAGNOSTICS:" cancel  mcr
-   ."   test <device-name>     Test device.  Example: test mouse" mcr
+   ."   test <device-name>     Test a 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: "  cancel mcr

Modified: cpu/x86/pc/olpc/help.fth
==============================================================================
--- cpu/x86/pc/olpc/help.fth	Wed Mar 21 00:56:47 2012	(r2904)
+++ cpu/x86/pc/olpc/help.fth	Wed Mar 21 05:01:28 2012	(r2905)
@@ -2,28 +2,29 @@
 
 warning @ warning off
 : help  ( -- )
-   blue-letters  ." UPDATES:" cancel  mcr
+   blue-letters  ." INSTALLATION:" cancel  mcr
    \ ================================================================================
-   ."   update-nand u:\os.img           Rewrite OS on NAND from USB drive" mcr
-   ."   flash u:\q2f07.rom              Rewrite firmware from USB drive" mcr
+   ."   update-nand u:\os.img  Install OS from USB drive to internal storage" mcr
+   ."   flash u:\q2f08.rom     Install firmware from USB drive" mcr
    blue-letters  ." DIRECTORY LISTING:" cancel  mcr
-   ."   dir u:\                         List USB drive root directory" mcr
-   ."   dir u:\boot\                    List USB drive /boot directory" mcr
-   ."   dir nand:\boot\*.rom            List .rom files in NAND /boot directory" mcr
+   ."   dir u:\                List USB drive root directory" mcr
+   ."   dir u:\boot\           List USB drive /boot directory" mcr
+   ."   dir nand:\boot\*.rom   List .rom files in internal /boot directory" mcr
    blue-letters  ." BOOTING:" cancel  mcr
-   ."   boot                            Start the OS" mcr
-   ."   boot u:\vmlinuz                 Start the OS from a specific location" mcr
+   ."   boot                   Start the OS from list of default locations" mcr
+   ."   boot u:\test.fth       Start the OS from a specific location" mcr
    blue-letters  ." CONFIGURATION VARIABLES FOR BOOTING:" cancel  mcr
-   ."   boot-device  Kernel or boot script path.  Example: nand:\boot\olpc.fth" mcr
-   ."   boot-file    Default cmdline.    Example: console=ttyS0,115200" mcr
-   ."   ramdisk      initrd pathname.    Example: disk:\boot\initrd.imz" mcr
+   ."   boot-device  Kernel or boot script paths.  Example: nand:\boot\olpc.fth" mcr
+   ."   boot-file    Default kernel command line.  Example: debug" mcr
+   ."   ramdisk      Initial RAMDISK path.         Example: disk:\boot\initrd.imz" mcr
    blue-letters  ." MANAGING CONFIGURATION VARIABLES:" cancel  mcr
-   ."   printenv [ <name> ]             Show configuration variables" mcr
-   ."   setenv <name> <value>           Set configuration variable" mcr
-   ."   editenv <name>                  Edit configuration variable" mcr
+   ."   printenv [ <name> ]    Show configuration variables" mcr
+   ."   setenv <name> <value>  Set configuration variable" mcr
+   ."   editenv <name>         Edit configuration variable" mcr
    blue-letters  ." DIAGNOSTICS:" cancel  mcr
-   ."   test <device-name>              Test device.  Example: test mouse" mcr
-   ."   test-all                        Test all devices that have test routines" mcr
+   ."   test <device-name>     Test a 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: "  cancel mcr
    green-letters  ." http://wiki.laptop.org/go/OFW_FAQ" cancel  cr
 ;

Modified: cpu/x86/pc/olpc/via/help.fth
==============================================================================
--- cpu/x86/pc/olpc/via/help.fth	Wed Mar 21 00:56:47 2012	(r2904)
+++ cpu/x86/pc/olpc/via/help.fth	Wed Mar 21 05:01:28 2012	(r2905)
@@ -2,29 +2,27 @@
 
 warning @ warning off
 : help  ( -- )
-   blue-letters  ." UPDATES:" cancel  mcr
+   blue-letters  ." INSTALLATION:" cancel  mcr
    \ ================================================================================
-   ."   fs-update u:\os1.zd4   Rewrite the OS on internal SD from USB drive" mcr
-   ."   flash u:\q3a64.rom     Rewrite the firmware from USB drive" mcr
-   ."   flash ext:\q3a64.rom   Rewrite the firmware from external SD file" mcr
+   ."   fs-update u:\os1.zd4   Install OS from USB drive to internal storage" mcr
+   ."   flash u:\q3c03.rom     Install firmware from USB drive" mcr
    blue-letters  ." DIRECTORY LISTING:" cancel  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
+   ."   dir int:\boot\*.zip    List .zip files in internal /boot directory" mcr
    blue-letters  ." BOOTING:" cancel  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:" cancel  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
+   ."   boot-file    Default kernel command line.  Example: debug" mcr
    ."   ramdisk      Initial RAMDISK path.         Example: int:\boot\initrd.img" mcr
    blue-letters  ." MANAGING CONFIGURATION VARIABLES:" cancel  mcr
    ."   printenv [ <name> ]    Show configuration variables" mcr
    ."   setenv <name> <value>  Set configuration variable" mcr
    ."   editenv <name>         Edit configuration variable" mcr
    blue-letters  ." DIAGNOSTICS:" cancel  mcr
-   ."   test <device-name>     Test device.  Example: test mouse" mcr
+   ."   test <device-name>     Test a 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: "  cancel mcr



More information about the openfirmware mailing list