summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp/conf/machine
diff options
context:
space:
mode:
Diffstat (limited to 'meta-yocto-bsp/conf/machine')
-rw-r--r--meta-yocto-bsp/conf/machine/genericarm64.conf14
1 files changed, 8 insertions, 6 deletions
diff --git a/meta-yocto-bsp/conf/machine/genericarm64.conf b/meta-yocto-bsp/conf/machine/genericarm64.conf
index 83f1aca137..7c4c76ffe0 100644
--- a/meta-yocto-bsp/conf/machine/genericarm64.conf
+++ b/meta-yocto-bsp/conf/machine/genericarm64.conf
@@ -1,6 +1,6 @@
1#@TYPE: Machine 1#@TYPE: Machine
2#@NAME: genericarm64 2#@NAME: genericarm64
3#@DESCRIPTION: Generic Arm64 machine for typical SystemReady platforms, which 3#@DESCRIPTION: Generic Arm64 machine for typical SystemReady IR/ES platforms, which
4#have working firmware and boot via EFI. 4#have working firmware and boot via EFI.
5 5
6require conf/machine/include/arm/arch-armv8a.inc 6require conf/machine/include/arm/arch-armv8a.inc
@@ -10,15 +10,17 @@ DEFAULTTUNE = "armv8a-crc"
10 10
11MACHINE_FEATURES = "acpi alsa bluetooth efi keyboard pci qemu-usermode rtc screen usbhost vfat wifi" 11MACHINE_FEATURES = "acpi alsa bluetooth efi keyboard pci qemu-usermode rtc screen usbhost vfat wifi"
12 12
13# Install all the kernel modules and all the firmware
14MACHINE_EXTRA_RRECOMMENDS += "kernel-modules linux-firmware"
15
16KERNEL_IMAGETYPE = "Image" 13KERNEL_IMAGETYPE = "Image"
17PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" 14PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
18 15
19# Use an initramfs and populate it with the kernel modules 16# Install all the kernel modules into the rootfs
17MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
18# Install selected pieces of firmware
19MACHINE_EXTRA_RRECOMMENDS += "linux-firmware-wl12xx linux-firmware-wl18xx linux-firmware-rtl-nic"
20
21# Use an initramfs and populate it with the kernel modules and key firmware
20INITRAMFS_IMAGE ?= "core-image-initramfs-boot" 22INITRAMFS_IMAGE ?= "core-image-initramfs-boot"
21PACKAGE_INSTALL:append:pn-core-image-initramfs-boot = " kernel-modules" 23PACKAGE_INSTALL:append:pn-core-image-initramfs-boot = " ${MACHINE_EXTRA_RRECOMMENDS}"
22 24
23IMAGE_FSTYPES ?= "wic" 25IMAGE_FSTYPES ?= "wic"
24WKS_FILE ?= "genericarm64.wks.in" 26WKS_FILE ?= "genericarm64.wks.in"