forked from seapath/yocto-bsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seapath.conf.sample
43 lines (33 loc) · 1.5 KB
/
seapath.conf.sample
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
# Copyright (C) 2022, RTE (http://www.rte-france.com)
# SPDX-License-Identifier: Apache-2.0
# SEAPATH configuration file sample
# This file can be used as example to create a seapath.conf file.
# Each variable defined here is set as it default value.
# Keymap
SEAPATH_KEYMAP='us'
# Limite the number of jobs to compile Ceph to avoid out of memory errors
SEAPATH_PARALLEL_MAKE='8'
# CPUs reserved for real time applications, containers and VMs.
# It can be an single CPU or a plage delimited by - (e.g. 2-5). Mulitples CPUs
# and plages can be defined using , as seperator (e.g 0,2-5,7,10-12).
# The CPU enumeration begins at 0, so the maximum value is 1 less than the
# number of CPUs core on the system.
# If not defined, no CPU will be reserved.
SEAPATH_RT_CORES=''
# 1 GiB hugepages reserved in hypervisor
# 1 GiB hugepages are used by DPDK. It must be 1 + maximum VMs using DPDK
# If the do not use DPDK do not set this variable.
# Warning: each 1 GiB hugepage reserved can not be used as system memory.
SEAPATH_1G_HUGEPAGES=''
# Hashed password to access Grub shell if security is enabled.
# The password has to be stored hashed in pbkdf2 format.
# To generate the hashed from the plain password, the following command can be
# used:
# grub-mkpasswd-pbkdf2 -c 65536 -s 256 -l 64
SEAPATH_GRUB_PASSWORD=''
# Time in seconds grub waiting before boot SEAPATH.
SEAPATH_GRUB_TIMEOUT='0'
# Set to true to disable IPv6.
SEAPATH_DISABLE_IPV6='false'
# Set to true to disable IPv6 for guest images
SEAPATH_GUEST_DISABLE_IPV6='false'