-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
53 lines (36 loc) · 1.09 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Linux/m68k bootinfo tool
========================
INSTALL
-------
Build on Linux/m68k:
make
Cross-compile for Linux/m68k:
make CROSS_COMPILE=m68k-linux-gnu-
When building or cross-compiling for non-m68k, or for a Linux/m68k system
lacking the new <asm/bootinfo*.h> headerfiles, you have to use the installed
kernel headers from a recent Linux/m68k tree:
cd /path/to/kernel/build/tree
make headers_install
cd /path/to/m68k-bootinfo/tree
make M68K_HEADERS=/path/to/kernel/build/tree/usr/include
USAGE
-----
# m68k-bootinfo -h
m68k-bootinfo: [options]
Valid options are:
-f, --file file Specify bootinfo file
(default: /proc/bootinfo)
-h, --help Display this usage information
# m68k-bootinfo
machtype = atari
cputype = 68040
fputype = 68040
mmutype = 68040
memchunk of 0x00e00000 bytes at 0x00000000
memchunk of 0x10000000 bytes at 0x01000000
command_line = "root=/dev/hda1 video=atafb:tthigh debug=par console=tty0 BOOT_IMAGE=vmlinux"
atari.mch_cookie = FALCON
atari.mch_type = AB40
#
Have fun!
Geert Uytterhoeven <[email protected]>