* [PATCH 0/3] meta: Fix for ncurses minicom and archiver.bbclass
@ 2020-12-08 8:03 Robert Yang
2020-12-08 8:03 ` [PATCH 1/3] ncurses: Make ncurses-tools depend on ncurses-terminfo-base Robert Yang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Robert Yang @ 2020-12-08 8:03 UTC (permalink / raw)
To: openembedded-core
The following changes since commit e995e67bc7a3d30adf9f8d0d2f4df92a941baeae:
meta/lib/oeqa/manual/oe-core.json: Update test_bitbake_devshell (2020-12-06 23:16:50 +0000)
are available in the Git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/3fixes
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=rbt/3fixes
Robert Yang (3):
ncurses: Make ncurses-tools depend on ncurses-terminfo-base
minicom: RDEPENDS on ncurses-terminfo-base
archiver.bbclass: Fix --runall=deploy_archives for images
meta/classes/archiver.bbclass | 1 +
meta/recipes-core/ncurses/ncurses.inc | 2 +-
meta/recipes-extended/minicom/minicom_2.7.1.bb | 2 ++
3 files changed, 4 insertions(+), 1 deletion(-)
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/3] ncurses: Make ncurses-tools depend on ncurses-terminfo-base
2020-12-08 8:03 [PATCH 0/3] meta: Fix for ncurses minicom and archiver.bbclass Robert Yang
@ 2020-12-08 8:03 ` Robert Yang
2020-12-08 8:03 ` [PATCH 2/3] minicom: RDEPENDS " Robert Yang
2020-12-08 8:03 ` [PATCH 3/3] archiver.bbclass: Fix --runall=deploy_archives for images Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2020-12-08 8:03 UTC (permalink / raw)
To: openembedded-core
Fixed when ncurses-terminfo-base is not installed:
$ infocmp
infocmp: couldn't open terminfo file linux.
The required file is in ncurses-terminfo-base
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-core/ncurses/ncurses.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index 4b618896680..fe4e8a5d6e1 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -312,7 +312,7 @@ FILES_${PN}-tools = "\
"
# 'reset' is a symlink to 'tset' which is in the 'ncurses' package
-RDEPENDS_${PN}-tools = "${PN}"
+RDEPENDS_${PN}-tools = "${PN} ${PN}-terminfo-base"
FILES_${PN}-terminfo = "\
${datadir}/terminfo \
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/3] minicom: RDEPENDS on ncurses-terminfo-base
2020-12-08 8:03 [PATCH 0/3] meta: Fix for ncurses minicom and archiver.bbclass Robert Yang
2020-12-08 8:03 ` [PATCH 1/3] ncurses: Make ncurses-tools depend on ncurses-terminfo-base Robert Yang
@ 2020-12-08 8:03 ` Robert Yang
2020-12-08 8:03 ` [PATCH 3/3] archiver.bbclass: Fix --runall=deploy_archives for images Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2020-12-08 8:03 UTC (permalink / raw)
To: openembedded-core
Fixed when ncurses-terminfo-base is not installed:
$ minicom
No termcap database present!
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-extended/minicom/minicom_2.7.1.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-extended/minicom/minicom_2.7.1.bb b/meta/recipes-extended/minicom/minicom_2.7.1.bb
index c584b7589e2..12003ff49eb 100644
--- a/meta/recipes-extended/minicom/minicom_2.7.1.bb
+++ b/meta/recipes-extended/minicom/minicom_2.7.1.bb
@@ -29,3 +29,5 @@ do_install() {
}
RRECOMMENDS_${PN} += "lrzsz"
+
+RDEPENDS_${PN} += "ncurses-terminfo-base"
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/3] archiver.bbclass: Fix --runall=deploy_archives for images
2020-12-08 8:03 [PATCH 0/3] meta: Fix for ncurses minicom and archiver.bbclass Robert Yang
2020-12-08 8:03 ` [PATCH 1/3] ncurses: Make ncurses-tools depend on ncurses-terminfo-base Robert Yang
2020-12-08 8:03 ` [PATCH 2/3] minicom: RDEPENDS " Robert Yang
@ 2020-12-08 8:03 ` Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2020-12-08 8:03 UTC (permalink / raw)
To: openembedded-core
Fixed:
INHERIT += "archiver"
COPYLEFT_LICENSE_INCLUDE = "*"
$ bitbake core-image-minimal --runall=deploy_archives
[snip]
KeyError: '/path/to/meta/recipes-core/images/core-image-minimal.bb:do_ar_original'
[snip]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/classes/archiver.bbclass | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index 598298ef6f6..858507b3439 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -590,6 +590,7 @@ addtask do_dumpdata
addtask do_ar_recipe
addtask do_deploy_archives
do_build[recrdeptask] += "do_deploy_archives"
+do_rootfs[recrdeptask] += "do_deploy_archives"
do_populate_sdk[recrdeptask] += "do_deploy_archives"
python () {
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-12-08 8:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-08 8:03 [PATCH 0/3] meta: Fix for ncurses minicom and archiver.bbclass Robert Yang
2020-12-08 8:03 ` [PATCH 1/3] ncurses: Make ncurses-tools depend on ncurses-terminfo-base Robert Yang
2020-12-08 8:03 ` [PATCH 2/3] minicom: RDEPENDS " Robert Yang
2020-12-08 8:03 ` [PATCH 3/3] archiver.bbclass: Fix --runall=deploy_archives for images Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox