comparison packages/redboot/current/src/version.c @ 145:2e9a636d9de9 ecos-sw-2000-12-21

Merge from eCos master repository on 2000-12-21-14:18:40-GMT
author jlarmour
date Fri, 22 Dec 2000 02:37:28 +0000
parents
children b939e9cada46
comparison
equal deleted inserted replaced
144:da1052144c56 145:2e9a636d9de9
1 //==========================================================================
2 //
3 // version.c
4 //
5 // RedBoot version "string"
6 //
7 //==========================================================================
8 //####COPYRIGHTBEGIN####
9 //
10 // -------------------------------------------
11 // The contents of this file are subject to the Red Hat eCos Public License
12 // Version 1.1 (the "License"); you may not use this file except in
13 // compliance with the License. You may obtain a copy of the License at
14 // http://www.redhat.com/
15 //
16 // Software distributed under the License is distributed on an "AS IS"
17 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
18 // License for the specific language governing rights and limitations under
19 // the License.
20 //
21 // The Original Code is eCos - Embedded Configurable Operating System,
22 // released September 30, 1998.
23 //
24 // The Initial Developer of the Original Code is Red Hat.
25 // Portions created by Red Hat are
26 // Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
27 // All Rights Reserved.
28 // -------------------------------------------
29 //
30 //####COPYRIGHTEND####
31 //==========================================================================
32 //#####DESCRIPTIONBEGIN####
33 //
34 // Author(s): gthomas
35 // Contributors: gthomas
36 // Date: 2000-12-13
37 // Purpose:
38 // Description:
39 //
40 // This code is part of RedBoot (tm).
41 //
42 //####DESCRIPTIONEND####
43 //
44 //==========================================================================
45
46 #include <cyg/hal/hal_arch.h>
47
48 //
49 // These strings are used for informational purposes only. If the end
50 // user wishes to replace them, simply redefine them in a platform specific
51 // file, e.g. in a local file used to provide additional local RedBoot
52 // customization. Examples of such are platforms which define a special
53 // 'exec' command used to start a Linux kernel.
54 //
55 // CAUTION! Since this file is compiled using very special rules, it is not
56 // possible to replace it with a local version contained in the "build" tree.
57 // Replacing the information exported herein is accomplished via the techniques
58 // outlined above.
59 //
60
61 char RedBoot_version[] CYGBLD_ATTRIB_WEAK =
62 "\nRedBoot(tm) debug environment - built " __TIME__ ", " __DATE__ "\n";
63
64 // Override default GDB stubs 'info'
65 // Note: this can still be a "weak" symbol since it will occur in the .o
66 // file explicitly mentioned in the link command. User programs will
67 // still be allowed to override it.
68 char GDB_stubs_version[] CYGBLD_ATTRIB_WEAK =
69 "eCos GDB stubs [via RedBoot] - built " __DATE__ " / " __TIME__;