blob: a0c14fffe5d2003873b5895a5111ef9fa7197863 [file] [log] [blame]
Brad Bishop1a757e02020-08-10 18:13:26 -04001DESCRIPTION = "Image with Phosphor, a software stack for hardware management \
2in devices with baseboard management controllers. The image supports the \
3full OpenBMC feature set for devices of all types."
Brad Bishop93fb5352015-09-09 03:59:20 +00004
Brad Bishopc2207ad2018-12-05 07:03:22 -05005IMAGE_LINGUAS = ""
6
Brad Bishop758f9692020-08-10 19:18:57 -04007IMAGE_FEATURES += " \
8 obmc-bmc-state-mgmt \
9 obmc-chassis-mgmt \
10 obmc-chassis-state-mgmt \
11 obmc-fan-control \
12 obmc-fan-mgmt \
13 obmc-flash-mgmt \
14 obmc-host-ctl \
15 obmc-host-ipmi \
16 obmc-host-state-mgmt \
17 obmc-inventory \
18 obmc-leds \
19 obmc-logging-mgmt \
20 obmc-remote-logging-mgmt \
21 obmc-net-ipmi \
22 obmc-sensors \
23 obmc-software \
24 obmc-system-mgmt \
25 obmc-user-mgmt \
Brad Bishop36aaf572020-08-10 19:26:43 -040026 ${@bb.utils.contains('DISTRO_FEATURES', 'obmc-ubi-fs', 'read-only-rootfs', '', d)} \
27 ${@bb.utils.contains('DISTRO_FEATURES', 'phosphor-mmc', 'read-only-rootfs', '', d)} \
Brad Bishop758f9692020-08-10 19:18:57 -040028 ssh-server-dropbear \
29 obmc-debug-collector \
30 obmc-network-mgmt \
31 obmc-settings-mgmt \
32 "
Brad Bishop758f9692020-08-10 19:18:57 -040033
Brad Bishop92cadf32020-08-10 20:02:38 -040034LICENSE = "Apache-2.0"
35
Brad Bishop93fb5352015-09-09 03:59:20 +000036inherit obmc-phosphor-image
Brad Bishop1e92fef2020-08-10 19:58:36 -040037
38# The /etc/version file is misleading and not useful. Remove it.
39# Users should instead rely on /etc/os-release.
40ROOTFS_POSTPROCESS_COMMAND += "remove_etc_version ; "
41
42# Disable the pager to prevent systemd injecting control characters into the
43# output stream that are not interpreted by busybox tools.
44ROOTFS_POSTPROCESS_COMMAND += "disable_systemd_pager ; "
45
46# The shadow recipe provides the binaries(like useradd, usermod) needed by the
47# phosphor-user-manager.
48ROOTFS_RO_UNNEEDED_remove = "shadow"