blob: d0954a2e9376bbafc2a6d3133ec61867bdafec14 (
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
|
# use systemd as the default init manager
# comment the following lines to use 'sysvinit' as the init manager
VIRTUAL-RUNTIME_init_manager = "systemd"
DISTRO_FEATURES_BACKFILL_CONSIDERED_append = " sysvinit"
DISTRO_FEATURES_append = " systemd"
DISTRO_FEATURES_append = " \
x11 \
opengl \
pam \
"
VIRTUAL-RUNTIME_base-utils = "busybox"
KERNEL_CLASSES_append = " anaconda_kernel"
IMAGE_FEATURES_append = " package-management"
# Want ldconfig in the output package
# The python module require it
DISTRO_FEATURES_append = " ldconfig"
# It works for both of syslinux and grub-efi
LABELS_LIVE = "boot"
# Have graphics and serial in the boot menu when use grub-efi in iso
GRUB_GFXSERIAL = "1"
QB_MEM_qemux86-64 = "-m 2048"
HOSTTOOLS_append = " tac"
MACHINE_FEATURES_append = " efi pcbios"
UVESA_MODE = "1024x768-32"
|