-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbc-gene-bt05.conf
80 lines (58 loc) · 2.56 KB
/
sbc-gene-bt05.conf
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# MACHINE.conf
# Intel Baytrail, Atom Aaeon GENE-BT05
# https://www.aaeon.com/en/p/3-and-half-inches-subcompact-boards-gene-bt05
# Aspects of build-in inclusion are denoted with the use of an OVERRIDE from
# MACHINEOVERRIDES. Where functionality is only available from a specific Yocto
# meta-* layer, incorporate the appropriate conditional checks and test with
# that layer absent.
# OVERRIDES Description
# none default packagegroup, required even if empty
# :${MACHINE} additions based on MACHINE
# :libc-glibc additions for runtime glibc, locales
# :libc-musl additions for runtime musl
# :<machineoverride> additions for MACHINEOVERRIDES
MACHINEOVERRIDES =. "intel-core2-32:"
DEFAULTTUNE = "core2-64"
# uefi bootloader
EFI_PROVIDER = "grub-efi"
# meta-updater bootloader
OSTREE_BOOTLOADER = "grub"
require conf/machine/intel-core2-32.conf
# machine features
MACHINE_FEATURES += "efi keyboard pci rtc screen serial usbgadget usbhost wifi tpm"
MACHINE_FEATURES:remove = "intel-ucode alsa bluetooth pcbios pcmcia phone tpm2"
# machine firmware
LICENSE_FLAGS_ACCEPTED:append = ""
# undesired build artifacts
IMAGE_FSTYPES:remove = " image_repo_manifest ostreepush garagesign garagecheck ota-btrfs ota-ext4 wic"
require conf/machine/include/machine-common.conf
require conf/machine/include/machine-bootloader-${EFI_PROVIDER}.conf
# initramfs (meta-updater assumes only one FSTYPES)
INITRAMFS_FSTYPES = "cpio.gz"
INITRAMFS_IMAGE = "initramfs"
INITRAMFS_MAXSIZE = "393216"
INITRAMFS_IMAGE_BUNDLE = "0"
# if "1", generate warnings for missing features
KERNEL_DANGLING_FEATURES_WARN_ONLY = "1"
# kernel
# PREFERRED_PROVIDER_virtual/kernel = "linux-intel"
KMACHINE = "intel-corei7-64"
KTYPE = "standard"
KCONFIG_MODE = "--alldefconfig"
# initial command line
APPEND = "panic=120 net.ifnames=1 audit=1"
# used by systemd-serialgetty or shadow-securetty
SERIAL_CONSOLES = "115200;ttyS1"
# machine specific boot packages
MACHINE_ESSENTIAL_EXTRA_RDEPENDS = ""
# KERNEL_MODULE_AUTOLOAD += "cdc-mbim qmi-wwan qcserial usb-wwan"
# KERNEL_MODULE_PROBECONF += "ath9k"
# module_conf_ath9k = "blacklist ath9k"
# MACHINE_EXTRA_RDEPENDS += "linux-firmware-ath9k"
# KERNEL_MODULE_PROBECONF += "brcmdhd"
# module_conf_brcmdhd = "blacklist brcmdhd"
# MACHINE_EXTRA_RDEPENDS: += "linux-firmware-bcm4329-fullmac"
PACKAGE_FEED_URIS = "https://packages.distro-core.brainhoard.com/${MACHINE}/release packages.distro-core.brainhoard.com/${MACHINE}/updates"
PACKAGE_FEED_BASE_PATHS = "rpm rpm-dev"
PACKAGE_FEED_ARCHS = "all corei7-64"
# ---