From: Erik M. <er...@us...> - 2001-07-22 22:54:30
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv28848 Modified Files: Tag: blob_1_0_9_hack ChangeLog README Log Message: - added memory tester - switch off LED just before we jump to RAM and immediately swith it on again in main() so we can see if something went wrong - LED definitions are now in include/led.h - toggle LED at serial input - moved the #define __ASM_ARCH_HARDWARE_H hack to sa1100.h so we have that hack only in one file - minor documentation updates Index: ChangeLog =================================================================== RCS file: /cvsroot/blob/blob/ChangeLog,v retrieving revision 1.1.1.1.2.5 retrieving revision 1.1.1.1.2.6 diff -u -r1.1.1.1.2.5 -r1.1.1.1.2.6 --- ChangeLog 2001/07/18 23:53:52 1.1.1.1.2.5 +++ ChangeLog 2001/07/22 22:54:26 1.1.1.1.2.6 @@ -12,6 +12,7 @@ - Resume from suspend Erik Mouw - New "reboot" command Erik Mouw - Download and flash blob without JTAG dongle Erik Mouw +- Memory tester Erik Mouw blob-1.0.8-pre2: - Assabet fixes Justin Seger Index: README =================================================================== RCS file: /cvsroot/blob/blob/README,v retrieving revision 1.1.1.1.2.2 retrieving revision 1.1.1.1.2.3 diff -u -r1.1.1.1.2.2 -r1.1.1.1.2.3 --- README 2001/07/17 14:19:43 1.1.1.1.2.2 +++ README 2001/07/22 22:54:26 1.1.1.1.2.3 @@ -278,6 +278,7 @@ * download {kernel|ramdisk} Download kernel or ramdisk image to RAM * flash {kernel|ramdisk} Copy kernel or ramdisk from RAM to flash * help Get this help + * reboot Reboot system * reload {kernel|ramdisk} Reload kernel or ramdisk from flash to RAM * reset Reset terminal * speed Set download speed @@ -371,6 +372,12 @@ for the other architectures. +*** "reboot" +------------ + +This command simply reboots the system. + + *** "reload" ------------ @@ -532,13 +539,13 @@ ** Edit LED defines ------------------- -If your board has a LED on a GPIO pin, edit src/ledasm.S in an editor +If your board has a LED on a GPIO pin, edit include/led.h in an editor to switch it on early in the boot stage. Let's assume the foobar board has the LED on GPIO pin 1, so add the following lines just before the PLEB definition: #elif defined FOOBAR - LED: .long 0x00000002 + # define LED_GPIO 0x00000002 /* GPIO 1 */ ** Compile blob |