This reverts commit ee364575803812dbbb2b103d468c66c54efcc7af. The intention of the patch is to remove the confusion commit(mismatched title and change).
Signed-off-by: Zhenhua Luo <[email protected]> --- images/fsl-image-lsb-sdk.bb | 18 ++++++++++++++++++ images/fsl-image-minimal.bb | 16 ++++++++++++++++ images/fsl-toolchain-bare.bb | 8 ++++++++ images/fsl-toolchain.bb | 19 +++++++++++++++++++ 4 files changed, 61 insertions(+) create mode 100644 images/fsl-image-lsb-sdk.bb create mode 100644 images/fsl-image-minimal.bb create mode 100644 images/fsl-toolchain-bare.bb create mode 100644 images/fsl-toolchain.bb diff --git a/images/fsl-image-lsb-sdk.bb b/images/fsl-image-lsb-sdk.bb new file mode 100644 index 0000000..1ba38d3 --- /dev/null +++ b/images/fsl-image-lsb-sdk.bb @@ -0,0 +1,18 @@ +IMAGE_FEATURES += "tools-sdk dev-pkgs ssh-server-openssh" +EXTRA_IMAGE_FEATURES = "tools-debug tools-profile tools-testapps debug-tweaks" + +IMAGE_INSTALL = "\ + ${CORE_IMAGE_BASE_INSTALL} \ + packagegroup-core-basic \ + packagegroup-core-lsb \ + git \ + dtc \ + flex \ + bison \ + ccache \ + u-boot \ + " + +inherit core-image + +IMAGE_FSTYPES = "tar.gz" diff --git a/images/fsl-image-minimal.bb b/images/fsl-image-minimal.bb new file mode 100644 index 0000000..1732585 --- /dev/null +++ b/images/fsl-image-minimal.bb @@ -0,0 +1,16 @@ +# +# Copyright (C) 2007 OpenedHand Ltd. +# +IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} u-boot" +IMAGE_LINGUAS = " " + +LICENSE = "MIT" + +inherit core-image + +IMAGE_ROOTFS_SIZE = "8192" + +# remove not needed ipkg informations +ROOTFS_POSTPROCESS_COMMAND += "remove_packaging_data_files ; " + +IMAGE_FSTYPES = "tar.gz ext2.gz.u-boot jffs2" diff --git a/images/fsl-toolchain-bare.bb b/images/fsl-toolchain-bare.bb new file mode 100644 index 0000000..74a3c4a --- /dev/null +++ b/images/fsl-toolchain-bare.bb @@ -0,0 +1,8 @@ +PR = "r3" + +require recipes-core/meta/meta-toolchain.bb + +TOOLCHAIN_OUTPUTNAME = "${SDK_NAME}-toolchain-bare-${DISTRO_VERSION}" +TOOLCHAIN_TARGET_TASK = "packagegroup-core-standalone-sdk-target" +TOOLCHAIN_HOST_TASK = "packagegroup-cross-canadian-${TRANSLATED_TARGET_ARCH}" +TOOLCHAIN_NEED_CONFIGSITE_CACHE += "zlib" diff --git a/images/fsl-toolchain.bb b/images/fsl-toolchain.bb new file mode 100644 index 0000000..696681c --- /dev/null +++ b/images/fsl-toolchain.bb @@ -0,0 +1,19 @@ +PR = "r2" + +require fsl-toolchain-bare.bb + +TOOLCHAIN_OUTPUTNAME = "${SDK_NAME}-toolchain-${DISTRO_VERSION}" +TOOLCHAIN_TARGET_TASK += " \ + glib-2.0 \ + glib-2.0-dev \ + dtc \ + libgomp \ + libgomp-dev \ + libgomp-staticdev \ + libstdc++-staticdev \ + ${TCLIBC}-staticdev \ + " + +TOOLCHAIN_HOST_TASK += " \ + nativesdk-dtc \ + " -- 1.7.9.5 _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
