]>
Commit | Line | Data |
---|---|---|
440bd198 A |
1 | |
2 | #------------------------------------------------------------------------------ | |
3 | # unknown: file(1) magic for unknown machines | |
4 | # | |
5 | # XXX - this probably should be pruned, as it'll match PDP-11 and | |
6 | # VAX image formats. | |
7 | # | |
8 | # 0x107 is 0407; 0x108 is 0410; both are PDP-11 (executable and pure, | |
9 | # respectively). | |
10 | # | |
11 | # 0x109 is 0411; that's PDP-11 split I&D, but the PDP-11 version doesn't | |
12 | # have the "version %ld", which may be a bogus COFFism (I don't think | |
13 | # there ever was COFF for the PDP-11). | |
14 | # | |
15 | # 0x10B is 0413; that's VAX demand-paged, but this is a short, not a | |
16 | # long, as it would be on a VAX. | |
17 | # | |
18 | # 0x10C is 0414, 0x10D is 0415, and 0x10E is 416; those *are* unknown. | |
19 | # | |
20 | 0 short 0x107 unknown machine executable | |
21 | >8 short >0 not stripped | |
22 | >15 byte >0 - version %ld | |
23 | 0 short 0x108 unknown pure executable | |
24 | >8 short >0 not stripped | |
25 | >15 byte >0 - version %ld | |
26 | 0 short 0x109 PDP-11 separate I&D | |
27 | >8 short >0 not stripped | |
28 | >15 byte >0 - version %ld | |
29 | 0 short 0x10b unknown pure executable | |
30 | >8 short >0 not stripped | |
31 | >15 byte >0 - version %ld | |
32 | 0 long 0x10c unknown demand paged pure executable | |
33 | >16 long >0 not stripped | |
34 | 0 long 0x10d unknown demand paged pure executable | |
35 | >16 long >0 not stripped | |
36 | 0 long 0x10e unknown readable demand paged pure executable |