Skip to content

Commit d89219a

Browse files
committed
Update contact information
Remove obsolete email addresses and add OpenBIOS mailing list information. Signed-off-by: Stefan Reinauer <[email protected]>
1 parent 4ad4383 commit d89219a

File tree

1,003 files changed

+1428
-1435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,003 files changed

+1428
-1435
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This program is part of a free implementation of the IEEE 1275-1994
66
# Standard for Boot (Initialization Configuration) Firmware.
77
#
8-
# Copyright (C) 2006-2009 coresystems GmbH <[email protected]>
8+
# Copyright (C) 2006-2009 coresystems GmbH
99
#
1010
# This program is free software; you can redistribute it and/or modify
1111
# it under the terms of the GNU General Public License as published by

README

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ Common Public License (CPL) version 1.0
1313
(see: http://www.opensource.org/licenses/cpl1.0.php)
1414

1515

16-
For information please contact [email protected]
17-
16+
For information please contact the OpenBIOS Mailinglist <[email protected]>

detok/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# This program is part of a free implementation of the IEEE 1275-1994
66
# Standard for Boot (Initialization Configuration) Firmware.
77
#
8-
# Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
9-
# Copyright (C) 2006-2009 coresystems GmbH <[email protected]>
8+
# Copyright (C) 2001-2010 Stefan Reinauer
9+
# Copyright (C) 2006-2009 coresystems GmbH
1010
#
1111
# This program is free software; you can redistribute it and/or modify
1212
# it under the terms of the GNU General Public License as published by

detok/README

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Table of Contents:
5252
$ detok -ov world.fc
5353
Welcome to the OpenBIOS detokenizer v0.6.1
5454
detok Copyright(c) 2001-2005 by Stefan Reinauer.
55-
Written by Stefan Reinauer, <[email protected]>
55+
Written by Stefan Reinauer
5656
This program is free software; you may redistribute it under the terms of
5757
the GNU General Public License. This program has absolutely no warranty.
5858

@@ -75,6 +75,5 @@ Table of Contents:
7575
4. Contact
7676

7777
Any ideas, bug reports, patches, contributions, discussion is
78-
welcome.
79-
80-
Stefan Reinauer <[email protected]>
78+
welcome. Please send email to the OpenBIOS mailing list at
79+

detok/addfcodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
8+
* Copyright (C) 2001-2010 Stefan Reinauer
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License as published by

detok/addfcodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
8+
* Copyright (C) 2001-2010 Stefan Reinauer
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License as published by

detok/decode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
10+
* Copyright (C) 2001-2010 Stefan Reinauer
1111
*
1212
* This program is free software; you can redistribute it and/or modify
1313
* it under the terms of the GNU General Public License as published by

detok/detok.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
11-
* Copyright (C) 2006 coresystems GmbH <[email protected]>
10+
* Copyright (C) 2001-2010 Stefan Reinauer
11+
* Copyright (C) 2006 coresystems GmbH
1212
*
1313
* This program is free software; you can redistribute it and/or modify
1414
* it under the terms of the GNU General Public License as published by
@@ -47,8 +47,8 @@
4747

4848
#define DETOK_VERSION "1.0.3"
4949

50-
#define CORE_COPYR "(C) Copyright 2001-2010 Stefan Reinauer.\n" \
51-
"(C) Copyright 2006 coresystems GmbH <[email protected]>"
50+
#define CORE_COPYR "(C) Copyright 2001-2010 Stefan Reinauer\n" \
51+
"(C) Copyright 2006 coresystems GmbH"
5252
#define IBM_COPYR "(C) Copyright 2005 IBM Corporation. All Rights Reserved."
5353

5454
bool verbose = FALSE;
@@ -67,7 +67,7 @@ static void print_copyright(bool is_error)
6767
sprintf(buffr,
6868
"Welcome to detok - FCode detokenizer v" DETOK_VERSION "\n"
6969
CORE_COPYR "\n" IBM_COPYR "\n"
70-
"Written by Stefan Reinauer <[email protected]>\n"
70+
"Written by Stefan Reinauer\n"
7171
"This program is free software; you may redistribute it "
7272
"under the terms of\nthe GNU General Public License v2. "
7373
"This program has absolutely no warranty.\n\n");

detok/detok.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* This program is part of a free implementation of the IEEE 1275-1994
1111
* Standard for Boot (Initialization Configuration) Firmware.
1212
*
13-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
13+
* Copyright (C) 2001-2010 Stefan Reinauer
1414
*
1515
* This program is free software; you can redistribute it and/or modify
1616
* it under the terms of the GNU General Public License as published by

detok/dictionary.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
10+
* Copyright (C) 2001-2010 Stefan Reinauer
1111
*
1212
* This program is free software; you can redistribute it and/or modify
1313
* it under the terms of the GNU General Public License as published by

detok/pcihdr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
8+
* Copyright (C) 2001-2010 Stefan Reinauer
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License as published by

detok/printformats.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
8+
* Copyright (C) 2001-2010 Stefan Reinauer
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License as published by

detok/stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
10+
* Copyright (C) 2001-2010 Stefan Reinauer
1111
*
1212
* This program is free software; you can redistribute it and/or modify
1313
* it under the terms of the GNU General Public License as published by

detok/stream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
10+
* Copyright (C) 2001-2010 Stefan Reinauer
1111
*
1212
* This program is free software; you can redistribute it and/or modify
1313
* it under the terms of the GNU General Public License as published by

documentation/detok.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h3 style="margin-left: 40px;"><a class="mozTocH3" name="mozTocId621166"></a><a
126126
<br>
127127
</div>
128128
<pre
129-
style="font-family: courier new; margin-left: 40px; color: rgb(204, 0, 0);">\ Welcome to the OpenBIOS detokenizer v0.6.1<br>\ detok Copyright(c) 2001-2005 by Stefan Reinauer.<br>\ Written by Stefan Reinauer, &lt;[email protected]&gt;<br>\ This program is free software; you may redistribute it under the terms of<br>\ the GNU General Public License. This program has absolutely no warranty.<br>\ <br>\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.<br>\ PCI Header identified<br>\ Offset to Data Structure = 0x001c (28)<br>\ PCI Data Structure identified<br>\ Data Structure Length = 0x0018 (24)<br>\ Vendor ID: 0x17d5<br>\ Device ID: 0x5417<br>\ Class Code: 0x020000 (Ethernet controller)<br>\ Image Revision: 0xf2ed<br>\ Code Type: 0x01 (Open Firmware)<br>\ Image Length: 0x0001 blocks (512 bytes)<br>\ Last PCI Image.<br>start1 ( 0x0f1 ) ( 16-bit offsets)<br> format: 0x08<br> checksum: 0x33d5 (Ok)<br> len: 0x009e ( 158 bytes)<br>named-token ( 0x0b6 ) hello/goodbye 0x800<br>b(:) ( 0x0b7 ) <br> b?branch ( 0x014 ) 0x0028 ( =dec 40)<br> b(") ( 0x012 ) ( len=0x1f [31 bytes] )<br> " Hello, you big beautiful world!"<br> type ( 0x090 ) <br> bbranch ( 0x013 ) 0x0030 ( =dec 48)<br> b(&gt;resolve) ( 0x0b2 ) <br> b(") ( 0x012 ) ( len=0x29 [41 bytes] )<br> " Goodbye, cruel world. Gggga-a-a-ackkkkk!"<br> type ( 0x090 ) <br> b(&gt;resolve) ( 0x0b2 ) <br>b(;) ( 0x0c2 ) <br>named-token ( 0x0b6 ) I-say-hello 0x801<br>b(:) ( 0x0b7 ) <br> -1 ( 0x0a4 ) <br> hello/goodbye ( 0x800 ) <br>b(;) ( 0x0c2 ) <br>named-token ( 0x0b6 ) You-say-goodbye 0x802<br>b(:) ( 0x0b7 ) <br> 0 ( 0x0a5 ) <br> hello/goodbye ( 0x800 ) <br>b(;) ( 0x0c2 ) <br>end0 ( 0x000 ) <br>\ Detokenization finished normally after 158 bytes.<br>\ PCI Image padded with 302 bytes of zero</pre>
129+
style="font-family: courier new; margin-left: 40px; color: rgb(204, 0, 0);">\ Welcome to the OpenBIOS detokenizer v0.6.1<br>\ detok Copyright(c) 2001-2005 by Stefan Reinauer.<br>\ Written by Stefan Reinauer<br>\ This program is free software; you may redistribute it under the terms of<br>\ the GNU General Public License. This program has absolutely no warranty.<br>\ <br>\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.<br>\ PCI Header identified<br>\ Offset to Data Structure = 0x001c (28)<br>\ PCI Data Structure identified<br>\ Data Structure Length = 0x0018 (24)<br>\ Vendor ID: 0x17d5<br>\ Device ID: 0x5417<br>\ Class Code: 0x020000 (Ethernet controller)<br>\ Image Revision: 0xf2ed<br>\ Code Type: 0x01 (Open Firmware)<br>\ Image Length: 0x0001 blocks (512 bytes)<br>\ Last PCI Image.<br>start1 ( 0x0f1 ) ( 16-bit offsets)<br> format: 0x08<br> checksum: 0x33d5 (Ok)<br> len: 0x009e ( 158 bytes)<br>named-token ( 0x0b6 ) hello/goodbye 0x800<br>b(:) ( 0x0b7 ) <br> b?branch ( 0x014 ) 0x0028 ( =dec 40)<br> b(") ( 0x012 ) ( len=0x1f [31 bytes] )<br> " Hello, you big beautiful world!"<br> type ( 0x090 ) <br> bbranch ( 0x013 ) 0x0030 ( =dec 48)<br> b(&gt;resolve) ( 0x0b2 ) <br> b(") ( 0x012 ) ( len=0x29 [41 bytes] )<br> " Goodbye, cruel world. Gggga-a-a-ackkkkk!"<br> type ( 0x090 ) <br> b(&gt;resolve) ( 0x0b2 ) <br>b(;) ( 0x0c2 ) <br>named-token ( 0x0b6 ) I-say-hello 0x801<br>b(:) ( 0x0b7 ) <br> -1 ( 0x0a4 ) <br> hello/goodbye ( 0x800 ) <br>b(;) ( 0x0c2 ) <br>named-token ( 0x0b6 ) You-say-goodbye 0x802<br>b(:) ( 0x0b7 ) <br> 0 ( 0x0a5 ) <br> hello/goodbye ( 0x800 ) <br>b(;) ( 0x0c2 ) <br>end0 ( 0x000 ) <br>\ Detokenization finished normally after 158 bytes.<br>\ PCI Image padded with 302 bytes of zero</pre>
130130
<h3 style="margin-left: 40px;"><a class="mozTocH3" name="mozTocId409633"></a><a
131131
name="with_offsets"></a>DeTokenizer output
132132
with the "offsets" option selected:</h3>
@@ -152,7 +152,7 @@ <h3 style="margin-left: 40px;"><a class="mozTocH3" name="mozTocId460016"></a><a
152152
<br>
153153
</div>
154154
<pre
155-
style="font-family: courier new; margin-left: 40px; color: rgb(204, 0, 0);">\ Welcome to the OpenBIOS detokenizer v0.6.1<br>\ detok Copyright(c) 2001-2005 by Stefan Reinauer.<br>\ Written by Stefan Reinauer, &lt;[email protected]&gt;<br>\ This program is free software; you may redistribute it under the terms of<br>\ the GNU General Public License. This program has absolutely no warranty.<br>\ <br>\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.<br>\ PCI Header identified<br>\ Offset to Data Structure = 0x001c (28)<br>\ PCI Data Structure identified<br>\ Data Structure Length = 0x0018 (24)<br>\ Vendor ID: 0x17d5<br>\ Device ID: 0x5417<br>\ Class Code: 0x020000 (Ethernet controller)<br>\ Image Revision: 0xf2ed<br>\ Code Type: 0x01 (Open Firmware)<br>\ Image Length: 0x0001 blocks (512 bytes)<br>\ Last PCI Image.<br> 0: start1 ( 0x0f1 ) ( 16-bit offsets)<br> 1: format: 0x08<br> 2: checksum: 0x33d5 (Ok)<br> 4: len: 0x009e ( 158 bytes)<br> 8: named-token ( 0x0b6 ) hello/goodbye 0x800<br> 25: b(:) ( 0x0b7 ) <br> 26: b?branch ( 0x014 ) 0x0028 ( =dec 40 dest = 67 )<br> 29: b(") ( 0x012 ) ( len=0x1f [31 bytes] )<br> " Hello, you big beautiful world!"<br> 62: type ( 0x090 ) <br> 63: bbranch ( 0x013 ) 0x0030 ( =dec 48 dest = 112 )<br> 66: b(&gt;resolve) ( 0x0b2 ) <br> 67: b(") ( 0x012 ) ( len=0x29 [41 bytes] )<br> " Goodbye, cruel world. Gggga-a-a-ackkkkk!"<br> 110: type ( 0x090 ) <br> 111: b(&gt;resolve) ( 0x0b2 ) <br> 112: b(;) ( 0x0c2 ) <br> 113: named-token ( 0x0b6 ) I-say-hello 0x801<br> 128: b(:) ( 0x0b7 ) <br> 129: -1 ( 0x0a4 ) <br> 130: hello/goodbye ( 0x800 ) <br> 132: b(;) ( 0x0c2 ) <br> 133: named-token ( 0x0b6 ) You-say-goodbye 0x802<br> 152: b(:) ( 0x0b7 ) <br> 153: 0 ( 0x0a5 ) <br> 154: hello/goodbye ( 0x800 ) <br> 156: b(;) ( 0x0c2 ) <br> 157: end0 ( 0x000 ) <br>\ Detokenization finished normally after 158 bytes.<br>\ PCI Image padded with 302 bytes of zero</pre>
155+
style="font-family: courier new; margin-left: 40px; color: rgb(204, 0, 0);">\ Welcome to the OpenBIOS detokenizer v0.6.1<br>\ detok Copyright(c) 2001-2005 by Stefan Reinauer.<br>\ Written by Stefan Reinauer<br>\ This program is free software; you may redistribute it under the terms of<br>\ the GNU General Public License. This program has absolutely no warranty.<br>\ <br>\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.<br>\ PCI Header identified<br>\ Offset to Data Structure = 0x001c (28)<br>\ PCI Data Structure identified<br>\ Data Structure Length = 0x0018 (24)<br>\ Vendor ID: 0x17d5<br>\ Device ID: 0x5417<br>\ Class Code: 0x020000 (Ethernet controller)<br>\ Image Revision: 0xf2ed<br>\ Code Type: 0x01 (Open Firmware)<br>\ Image Length: 0x0001 blocks (512 bytes)<br>\ Last PCI Image.<br> 0: start1 ( 0x0f1 ) ( 16-bit offsets)<br> 1: format: 0x08<br> 2: checksum: 0x33d5 (Ok)<br> 4: len: 0x009e ( 158 bytes)<br> 8: named-token ( 0x0b6 ) hello/goodbye 0x800<br> 25: b(:) ( 0x0b7 ) <br> 26: b?branch ( 0x014 ) 0x0028 ( =dec 40 dest = 67 )<br> 29: b(") ( 0x012 ) ( len=0x1f [31 bytes] )<br> " Hello, you big beautiful world!"<br> 62: type ( 0x090 ) <br> 63: bbranch ( 0x013 ) 0x0030 ( =dec 48 dest = 112 )<br> 66: b(&gt;resolve) ( 0x0b2 ) <br> 67: b(") ( 0x012 ) ( len=0x29 [41 bytes] )<br> " Goodbye, cruel world. Gggga-a-a-ackkkkk!"<br> 110: type ( 0x090 ) <br> 111: b(&gt;resolve) ( 0x0b2 ) <br> 112: b(;) ( 0x0c2 ) <br> 113: named-token ( 0x0b6 ) I-say-hello 0x801<br> 128: b(:) ( 0x0b7 ) <br> 129: -1 ( 0x0a4 ) <br> 130: hello/goodbye ( 0x800 ) <br> 132: b(;) ( 0x0c2 ) <br> 133: named-token ( 0x0b6 ) You-say-goodbye 0x802<br> 152: b(:) ( 0x0b7 ) <br> 153: 0 ( 0x0a5 ) <br> 154: hello/goodbye ( 0x800 ) <br> 156: b(;) ( 0x0c2 ) <br> 157: end0 ( 0x000 ) <br>\ Detokenization finished normally after 158 bytes.<br>\ PCI Image padded with 302 bytes of zero</pre>
156156
<div style="margin-left: 80px;">There's another option called "line
157157
numbers" but it only numbers the
158158
lines of output.&nbsp; It's easy enough to describe, and so needs no

romheaders/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# This program is part of a free implementation of the IEEE 1275-1994
66
# Standard for Boot (Initialization Configuration) Firmware.
77
#
8-
# Copyright (C) 2002-2010 Stefan Reinauer <[email protected]>
9-
# Copyright (C) 2009 coresystems GmbH <[email protected]>
8+
# Copyright (C) 2002-2010 Stefan Reinauer
9+
# Copyright (C) 2009 coresystems GmbH
1010
#
1111
# This program is free software; you can redistribute it and/or modify
1212
# it under the terms of the GNU General Public License as published by

romheaders/romheaders.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2010 Stefan Reinauer <[email protected]>
9-
* Copyright (C) 2006 coresystems GmbH <[email protected]>
8+
* Copyright (C) 2001-2010 Stefan Reinauer
9+
* Copyright (C) 2006 coresystems GmbH
1010
*
1111
* This program is free software; you can redistribute it and/or modify
1212
* it under the terms of the GNU General Public License as published by

shared/classcodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This program is part of a free implementation of the IEEE 1275-1994
66
* Standard for Boot (Initialization Configuration) Firmware.
77
*
8-
* Copyright (C) 2001-2005 Stefan Reinauer, <[email protected]>
8+
* Copyright (C) 2001-2005 Stefan Reinauer
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License as published by

shared/pcihdr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* This program is part of a free implementation of the IEEE 1275-1994
88
* Standard for Boot (Initialization Configuration) Firmware.
99
*
10-
* Copyright (C) 2001-2005 Stefan Reinauer, <[email protected]>
11-
* Copyright (C) 2006 coresystems GmbH <[email protected]>
10+
* Copyright (C) 2001-2005 Stefan Reinauer
11+
* Copyright (C) 2006 coresystems GmbH
1212
*
1313
* This program is free software; you can redistribute it and/or modify
1414
* it under the terms of the GNU General Public License as published by

shared/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* This program is part of a free implementation of the IEEE 1275-1994
99
* Standard for Boot (Initialization Configuration) Firmware.
1010
*
11-
* Copyright (C) 2001-2005 Stefan Reinauer, <[email protected]>
11+
* Copyright (C) 2001-2005 Stefan Reinauer
1212
*
1313
* This program is free software; you can redistribute it and/or modify
1414
* it under the terms of the GNU General Public License as published by

testlogs/testlogs-ppc-aix/TokBrack/TokBrkErrTst_01.DeTok

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
\ Welcome to detok - OpenBIOS detokenizer v1.0.2
22
\ (C) Copyright 2001-2006 Stefan Reinauer.
3-
\ (C) Copyright 2006 coresystems GmbH <[email protected]>
3+
\ (C) Copyright 2006 coresystems GmbH
44
\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.
5-
\ Written by Stefan Reinauer, <[email protected]>
5+
\ Written by Stefan Reinauer
66
\ This program is free software; you may redistribute it under the terms of
77
\ the GNU General Public License v2. This program has absolutely no warranty.
88
\

testlogs/testlogs-ppc-aix/TokBrack/TokBrkErrTst_01.Log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ toke -v -i TokBrkErrTst_01.fth
22

33
Welcome to toke - OpenBIOS tokenizer v1.0.2
44
(C) Copyright 2001-2006 Stefan Reinauer.
5-
(C) Copyright 2006 coresystems GmbH <[email protected]>
5+
(C) Copyright 2006 coresystems GmbH
66
(C) Copyright 2005 IBM Corporation. All Rights Reserved.
77
This program is free software; you may redistribute it under the terms of
88
the GNU General Public License v2. This program has absolutely no warranty.

testlogs/testlogs-ppc-aix/TokBrack/TokBrkTst_01.DeTok

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
\ Welcome to detok - OpenBIOS detokenizer v1.0.2
22
\ (C) Copyright 2001-2006 Stefan Reinauer.
3-
\ (C) Copyright 2006 coresystems GmbH <[email protected]>
3+
\ (C) Copyright 2006 coresystems GmbH
44
\ (C) Copyright 2005 IBM Corporation. All Rights Reserved.
5-
\ Written by Stefan Reinauer, <[email protected]>
5+
\ Written by Stefan Reinauer
66
\ This program is free software; you may redistribute it under the terms of
77
\ the GNU General Public License v2. This program has absolutely no warranty.
88
\

testlogs/testlogs-ppc-aix/TokBrack/TokBrkTst_01.Log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ toke -v -i TokBrkTst_01.fth
22

33
Welcome to toke - OpenBIOS tokenizer v1.0.2
44
(C) Copyright 2001-2006 Stefan Reinauer.
5-
(C) Copyright 2006 coresystems GmbH <[email protected]>
5+
(C) Copyright 2006 coresystems GmbH
66
(C) Copyright 2005 IBM Corporation. All Rights Reserved.
77
This program is free software; you may redistribute it under the terms of
88
the GNU General Public License v2. This program has absolutely no warranty.

0 commit comments

Comments
 (0)