-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create standalone distro, fork from poky
- Loading branch information
1 parent
cf41311
commit 89d3d95
Showing
3 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
require conf/distro/poky.conf | ||
|
||
SUMMARY = "A small image just capable of allowing a device to boot." | ||
|
||
DISTRO = "nao-core-minimal" | ||
DISTRO_NAME = "nao-core-minimal" | ||
DISTRO_VERSION = "2.0" | ||
SDK_NAME = "${DISTRO}-${SDKMACHINE}" | ||
DISTRO_VERSION = "3.0" | ||
TARGET_VENDOR = "-aldebaran" | ||
IMAGE_NAME = "${IMAGE_BASENAME}-${DISTRO}-${DISTRO_VERSION}${IMAGE_VERSION_SUFFIX}" | ||
IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${DISTRO}-${DISTRO_VERSION}" | ||
SDK_NAME = "${DISTRO}-${SDKMACHINE}" | ||
SDK_VENDOR = "-naosdk" | ||
SDK_ARCHIVE_TYPE = "tar.zst" | ||
MAINTAINER = "Team HULKs <[email protected]>" | ||
|
||
hostname:pn-base-files = "nao" | ||
# TODO: maybe: ipv6 | ||
DISTRO_FEATURES ?= "alsa ext2 ipv4 usbgadget usbhost wifi xattr pci vfat pam polkit pulseaudio ldconfig" | ||
|
||
DISTRO_EXTRA_RDEPENDS += "packagegroup-core-boot" | ||
|
||
PREFERRED_PROVIDER_virtual/kernel = "linux-intel-rt" | ||
|
||
PREFERRED_PROVIDER_cgos-mod = "linux-intel-rt" | ||
KERNEL_MODULE_AUTOLOAD:append = " cgosdrv" | ||
|
||
IMAGE_NAME = "${IMAGE_BASENAME}-${DISTRO}-${DISTRO_VERSION}${IMAGE_VERSION_SUFFIX}" | ||
IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${DISTRO}-${DISTRO_VERSION}" | ||
PACKAGE_CLASSES ?= "package_ipk" | ||
|
||
DISTRO_FEATURES:remove = "x11 wayland 3g nfs nfc opengl vulkan bluetooth pcmcia" | ||
require conf/distro/include/no-static-libs.inc | ||
|
||
DISTRO_FEATURES:append = " pam polkit" | ||
BB_SIGNATURE_HANDLER ?= "OEEquivHash" | ||
BB_HASHSERVE ??= "auto" | ||
|
||
KERNEL_MODULE_AUTOLOAD:append = " cgosdrv" | ||
INIT_MANAGER = "systemd" | ||
|
||
DISTRO_FEATURES:append = " systemd usrmerge" | ||
VIRTUAL-RUNTIME_init_manager = "systemd" | ||
DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit" | ||
VIRTUAL-RUNTIME_initscripts = "" | ||
hostname:pn-base-files = "nao" |