Project

General

Profile

Download (1.39 KB) Statistics
| Branch: | Revision:
1
#
2
# initramfs.conf
3
# Configuration file for mkinitramfs(8). See initramfs.conf(5).
4
#
5

    
6
#
7
# MODULES: [ most | netboot | dep | list ]
8
#
9
# most - Add all framebuffer, acpi, filesystem, and harddrive drivers.
10
#
11
# dep - Try and guess which modules to load.
12
#
13
# netboot - Add the base modules, network modules, but skip block devices.
14
#
15
# list - Only include modules from the 'additional modules' list
16
#
17

    
18
MODULES=netboot
19

    
20
#
21
# BUSYBOX: [ y | n ]
22
#
23
# Use busybox if available.
24
#
25

    
26
BUSYBOX=y
27

    
28
#
29
# COMPCACHE_SIZE: [ "x K" | "x M" | "x G" | "x %" ]
30
#
31
# Amount of RAM to use for RAM-based compressed swap space.
32
#
33
# An empty value - compcache isn't used, or added to the initramfs at all.
34
# An integer and K (e.g. 65536 K) - use a number of kilobytes.
35
# An integer and M (e.g. 256 M) - use a number of megabytes.
36
# An integer and G (e.g. 1 G) - use a number of gigabytes.
37
# An integer and % (e.g. 50 %) - use a percentage of the amount of RAM.
38
#
39
# You can optionally install the compcache package to configure this setting
40
# via debconf and have userspace scripts to load and unload compcache.
41
# 
42

    
43
COMPCACHE_SIZE=""
44

    
45
#
46
# NFS Section of the config.
47
#
48

    
49
#
50
# BOOT: [ local | nfs ]
51
#
52
# local - Boot off of local media (harddrive, USB stick).
53
#
54
# nfs - Boot using an NFS drive as the root of the drive.
55
#
56

    
57
BOOT=nfs
58

    
59
#
60
# DEVICE: ...
61
#
62
# Specify the network interface, like eth0
63
#
64

    
65
DEVICE=eno1
66

    
67
#
68
# NFSROOT: [ auto | HOST:MOUNT ]
69
#
70

    
71
NFSROOT=auto
72

    
(17-17/33)