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 <alex.gonzalez@digi.com>
This commit is contained in:
parent
b41c69e3b5
commit
2faf1c8292
|
|
@ -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"
|
||||||
|
|
@ -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"
|
||||||
|
|
@ -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"
|
||||||
Loading…
Reference in New Issue