4 #include <asm-generic/setup.h>
8 * This is set up by the setup-routine at boot-time
10 #define PARAM ((unsigned char *)empty_zero_page)
12 #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
13 #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
14 #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
15 #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
16 #define INITRD_START (*(unsigned long *) (PARAM+0x010))
17 #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
19 #define COMMAND_LINE ((char *) (PARAM+0x100))
21 int setup_early_printk(char *);
22 void sh_mv_setup(void);
24 #endif /* __KERNEL__ */
26 #endif /* _SH_SETUP_H */