mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
94b212c29f
This also extends the code to handle 32-bit ELF vmlinux files as well as 64-bit ones. This is sufficient for booting on new-world 32-bit powermacs (i.e. all recent machines). Signed-off-by: Paul Mackerras <paulus@samba.org>
11 lines
327 B
Text
11 lines
327 B
Text
|
|
To extract the kernel vmlinux, System.map, .config or initrd from the zImage binary:
|
|
|
|
objcopy -j .kernel:vmlinux -O binary zImage vmlinux.gz
|
|
objcopy -j .kernel:System.map -O binary zImage System.map.gz
|
|
objcopy -j .kernel:.config -O binary zImage config.gz
|
|
objcopy -j .kernel:initrd -O binary zImage.initrd initrd.gz
|
|
|
|
|
|
Peter
|
|
|