This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/linux-2.6.10/include/asm-parisc/bootdata.h

17 lines
329 B
C

#ifndef _PARISC_BOOTDATA_H
#define _PARISC_BOOTDATA_H
/* structure given from bootloader... */
typedef struct {
unsigned data_valid_signature,
initrd_start,
initrd_end;
char commandline[1024];
} bootdata_t;
#define BOOTDATA_DATA_VALID_SIGNATURE 0xC0400000
#define BOOTDATA_PTR ((bootdata_t*) 0xC0400000)
#endif