OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [libgloss/] [ChangeLog.or32] - Blame information for rev 399

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 399 jeremybenn
2010-10-29  Joern Rennecke  
2
 
3
        * or32/crt0.S (_start): After main, call exit.
4
 
5
        * or32/crt0.S: Rename implementation symbols to reside in the
6
        implementation namespace.
7
        * or32/read-uart.c, or32/write-uart.c, or32/uart-dummy.c: Likewise.
8
        * or32/uart.c, or32/uart.h: Likewise.
9
 
10
        * or32/crt0.S (UNHANDLED_EXCEPTION): Call exit.
11
 
12
2010-10-28  Joern Rennecke  
13
 
14
        * or32/crt0.S (_start): Rename fini to __fini.
15
 
16
2010-09-13  Joern Rennecke  
17
 
18
        * or32/crt0.S (_start): Rename init to __init.
19
 
20 243 jeremybenn
2010-08-19  Jeremy Bennett 
21
 
22
        * or32/crt0.S (_start): Remove all leading underscores from
23
        references to global C functions and variables (printf, stack,
24
        atexit, _uart_init, main). Modified end of memory detection, so it
25
        works on rentry as well as initial entry.  : New code to
26
        allow re-entrant _start function.
27
 
28
2010-07-30  Julius Baxter 
29
 
30
        * or32/crt0.S: Added cache initilisation routines using config regs
31
        * or32/spr-defs.h: Replaced with or1ksim's golden version
32
        * or32/or1ksim-board.h: Noted that cache config no longer necessary
33
 
34
2010-07-16  Jeremy Bennett 
35
 
36
        * or32/configure.in: Tidied up and made consistent with nosyslib.
37
        * or32/Makefile.in: Tidied up and made consistent with nosyslib.
38
 
39
2010-07-16  Jeremy Bennett 
40
 
41
        * libnosys/configure.in: Add or32 as using namespace clean
42
          implementation.
43
 
44
2010-07-16  Jeremy Bennett 
45
 
46
        * or32/_exit.c: Removed redundant header.
47
        * or32/close-uart.c: Deleted.
48
        * or32/close.c: Undefined #errno. Fail for all streams.
49
        * or32/crt0.S; Simplified cache initialization.
50
        * or32/execve.c: Undefined #errno.
51
        * or32/fork.c: Undefined #errno.
52
        * or32/fstat-uart.c: Undefined #errno.
53
        * or32/fstat.c: Undefined #errno.
54
        * or32/isatty-uart.c: Undefined #errno.
55
        * or32/isatty.c: Undefined #errno.
56
        * or32/kill.c: Undefined #errno.
57
        * or32/link.c: Undefined #errno.
58
        * or32/lseek-uart.c: Undefined #errno.
59
        * or32/lseek.c: Undefined #errno.
60
        * or32/Makefile.in: Replaced close-uart.c by close.c
61
        * or32/open.c: Undefined #errno.
62
        * or32/read-uart.c: Undefined #errno.
63
        * or32/read.c: Undefined #errno.
64
        * or32/sbrk.c: Undefined #errno.
65
        * or32/stat.c: Undefined #errno.
66
        * or32/times.c: Undefined #errno.
67
        * or32/unlink.c: Undefined #errno.
68
        * or32/wait.c: Undefined #errno.
69
        * or32/write-uart.c: Undefined #errno.
70
        * or32/write.c: Undefined #errno.
71
 
72
2010-07-14  Jeremy Bennett 
73
 
74
        * or32/crt0.S: Use l.j rather than l.jr for library calls.
75
        * or32/sbrk.c (_sbrk): Use stack, rather than &stack.
76
 
77
2010-07-07  Jeremy Bennett 
78
 
79
        * README: Updated for OpenRISC
80
        * or32/_exit.c: Created.
81
        * or32/close.c: Created.
82
        * or32/close-uart.c: Created.
83
        * or32/configure: Regenerated.
84
        * or32/configure.in: Updated for new style AC_INIT.
85
        * or32/COPYING: Created.
86
        * or32/crt0.S: Rewritten to match updated linker. Calls init and
87
        sets up fini functions to handle constructors and destructors
88
        properly.
89
        * or32/environ.c: Created.
90
        * or32/exceptions.c: Deleted.
91
        * or32/execve.c: Created.
92
        * or32/fork.c: Created.
93
        * or32/fstat.c: Created.
94
        * or32/fstat-uart.c: Created.
95
        * or32/getpid.c: Created.
96
        * or32/io.c: Deleted.
97
        * or32/isatty.c: Created.
98
        * or32/isatty-uart.c: Created.
99
        * or32/kill.c: Created.
100
        * or32/link.c: Created.
101
        * or32/lseek.c: Created.
102
        * or32/lseek-uart.c: Created.
103
        * or32/Makefile.in: Updated for new source code.
104
        * or32/open.c: Created.
105
        * or32/or32.ld: Deleted.
106
        * or32/or1ksim-board.h: Renamed from board.h.
107
        * or32/proc.c: Created.
108
        * or32/read.c: Created.
109
        * or32/read-uart.c: Created.
110
        * or32/sbrk.c: Created.
111
        * or32/sim.cfg: Created.
112
        * or32/specs: Deleted.
113
        * or32/spr-defs.h: Renamed from spr_defs.h.
114
        * or32/stat.c: Created.
115
        * or32/times.c: Created.
116
        * or32/uart.c (_uart_init, _uart_putc, _uart_getc): Renamed from
117
        uart_init, uart_putc and uart_getc respectively. Macros simplified.
118
        * or32/uart-dummy.c: Created.
119
        * or32/uart.h <_uart_init, _uart_putc, _uart_getc>: Renamed
120
        external functions.
121
        * or32/unlink.c: Created.
122
        * or32/wait.c: Created.
123
        * or32/write.c: Created.
124
        * or32/write-uart.c: Created.
125
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.