Update of /cvsroot/blob/blob/src
In directory usw-pr-cvs1:/tmp/cvs-serv27118
Modified Files:
Tag: blob_1_0_9_hack
start.S Makefile.am
Added Files:
Tag: blob_1_0_9_hack
ledasm.S
Log Message:
re-enable LED support
***** Error reading new file: [Errno 2] No such file or directory: 'ledasm.S'
Index: start.S
===================================================================
RCS file: /cvsroot/blob/blob/src/start.S,v
retrieving revision 1.1.1.1.2.4
retrieving revision 1.1.1.1.2.5
diff -u -r1.1.1.1.2.4 -r1.1.1.1.2.5
--- start.S 2001/07/08 22:34:14 1.1.1.1.2.4
+++ start.S 2001/07/11 18:59:02 1.1.1.1.2.5
@@ -97,6 +97,9 @@
/* setup memory */
bl memsetup
+ /* init LED */
+ bl ledinit
+
/* enable I-cache */
mrc p15, 0, r1, c1, c0, 0 @ read control reg
orr r1, r1, #0x1000 @ set Icache
Index: Makefile.am
===================================================================
RCS file: /cvsroot/blob/blob/src/Makefile.am,v
retrieving revision 1.1.1.1.2.1
retrieving revision 1.1.1.1.2.2
diff -u -r1.1.1.1.2.1 -r1.1.1.1.2.2
--- Makefile.am 2001/07/08 22:34:14 1.1.1.1.2.1
+++ Makefile.am 2001/07/11 18:59:03 1.1.1.1.2.2
@@ -26,6 +26,7 @@
blob_start_elf32_SOURCES = \
start.S \
memsetup.S \
+ ledasm.S \
testmem.S
|