22 lines
680 B
Plaintext
22 lines
680 B
Plaintext
# IMAGE_FSTYPES must appear before image.bbclass
|
|
# is inherited otherwise image.bbclass will inherit
|
|
# "live" image fstypes that we don't want.
|
|
IMAGE_FSTYPES = "tar.xz"
|
|
|
|
inherit image
|
|
|
|
LICENSE = "Apache-2.0"
|
|
|
|
IMAGE_INSTALL:append = " busybox packagegroup-obmc-phosphor-debugtools perf "
|
|
|
|
# Override from image_types.bbclass to restrict tarball to /usr tree.
|
|
IMAGE_CMD:tar = "${IMAGE_CMD_TAR} -cvf ${IMGDEPLOYDIR}/${IMAGE_NAME}.tar -C ${IMAGE_ROOTFS}/usr ."
|
|
|
|
# Remove packages installed by 'extrausers'.
|
|
IMAGE_INSTALL:remove = "base-passwd shadow"
|
|
EXTRA_USERS_PARAMS = ""
|
|
|
|
# Remove extra packages defaulted by image.bbclass.
|
|
PACKAGE_INSTALL = "${IMAGE_INSTALL}"
|
|
IMAGE_LINGUAS = ""
|