initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / asm-parisc / bootdata.h
blobe4de299b36d7f0525720ca6839dae50b809405fc
1 #ifndef _PARISC_BOOTDATA_H
2 #define _PARISC_BOOTDATA_H
4 /* structure given from bootloader... */
5 typedef struct {
6 unsigned data_valid_signature,
7 initrd_start,
8 initrd_end;
9 char commandline[1024];
10 } bootdata_t;
12 #define BOOTDATA_DATA_VALID_SIGNATURE 0xC0400000
14 #define BOOTDATA_PTR ((bootdata_t*) 0xC0400000)
16 #endif