From 2faf1c8292ef9e12524f4aed4578d85dbb387269 Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Tue, 28 May 2013 09:43:45 +0200 Subject: [PATCH] meta-digi-del: Add sdk image targets for development. These images contain debug tools as the tcf-agent which are required to perform SDK operations like run and debug. https://jira.digi.com/browse/DEL-488 Signed-off-by: Alex Gonzalez --- .../recipes-core/images/dbl-image-base-sdk.bb | 15 +++++++++++++++ .../images/del-image-graphical-sdk.bb | 15 +++++++++++++++ .../recipes-core/images/del-image-minimal-sdk.bb | 15 +++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 meta-digi-dbl/recipes-core/images/dbl-image-base-sdk.bb create mode 100644 meta-digi-del/recipes-core/images/del-image-graphical-sdk.bb create mode 100644 meta-digi-del/recipes-core/images/del-image-minimal-sdk.bb diff --git a/meta-digi-dbl/recipes-core/images/dbl-image-base-sdk.bb b/meta-digi-dbl/recipes-core/images/dbl-image-base-sdk.bb new file mode 100644 index 000000000..575ec2c29 --- /dev/null +++ b/meta-digi-dbl/recipes-core/images/dbl-image-base-sdk.bb @@ -0,0 +1,15 @@ +# +# Copyright (C) 2013 Digi International. +# + +require dbl-image-base.bb + +DESCRIPTION = "Image that includes everything within dbl-image-base plus meta-toolchain, \ +development headers and libraries to form a standalone SDK." + +# Dropbear clashes with openssh which is included by tools-debug. +IMAGE_FEATURES := "${@oe_filter_out('ssh-server-dropbear', bb.data.getVar('IMAGE_FEATURES', d, 1), d)}" +IMAGE_FEATURES += "dev-pkgs tools-sdk\ + tools-debug debug-tweaks" + +IMAGE_INSTALL += "kernel-dev" diff --git a/meta-digi-del/recipes-core/images/del-image-graphical-sdk.bb b/meta-digi-del/recipes-core/images/del-image-graphical-sdk.bb new file mode 100644 index 000000000..5e528eebb --- /dev/null +++ b/meta-digi-del/recipes-core/images/del-image-graphical-sdk.bb @@ -0,0 +1,15 @@ +# +# Copyright (C) 2013 Digi International. +# + +require del-image-graphical.bb + +DESCRIPTION = "Image that includes everything within del-image-grahical plus meta-toolchain, \ +development headers and libraries to form a standalone SDK." + +# Dropbear clashes with openssh which is included by tools-debug. +IMAGE_FEATURES := "${@oe_filter_out('ssh-server-dropbear', bb.data.getVar('IMAGE_FEATURES', d, 1), d)}" +IMAGE_FEATURES += "dev-pkgs tools-sdk\ + tools-debug tools-profile tools-testapps debug-tweaks" + +IMAGE_INSTALL += "kernel-dev" diff --git a/meta-digi-del/recipes-core/images/del-image-minimal-sdk.bb b/meta-digi-del/recipes-core/images/del-image-minimal-sdk.bb new file mode 100644 index 000000000..e82b49360 --- /dev/null +++ b/meta-digi-del/recipes-core/images/del-image-minimal-sdk.bb @@ -0,0 +1,15 @@ +# +# Copyright (C) 2013 Digi International. +# + +require del-image-minimal.bb + +DESCRIPTION = "Image that includes everything within del-image-minimal plus meta-toolchain, \ +development headers and libraries to form a standalone SDK." + +# Dropbear clashes with openssh which is included by tools-debug. +IMAGE_FEATURES := "${@oe_filter_out('ssh-server-dropbear', bb.data.getVar('IMAGE_FEATURES', d, 1), d)}" +IMAGE_FEATURES += "dev-pkgs tools-sdk\ + tools-debug debug-tweaks" + +IMAGE_INSTALL += "kernel-dev"