linux/arch/mips/include/asm/lasat/head.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * Image header stuff
   4 */
   5#ifndef _HEAD_H
   6#define _HEAD_H
   7
   8#define LASAT_K_MAGIC0_VAL      0xfedeabba
   9#define LASAT_K_MAGIC1_VAL      0x00bedead
  10
  11#ifndef _LANGUAGE_ASSEMBLY
  12#include <linux/types.h>
  13struct bootloader_header {
  14        u32 magic[2];
  15        u32 version;
  16        u32 image_start;
  17        u32 image_size;
  18        u32 kernel_start;
  19        u32 kernel_entry;
  20};
  21#endif
  22
  23#endif /* _HEAD_H */
  24