blob: 5a8377b0750a1ecb857ab35d328534175c1e6086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <sys/param.h>
#include <sys/reboot.h>
#include <dev/ramdisk.h>
extern int boothowto;
#ifndef MINIROOTSIZE
#define MINIROOTSIZE 512
#endif
#define ROOTBYTES (MINIROOTSIZE << DEV_BSHIFT)
/* These two could be patched. */
int rd_root_size = ROOTBYTES;
char rd_root_image[ROOTBYTES] = "|This is the root ramdisk!\n";
/*
* This is called during autoconfig.
*/
void
rd_attach_hook(unit, rd)
int unit;
struct rd_conf *rd;
{
if (unit == 0) {
/* Setup root ramdisk */
rd->rd_addr = (caddr_t) rd_root_image;
rd->rd_size = (size_t) rd_root_size;
rd->rd_type = RD_KMEM_FIXED;
printf(" fixed, %d blocks", MINIROOTSIZE);
}
}
/*
* This is called during open (i.e. mountroot)
*/
void
rd_open_hook(unit, rd)
int unit;
struct rd_conf *rd;
{
if (unit == 0) {
/* The root ramdisk only works single-user. */
boothowto |= RB_SINGLE;
}
}
|