|
|
1.1 root 1: /******************************************************************************
2: * Copyright (c) 2010, 2011 IBM Corporation
3: * All rights reserved.
4: * This program and the accompanying materials
5: * are made available under the terms of the BSD License
6: * which accompanies this distribution, and is available at
7: * http://www.opensource.org/licenses/bsd-license.php
8: *
9: * Contributors:
10: * IBM Corporation - initial implementation
11: *****************************************************************************/
12:
13: /*
14: * Print version information
15: * This code is in a separate file so that it can be easily compiled during
16: * each new build (for refreshing the build date).
17: */
18:
19: #include "termctrl.h"
20: #include <product.h>
21:
22: .global print_version
23: print_version:
24: bl 0f
25: .ascii TERM_CTRL_RESET
26: .ascii TERM_CTRL_CRSOFF
27: .ascii " **********************************************************************"
28: .ascii "\r\n"
29: .ascii TERM_CTRL_BRIGHT
30: .ascii PRODUCT_NAME
31: .ascii " Starting\r\n"
32: .ascii TERM_CTRL_RESET
33: .ascii " Build Date = ", __DATE__, " ", __TIME__
34: .ascii "\r\n"
35: .ascii " FW Version = " , RELEASE
36: .ascii "\r\n\0"
37: .align 2
38: 0:
39: mflr r3
40: bl io_print
41:
42: b print_version_done
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.