|
Last change
on this file since 43 was
43,
checked in by megakiss, 11 years ago
|
|
광주방송 OTC 주파수 369Mhz로 변경
|
-
Property svn:executable set to
*
|
|
File size:
364 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * Image header stuff |
|---|
| 3 | */ |
|---|
| 4 | #ifndef _HEAD_H |
|---|
| 5 | #define _HEAD_H |
|---|
| 6 | |
|---|
| 7 | #define LASAT_K_MAGIC0_VAL 0xfedeabba |
|---|
| 8 | #define LASAT_K_MAGIC1_VAL 0x00bedead |
|---|
| 9 | |
|---|
| 10 | #ifndef _LANGUAGE_ASSEMBLY |
|---|
| 11 | #include <linux/types.h> |
|---|
| 12 | struct bootloader_header { |
|---|
| 13 | __u32 magic[2]; |
|---|
| 14 | __u32 version; |
|---|
| 15 | __u32 image_start; |
|---|
| 16 | __u32 image_size; |
|---|
| 17 | __u32 kernel_start; |
|---|
| 18 | __u32 kernel_entry; |
|---|
| 19 | }; |
|---|
| 20 | #endif |
|---|
| 21 | |
|---|
| 22 | #endif /* _HEAD_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.