mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 12:59:04 +02:00

The meta-fsl-arm is going to be used as the base for this layer. It contains a clean history and allowing a more granullar set of changes. This commit is just a rename of all contents of meta-fsl-arm subdirectory to this layer's root, subsequent changes are based on top of that. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
41 lines
924 B
Plaintext
41 lines
924 B
Plaintext
# Generates a Manufacturing Tool Initramfs image
|
|
#
|
|
# This generates the initramfs used for the installation process. The
|
|
# image provides the utilities which are used, in the target, during
|
|
# the process and receive the commands from the MfgTool application.
|
|
#
|
|
# Copyright 2014 (C) O.S. Systems Software LTDA.
|
|
|
|
DEPENDS += "u-boot-mfgtool linux-mfgtool"
|
|
|
|
FEATURE_PACKAGES_mtd = "packagegroup-fsl-mfgtool-mtd"
|
|
FEATURE_PACKAGES_extfs = "packagegroup-fsl-mfgtool-extfs"
|
|
|
|
IMAGE_FSTYPES = "cpio.gz.u-boot"
|
|
IMAGE_ROOTFS_SIZE ?= "8192"
|
|
IMAGE_CLASSES = "image_types_uboot"
|
|
|
|
# Filesystems enabled by default
|
|
DEFAULT_FS_SUPPORT = " \
|
|
mtd \
|
|
extfs \
|
|
"
|
|
|
|
IMAGE_FEATURES = " \
|
|
${DEFAULT_FS_SUPPORT} \
|
|
\
|
|
read-only-rootfs \
|
|
"
|
|
|
|
# Avoid installation of syslog
|
|
BAD_RECOMMENDATIONS += "busybox-syslog"
|
|
|
|
# Avoid static /dev
|
|
USE_DEVFS = "1"
|
|
|
|
inherit core-image
|
|
|
|
CORE_IMAGE_BASE_INSTALL = " \
|
|
${CORE_IMAGE_EXTRA_INSTALL} \
|
|
"
|