Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 1 | require conf/distro/include/phosphor-defaults.inc |
| 2 | |
Patrick Williams | 7e6220e | 2022-12-16 08:22:11 -0600 | [diff] [blame] | 3 | # Match the distro codename from upstream poky. |
| 4 | DISTRO_CODENAME ?= "langdale" |
| 5 | |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 6 | # Override these in poky based distros |
| 7 | POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland vulkan" |
| 8 | POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot" |
| 9 | POKY_DEFAULT_EXTRA_RRECOMMENDS = "kernel-module-af-packet" |
| 10 | |
| 11 | DISTRO_EXTRA_RDEPENDS += " ${POKY_DEFAULT_EXTRA_RDEPENDS}" |
| 12 | DISTRO_EXTRA_RRECOMMENDS += " ${POKY_DEFAULT_EXTRA_RRECOMMENDS}" |
| 13 | |
Brad Bishop | f14643d | 2020-08-12 06:31:39 -0400 | [diff] [blame] | 14 | DISTROOVERRIDES .= ":openbmc-phosphor" |
| 15 | |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 16 | TCLIBCAPPEND = "" |
| 17 | |
Anton Blanchard | 4d1faa8 | 2021-08-16 23:32:08 -0600 | [diff] [blame] | 18 | QEMU_TARGETS ?= "arm aarch64 i386 riscv32 riscv64 ppc64le x86_64" |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 19 | |
| 20 | PREMIRRORS ??= "\ |
| 21 | bzr://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 22 | cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 23 | git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 24 | gitsm://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 25 | hg://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 26 | osc://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 27 | p4://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 28 | svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" |
| 29 | |
| 30 | MIRRORS =+ "\ |
| 31 | ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 32 | http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \ |
| 33 | https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n" |
| 34 | |
Gunnar Mills | e5b3860 | 2018-08-31 12:39:15 -0500 | [diff] [blame] | 35 | # The CONNECTIVITY_CHECK_URI's are used to test whether we can successfully |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 36 | # fetch from the network (and warn you if not). To disable the test set |
| 37 | # the variable to be empty. |
Patrick Williams | b389cd9 | 2021-12-15 21:34:22 -0600 | [diff] [blame] | 38 | # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=https;rev=master |
Andrew Geissler | 05164d0 | 2022-02-10 10:36:05 -0600 | [diff] [blame] | 39 | CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html" |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 40 | |
| 41 | SANITY_TESTED_DISTROS ?= " \ |
| 42 | poky-2.4 \n \ |
| 43 | poky-2.5 \n \ |
| 44 | ubuntu-15.04 \n \ |
| 45 | ubuntu-16.04 \n \ |
| 46 | ubuntu-16.10 \n \ |
| 47 | ubuntu-17.04 \n \ |
| 48 | fedora-26 \n \ |
| 49 | centos-7 \n \ |
| 50 | debian-8 \n \ |
| 51 | debian-9 \n \ |
| 52 | opensuse-42.1 \n \ |
| 53 | opensuse-42.2 \n \ |
| 54 | " |
| 55 | # |
| 56 | # OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in |
| 57 | # an incompatible way. Such changes should usually be detailed in the commit |
| 58 | # that breaks the format and have been previously discussed on the mailing list |
| 59 | # with general agreement from the core team. |
| 60 | # |
| 61 | |
| 62 | OELAYOUT_ABI = "12" |
| 63 | |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 64 | # QA check settings - a little stricter than the OE-Core defaults |
| 65 | WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \ |
| 66 | installed-vs-shipped ldflags pn-overrides rpaths staticdev \ |
| 67 | useless-rpaths" |
Patrick Williams | 12fc939 | 2021-08-06 09:16:53 -0500 | [diff] [blame] | 68 | WARN_QA:remove = "${WARN_TO_ERROR_QA}" |
| 69 | ERROR_QA:append = " ${WARN_TO_ERROR_QA}" |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 70 | |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 71 | require conf/distro/include/no-static-libs.inc |
Patrick Williams | 5e3ca93 | 2020-01-18 14:14:31 -0600 | [diff] [blame] | 72 | require conf/distro/include/yocto-uninative.inc |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 73 | |
Joel Stanley | 70d6c5e | 2022-05-02 11:59:53 +0930 | [diff] [blame] | 74 | DISTRO_NAME ?= "Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro)" |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 75 | TARGET_VENDOR="-openbmc" |
| 76 | |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 77 | VIRTUAL-RUNTIME_keymaps = "" |
| 78 | |
| 79 | # Phosphor OpenBMC uses systemd and udev |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 80 | VIRTUAL-RUNTIME_init_manager = "systemd" |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 81 | VIRTUAL-RUNTIME_initscripts = "" |
| 82 | |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 83 | DISTRO_FEATURES_BACKFILL_CONSIDERED = " \ |
| 84 | bluez5 \ |
| 85 | ldconfig \ |
| 86 | gobject-introspection-data \ |
| 87 | pulseaudio \ |
| 88 | sysvinit \ |
| 89 | " |
| 90 | |
| 91 | DISTRO_FEATURES_OBMC = " \ |
| 92 | obmc-host-ctl \ |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 93 | obmc-host-ipmi \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 94 | obmc-phosphor-chassis-mgmt \ |
| 95 | obmc-phosphor-fan-mgmt \ |
| 96 | obmc-phosphor-flash-mgmt \ |
Patrick Williams | 5a5f33c | 2021-11-03 10:35:37 -0500 | [diff] [blame] | 97 | obmc-phosphor-system-mgmt \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 98 | " |
| 99 | |
| 100 | DISTRO_FEATURES_DEFAULT = " \ |
| 101 | avahi \ |
Patrick Williams | 8f58bba | 2020-05-13 10:51:49 -0500 | [diff] [blame] | 102 | ipv4 \ |
| 103 | ipv6 \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 104 | pam \ |
Patrick Williams | ada9e0f | 2021-08-24 08:12:58 -0500 | [diff] [blame] | 105 | security \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 106 | slp \ |
| 107 | systemd \ |
Andrew Geissler | 0540afd | 2021-08-30 20:37:00 -0500 | [diff] [blame] | 108 | seccomp \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 109 | " |
| 110 | |
Andrew Geissler | fdcb2d9 | 2019-10-18 11:04:05 -0500 | [diff] [blame] | 111 | DISTRO_FEATURES += " \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 112 | ${DISTRO_FEATURES_DEFAULT} \ |
Brad Bishop | d383934 | 2018-03-09 21:48:12 -0500 | [diff] [blame] | 113 | ${DISTRO_FEATURES_OBMC} \ |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 114 | " |
| 115 | |
Patrick Williams | 12fc939 | 2021-08-06 09:16:53 -0500 | [diff] [blame] | 116 | DISTRO_EXTRA_RDEPENDS:remove:qemuarm = "packagegroup-core-device-devel" |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 117 | |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 118 | include conf/distro/include/openbmc-phosphor/${MACHINE}.inc |
| 119 | |
Patrick Williams | 12fc939 | 2021-08-06 09:16:53 -0500 | [diff] [blame] | 120 | IMAGE_CLASSES:append = " image_types_phosphor phosphor-rootfs-postcommands" |
| 121 | IMAGE_CLASSES:append:npcm7xx = " image_types_phosphor_nuvoton" |
Tim Lee | dd14a91 | 2022-07-29 16:42:15 +0800 | [diff] [blame] | 122 | IMAGE_CLASSES:append:npcm8xx = " image_types_phosphor_nuvoton_npcm8xx" |
Brad Bishop | 7a83a12 | 2018-03-08 22:17:47 -0500 | [diff] [blame] | 123 | |
Patrick Williams | 12fc939 | 2021-08-06 09:16:53 -0500 | [diff] [blame] | 124 | IMAGE_INSTALL:append = " dbus-broker libnss-systemd" |
William A. Kennington III | d73b9cd | 2019-09-16 17:49:53 -0700 | [diff] [blame] | 125 | |
Brad Bishop | 0c52342 | 2018-06-25 16:53:45 -0400 | [diff] [blame] | 126 | # Skip the udev database by default. It adds around 2MB |
| 127 | # compressed to the root filesystem, and probably doesn't |
| 128 | # make sense on a BMC anyway. |
William A. Kennington III | 79e4934 | 2019-09-16 17:50:53 -0700 | [diff] [blame] | 129 | BAD_RECOMMENDATIONS += "udev-hwdb" |
| 130 | BAD_RECOMMENDATIONS += "shared-mime-info" |
David Cobbley | 2a5e571 | 2018-06-29 13:27:44 -0700 | [diff] [blame] | 131 | |
William A. Kennington III | 97f0526 | 2021-12-20 02:06:07 -0800 | [diff] [blame] | 132 | # e2fsprogs isn't needed on a BMC without MMC, where it gets explicitly added |
| 133 | BAD_RECOMMENDATIONS += "e2fsprogs-e2fsck" |
| 134 | |
Dave Cobbley | 0639c5b | 2018-08-24 11:31:04 -0700 | [diff] [blame] | 135 | LAYER_CONF_VERSION ?= "8" |
Lei YU | b5a2c26 | 2019-05-15 19:52:10 -0400 | [diff] [blame] | 136 | |
Patrick Williams | 12fc939 | 2021-08-06 09:16:53 -0500 | [diff] [blame] | 137 | KERNEL_CLASSES:append = " obmc-phosphor-kernel-version" |
Patrick Williams | 891b144 | 2020-06-12 06:04:25 -0500 | [diff] [blame] | 138 | |
| 139 | # Some packages have directory trees of YAML files arranged based on |
Patrick Williams | 0ea73d3 | 2023-01-12 11:37:14 -0600 | [diff] [blame] | 140 | # canonical organization names. 'org/freedesktop' and 'xyz/openbmc_project' |
| 141 | # should be used everywhere in phosphor, but some layers may append this with |
| 142 | # their own organization(s). |
| 143 | OBMC_ORG_YAML_SUBDIRS += " org/freedesktop xyz/openbmc_project" |
Patrick Williams | c864340 | 2023-03-16 17:05:37 -0500 | [diff] [blame] | 144 | |
| 145 | PREFERRED_VERSION_libgpiod = "1.6.4" |