README 327 B

123456789101112
  1. To extract the kernel vmlinux, System.map, .config or initrd from the zImage binary:
  2. objcopy -j .kernel:vmlinux -O binary zImage vmlinux.gz
  3. objcopy -j .kernel:System.map -O binary zImage System.map.gz
  4. objcopy -j .kernel:.config -O binary zImage config.gz
  5. objcopy -j .kernel:initrd -O binary zImage.initrd initrd.gz
  6. Peter