From: Robert Yang <liezhi.yang@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: [PATCH 00/16 V2] meta: various fixes
Date: Wed, 30 May 2018 17:03:47 +0800 [thread overview]
Message-ID: <cover.1527670923.git.liezhi.yang@windriver.com> (raw)
* V2:
Rebase to up-to-date master branch and drop already merged patches.
* V1:
Initial version
// Robert
The following changes since commit 760103cdaed3e820888d8984ec0b76cfc831d534:
nativesdk-rpm: Add wrappers for nativesdk support (2018-05-29 21:06:03 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/fix_from_wr
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=rbt/fix_from_wr
Catalin Enache (1):
init-install: add timeout for legacy grub
Chen Qi (1):
populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES
Jackie Huang (3):
rootfs-postcommands: split ssh_allow_empty_password
dropbear: add default config file to disable root login
glibc: re-package for libnss-db
Jian Liu (1):
lsof: fix LSOF_CCV in version.h
Kai Kang (1):
toolchain-scripts.bbclass: do not extend dependency if extended
already
Li Wang (1):
rpcbind: add option to make user able to use fixed port number
Mark Hatle (1):
base.bbclass: Add buildcfg multilib values
Ovidiu Panait (1):
openssl-nativesdk: Fix "can't open config file" warning
Robert Yang (3):
runqemu-extract-sdk: allow install debugfs on rootfs
oe/copy_buildsystem.py: add SDK_LAYERS_EXCLUDE_PATTERN
site/powerpc64-linux: add cvs_cv_func_printf_ptr
Shan Hai (1):
xinetd: add Init Script Actions to xinetd script
Yadi.hu (1):
busybox: handle syslog
Yuanjie Huang (1):
gcc-sanitizers: Fix libtool .la files
meta/classes/base.bbclass | 13 ++-
meta/classes/image.bbclass | 2 +-
meta/classes/populate_sdk_ext.bbclass | 6 +
meta/classes/rootfs-postcommands.bbclass | 25 +++-
meta/classes/toolchain-scripts.bbclass | 13 ++-
meta/conf/bitbake.conf | 2 +-
meta/lib/oe/copy_buildsystem.py | 18 +++
.../openssl/openssl/environment.d-openssl.sh | 1 +
meta/recipes-connectivity/openssl/openssl10.inc | 7 ++
.../recipes-connectivity/openssl/openssl_1.0.2o.bb | 5 +
.../recipes-connectivity/openssl/openssl_1.1.0h.bb | 11 ++
meta/recipes-core/busybox/busybox.inc | 14 ++-
meta/recipes-core/dropbear/dropbear.inc | 3 +
.../dropbear/dropbear/dropbear.default | 2 +
meta/recipes-core/glibc/glibc-package.inc | 5 +-
.../initrdscripts/files/init-install.sh | 2 +
meta/recipes-devtools/gcc/gcc-sanitizers.inc | 2 +
.../files/Configure-fix-LSOF_CCV-assignment.patch | 31 +++++
meta/recipes-extended/lsof/lsof_4.89.bb | 4 +-
.../rpcbind_add_option_to_fix_port_number.patch | 130 +++++++++++++++++++++
meta/recipes-extended/rpcbind/rpcbind_0.2.4.bb | 1 +
meta/recipes-extended/xinetd/xinetd/xinetd.init | 12 +-
meta/site/powerpc64-linux | 2 +
scripts/runqemu-extract-sdk | 4 +-
24 files changed, 298 insertions(+), 17 deletions(-)
create mode 100644 meta/recipes-connectivity/openssl/openssl/environment.d-openssl.sh
create mode 100644 meta/recipes-core/dropbear/dropbear/dropbear.default
create mode 100644 meta/recipes-extended/lsof/files/Configure-fix-LSOF_CCV-assignment.patch
create mode 100644 meta/recipes-extended/rpcbind/rpcbind/rpcbind_add_option_to_fix_port_number.patch
--
2.7.4
next reply other threads:[~2018-05-30 8:54 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-30 9:03 Robert Yang [this message]
2018-05-30 9:03 ` [PATCH 01/16] base.bbclass: Add buildcfg multilib values Robert Yang
2018-05-30 9:03 ` [PATCH 02/16] runqemu-extract-sdk: allow install debugfs on rootfs Robert Yang
2018-05-30 9:03 ` [PATCH 03/16] lsof: fix LSOF_CCV in version.h Robert Yang
2018-06-03 15:52 ` Richard Purdie
2018-06-04 2:28 ` Robert Yang
2018-05-30 9:03 ` [PATCH 04/16] busybox: handle syslog Robert Yang
2018-05-30 9:03 ` [PATCH 05/16] xinetd: add Init Script Actions to xinetd script Robert Yang
2018-06-03 15:59 ` Richard Purdie
2018-06-04 2:30 ` Robert Yang
2018-06-04 7:37 ` Richard Purdie
2018-06-04 8:12 ` Robert Yang
2018-05-30 9:03 ` [PATCH 06/16] gcc-sanitizers: Fix libtool .la files Robert Yang
2018-06-03 16:01 ` Richard Purdie
2018-06-04 3:24 ` Robert Yang
2018-05-30 9:03 ` [PATCH 07/16] oe/copy_buildsystem.py: add SDK_LAYERS_EXCLUDE_PATTERN Robert Yang
2018-05-30 9:03 ` [PATCH 08/16] site/powerpc64-linux: add cvs_cv_func_printf_ptr Robert Yang
2018-05-30 9:03 ` [PATCH 09/16] rootfs-postcommands: split ssh_allow_empty_password Robert Yang
2018-05-30 9:03 ` [PATCH 10/16] dropbear: add default config file to disable root login Robert Yang
2018-06-03 22:41 ` Richard Purdie
2018-06-04 9:26 ` Robert Yang
2018-05-30 9:03 ` [PATCH 11/16] toolchain-scripts.bbclass: do not extend dependency if extended already Robert Yang
2018-05-30 9:03 ` [PATCH 12/16] populate_sdk_ext.bbclass: add ESDK_MANIFEST_EXCLUDES Robert Yang
2018-05-30 9:04 ` [PATCH 13/16] init-install: add timeout for legacy grub Robert Yang
2018-05-30 9:04 ` [PATCH 14/16] glibc: re-package for libnss-db Robert Yang
2018-05-30 9:04 ` [PATCH 15/16] rpcbind: add option to make user able to use fixed port number Robert Yang
2018-05-30 9:04 ` [PATCH 16/16] openssl-nativesdk: Fix "can't open config file" warning Robert Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1527670923.git.liezhi.yang@windriver.com \
--to=liezhi.yang@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.