comparison packages/redboot/current/ChangeLog @ 151:25e238959bae

Merge from eCos master repository on 2001-02-12-23:44:24-GMT
author jlarmour
date Tue, 13 Feb 2001 01:23:16 +0000
parents f0e3fb000de8
children f935b880e96c
comparison
equal deleted inserted replaced
150:f0e3fb000de8 151:25e238959bae
1 2001-02-12 Jesper Skov <jskov@redhat.com>
2
3 * src/main.c: Use CYGNUM_HAL_VIRTUAL_VECTOR_DEBUG_CHANNEL instead
4 of CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL.
5
6 2001-02-11 Gary Thomas <gthomas@redhat.com>
7
8 * src/net/ping.c (do_ping): Accomodate new MS_TICKS scheme.
9
10 2001-02-09 Grant Edwards <grante@visi.com>
11
12 * include/net/net.h (MS_TICKS_DELAY): New macro, different from
13 MS_TICKS() so that MS_TICKS() gets the current tick count, and
14 MS_TICKS_DELAY is used in a delay loop to actually do a delay.
15
16 * src/ticks.c (get_ms_ticks): New function imlementing rework of
17 MS_TICKS
18
19 * src/net/net_io.c (net_io_getc): Use MS_TICKS_DELAY() instead of
20 CYGACC_CALL_IF_DELAY_US() directly
21 (net_io_getc_timeout): Likewise
22
23 * src/net/udp.c (__udp_recvfrom): MS_TICKS -> MS_TICKS_DELAY
24 * src/net/bootp.c (__bootp_find_local_ip): Likewise
25
26 2001-02-09 Jonathan Larmour <jlarmour@redhat.com>
27 2001-02-09 Grant Edwards <grante@visi.com>
28
29 * src/net/net_io.c (net_io_getc_nonblock): Silence compiler warning
30
31 2001-01-31 Gary Thomas <gthomas@redhat.com>
32
33 * include/redboot.h:
34 * cdl/redboot.cdl:
35 * src/flash.c: Use new CRC functions.
36
37 * src/crc.c: New file - supports 16 and 32 bit CRC functions.
38
39 2001-01-31 Grant Edwards <grante@visi.com>
40
41 * src/net/net_io.c (net_io_test): Use new idle function to
42 poll for incoming network connections. Removes #if requirements
43 from the main CLI loop.
44
45 * src/main.c (cyg_start):
46 * include/redboot.h (RedBoot_idle): Add new tables to support
47 user defined functions to be called when idle (during command input).
48
49 2001-01-31 Gary Thomas <gthomas@redhat.com>
50
51 * include/redboot.h:
52 * src/main.c (cyg_start):
53 * src/net/net_io.c (net_io_getc_nonblock): Forgo TELNET escape
54 processing if GDB is active (requires 8-bit clean connection).
55
56 2001-01-31 Nick Garnett <nickg@cygnus.co.uk>
57
58 * src/syscall.c (__do_syscall):
59 Added SYS_meminfo syscall.
60
61 * src/net/net_io.c (net_io_getc_nonblock):
62 Telnet escape processing temporarily disabled because it does not
63 work.
64
65 2001-01-31 Grant Edwards <grante@visi.com>
66
67 * include/net/net.h:
68 * src/net/enet.c (__eth_install_listener, __eth_remove_listener):
69 New functions - allow user registerable callout to handle
70 non-standard ethernet packets.
71
72 2001-01-30 Gary Thomas <gthomas@redhat.com>
73
74 * src/main.c (do_reset): HAL macro name changed.
75
76 * src/net/ping.c (do_ping): Remove warning.
77
78 * src/main.c (do_help): Only display help for selected topic
79 if provided.
80
1 2001-01-24 Jonathan Larmour <jlarmour@redhat.com> 81 2001-01-24 Jonathan Larmour <jlarmour@redhat.com>
2 82
3 * src/main.c (cyg_start): Rework last change to use more generic 83 * src/main.c (cyg_start): Rework last change to use more generic
4 HAL_MEM_REAL_REGION_TOP macro. 84 HAL_MEM_REAL_REGION_TOP macro.
5 85
9 variable (only supported on ARMs) to set ram_end. The symbols 89 variable (only supported on ARMs) to set ram_end. The symbols
10 given by the CYGMEM_REGION_ram symbols are minima or defaults. 90 given by the CYGMEM_REGION_ram symbols are minima or defaults.
11 91
12 2001-01-22 Gary Thomas <gthomas@redhat.com> 92 2001-01-22 Gary Thomas <gthomas@redhat.com>
13 93
14 * src/net/inet_addr.c (inet_aton): Fix byte order on big endian systems. 94 * src/net/inet_addr.c (inet_aton): Fix byte order on big endian
95 systems.
15 96
16 * src/net/icmp.c (__icmp_install_listener): 97 * src/net/icmp.c (__icmp_install_listener):
17 (__icmp_remove_listener): New functions. 98 (__icmp_remove_listener): New functions.
18 (__icmp_handler): Call listener for unhandled packets. 99 (__icmp_handler): Call listener for unhandled packets.
19 100
350 * src/main.c (cyg_start): Change to use struct init_tab_entry per above 431 * src/main.c (cyg_start): Change to use struct init_tab_entry per above
351 432
352 2000-09-07 Andrew Lunn <andrew.lunn@ascom.ch> 433 2000-09-07 Andrew Lunn <andrew.lunn@ascom.ch>
353 434
354 * src/load.c, include/redboot.h: renamed the getc functions to 435 * src/load.c, include/redboot.h: renamed the getc functions to
355 redboot_getc and made them globel so custom boot loaders can use 436 redboot_getc and made them global so custom boot loaders can use
356 them. 437 them.
357 438
358 2000-09-06 Gary Thomas <gthomas@redhat.com> 439 2000-09-06 Gary Thomas <gthomas@redhat.com>
359 440
360 * doc/users_guide: Add info about region locking/unlocking. 441 * doc/users_guide: Add info about region locking/unlocking.