root/arch/mips/lasat/image/head.S

/* [<][>][^][v][top][bottom][index][help] */
   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #include <asm/lasat/head.h>
   3 
   4         .text
   5         .section .text..start, "ax"
   6         .set noreorder
   7         .set mips3
   8 
   9         /* Magic words identifying a software image */
  10         .word   LASAT_K_MAGIC0_VAL
  11         .word   LASAT_K_MAGIC1_VAL
  12 
  13         /* Image header version */
  14         .word   0x00000002
  15 
  16         /* image start and size */
  17         .word   _image_start
  18         .word   _image_size
  19 
  20         /* start of kernel and entrypoint in uncompressed image */
  21         .word   _kernel_start
  22         .word   _kernel_entry
  23 
  24         /* Here we have room for future flags */
  25 
  26         .org    0x40
  27 reldate:
  28         .word   TIMESTAMP
  29 
  30         .org    0x50
  31 release:
  32         .string VERSION

/* [<][>][^][v][top][bottom][index][help] */