~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/sh/include/asm/setup.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _SH_SETUP_H
 
2
#define _SH_SETUP_H
 
3
 
 
4
#include <asm-generic/setup.h>
 
5
 
 
6
#ifdef __KERNEL__
 
7
/*
 
8
 * This is set up by the setup-routine at boot-time
 
9
 */
 
10
#define PARAM   ((unsigned char *)empty_zero_page)
 
11
 
 
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))
 
18
/* ... */
 
19
#define COMMAND_LINE ((char *) (PARAM+0x100))
 
20
 
 
21
void sh_mv_setup(void);
 
22
void check_for_initrd(void);
 
23
 
 
24
#endif /* __KERNEL__ */
 
25
 
 
26
#endif /* _SH_SETUP_H */