blob: 035267a2ff2af7e32e850b9d2d1166bbfdffa14f (
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
|
# $NetBSD: RAMDISK,v 1.5 2021/08/01 15:29:29 andvar Exp $
#
# Install kernel with ramdisk added.
# The ramdisk is be too big to netboot directly via ECOFF on some machines,
# so keep it otherwise identical to INSTALL.
#
# Pull in standard `install' config
include "arch/emips/conf/INSTALL"
options DDB
pseudo-device ksyms
# Enable the hooks used for initializing the root memory-disk.
options MEMORY_DISK_HOOKS
options MEMORY_DISK_IS_ROOT # force root on memory disk
options MEMORY_DISK_SERVER=0 # no userspace memory disk support
options MEMORY_DISK_ROOT_SIZE=7600 # size of memory disk, in blocks (3800kB)
#options MEMORY_DISK_ROOT_SIZE=2880 # 1.44M, same as a floppy
# File systems: need MFS
file-system MFS # memory file system
# Extra Pseudo-Devices
# disk/mass storage pseudo-devices
pseudo-device md # memory disk device (ramdisk)
|