zimage.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * (C) Copyright 2002
  3. * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef _ASM_ZIMAGE_H_
  24. #define _ASM_ZIMAGE_H_
  25. /* linux i386 zImage/bzImage header. Offsets relative to
  26. * the start of the image */
  27. #define CMD_LINE_MAGIC_OFF 0x020 /* Magic 0xa33f if the offset below is valid */
  28. #define CMD_LINE_OFFSET_OFF 0x022 /* Offset to comandline */
  29. #define SETUP_SECTS_OFF 0x1F1 /* The size of the setup in sectors */
  30. #define ROOT_FLAGS_OFF 0x1F2 /* If set, the root is mounted readonly */
  31. #define VID_MODE_OFF 0x1FA /* Video mode control */
  32. #define ROOT_DEV_OFF 0x1FC /* Default root device number */
  33. #define BOOT_FLAG_OFF 0x1FE /* 0xAA55 magic number */
  34. #define HEADER_OFF 0x202 /* Magic signature "HdrS" */
  35. #define VERSION_OFF 0x206 /* Boot protocol version supported */
  36. #define REALMODE_SWTCH_OFF 0x208 /* Boot loader hook (see below) */
  37. #define START_SYS_OFF 0x20C /* Points to kernel version string */
  38. #define TYPE_OF_LOADER_OFF 0x210 /* Boot loader identifier */
  39. #define LOADFLAGS_OFF 0x211 /* Boot protocol option flags */
  40. #define SETUP_MOVE_SIZE_OFF 0x212 /* Move to high memory size (used with hooks) */
  41. #define CODE32_START_OFF 0x214 /* Boot loader hook (see below) */
  42. #define RAMDISK_IMAGE_OFF 0x218 /* initrd load address (set by boot loader) */
  43. #define RAMDISK_SIZE_OFF 0x21C /* initrd size (set by boot loader) */
  44. #define HEAP_END_PTR_OFF 0x224 /* Free memory after setup end */
  45. #define CMD_LINE_PTR_OFF 0x228 /* 32-bit pointer to the kernel command line */
  46. #define HEAP_FLAG 0x80
  47. #define BIG_KERNEL_FLAG 0x01
  48. /* magic numbers */
  49. #define KERNEL_MAGIC 0xaa55
  50. #define KERNEL_V2_MAGIC 0x53726448
  51. #define COMMAND_LINE_MAGIC 0xA33F
  52. /* limits */
  53. #define BZIMAGE_MAX_SIZE 15*1024*1024 /* 15MB */
  54. #define ZIMAGE_MAX_SIZE 512*1024 /* 512k */
  55. #define SETUP_MAX_SIZE 32768
  56. #define SETUP_START_OFFSET 0x200
  57. #define BZIMAGE_LOAD_ADDR 0x100000
  58. #define ZIMAGE_LOAD_ADDR 0x10000
  59. void *load_zimage(char *image, unsigned long kernel_size,
  60. unsigned long initrd_addr, unsigned long initrd_size,
  61. int auto_boot);
  62. void boot_zimage(void *setup_base);
  63. image_header_t *fake_zimage_header(image_header_t *hdr, void *ptr, int size);
  64. #endif