From: Saul Wold <sgw@linux.intel.com>
To: openembedded-core@openembedded.org
Subject: [CONSOLIDATED PULL 00/17] Master Fixes & Self-Hosted Fixes
Date: Thu, 8 Dec 2011 00:44:00 -0800 [thread overview]
Message-ID: <cover.1323333676.git.sgw@linux.intel.com> (raw)
Richard,
This patch set has fixes for various issues along with a set of
fixes to address various problem found with the self-hosted image.
There is another patch sent to poky@yoctoproecjt.org to address having
grub installed by default.
Sau!
The following changes since commit 493746f1d7f1410284880203c1ac462d61ab5299:
matchbox-session-sato: respect VIRTUAL-RUNTIME_initscripts settings (2011-12-07 12:42:22 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/stage
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage
Andrea Adami (2):
image_types.bbclass: implement jffs2 summary images (sum.jffs2)
image_types.bbclass: disable cleanmarkers for jffs2 images
Eric Bénard (1):
rootfs_ipk: implement FEED_DEPLOYDIR_BASE_URI support
Martin Jansa (1):
sysstat: don't run populate-volatile.sh update in do_rootfs or
without populate-volatile.sh
Mei Lei (2):
dropbear: Upgrade from 0.53.1 to 2011.54
distro_tracking_fields.inc: Update dropbear,iproute2,net-tools
tracking information.
Otavio Salvador (1):
initramfs-framework: provides a modular initramfs
Paul Eggleton (2):
qt4: fix debug symbol stripping
qt4: various tidy-ups
Richard Purdie (2):
dpkg: Fix preinst execution
bitbake.conf/image.bbclass: Ensure images use the correct
passwd/group files
Saul Wold (6):
grub: Create /etc/grub.d
initrdscripts: add sleep to avoid kernel messages before install
message
self-hosted-image: remove extra space since we use additional disk
instead
wget: enable https and openssl
self-hosted: Add ext2 utilites and perl-pod for building
ncurses: libcurses.so should link to libncurses.so
meta/classes/image.bbclass | 2 +
meta/classes/image_types.bbclass | 7 +-
meta/classes/rootfs_ipk.bbclass | 13 ++-
meta/conf/bitbake.conf | 3 +-
.../conf/distro/include/distro_tracking_fields.inc | 19 ++--
meta/recipes-bsp/grub/grub_1.99.bb | 3 +-
.../configure.patch | 0
.../dropbear/dropbear/allow-nopw.patch | 55 +++------
meta/recipes-core/dropbear/dropbear_0.53.1.bb | 6 -
meta/recipes-core/dropbear/dropbear_2011.54.bb | 6 +
meta/recipes-core/images/self-hosted-image.bb | 4 +-
.../initrdscripts/files/init-install.sh | 3 +
.../initrdscripts/initramfs-framework/debug | 82 ++++++++++++
.../initrdscripts/initramfs-framework/e2fs | 28 ++++
.../initrdscripts/initramfs-framework/finish | 46 +++++++
.../initrdscripts/initramfs-framework/init | 136 ++++++++++++++++++++
.../initrdscripts/initramfs-framework/mdev | 30 +++++
.../initrdscripts/initramfs-framework/udev | 22 +++
.../initrdscripts/initramfs-framework_1.0.bb | 57 ++++++++
meta/recipes-core/ncurses/ncurses.inc | 6 +-
meta/recipes-core/tasks/task-self-hosted.bb | 5 +-
meta/recipes-devtools/dpkg/dpkg/preinst.patch | 46 +++++++
meta/recipes-devtools/dpkg/dpkg_1.15.8.7.bb | 5 +-
meta/recipes-extended/sysstat/sysstat.inc | 7 +-
meta/recipes-extended/sysstat/sysstat_10.0.3.bb | 2 +-
meta/recipes-extended/wget/wget.inc | 6 +-
.../qt4/files/add_nostrip_for_debug_packages.diff | 23 ++++
meta/recipes-qt/qt4/qt-4.7.4.inc | 4 +-
meta/recipes-qt/qt4/qt4-embedded.inc | 3 +-
meta/recipes-qt/qt4/qt4-embedded_4.7.4.bb | 2 +-
meta/recipes-qt/qt4/qt4-native.inc | 3 +-
meta/recipes-qt/qt4/qt4-native_4.7.4.bb | 2 -
meta/recipes-qt/qt4/qt4-x11-free.inc | 4 +-
meta/recipes-qt/qt4/qt4-x11-free_4.7.4.bb | 2 +-
meta/recipes-qt/qt4/qt4.inc | 6 +-
35 files changed, 565 insertions(+), 83 deletions(-)
rename meta/recipes-core/dropbear/{dropbear-0.53.1 => dropbear-2011.54}/configure.patch (100%)
delete mode 100644 meta/recipes-core/dropbear/dropbear_0.53.1.bb
create mode 100644 meta/recipes-core/dropbear/dropbear_2011.54.bb
create mode 100644 meta/recipes-core/initrdscripts/initramfs-framework/debug
create mode 100755 meta/recipes-core/initrdscripts/initramfs-framework/e2fs
create mode 100755 meta/recipes-core/initrdscripts/initramfs-framework/finish
create mode 100755 meta/recipes-core/initrdscripts/initramfs-framework/init
create mode 100644 meta/recipes-core/initrdscripts/initramfs-framework/mdev
create mode 100644 meta/recipes-core/initrdscripts/initramfs-framework/udev
create mode 100644 meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb
create mode 100644 meta/recipes-devtools/dpkg/dpkg/preinst.patch
create mode 100644 meta/recipes-qt/qt4/files/add_nostrip_for_debug_packages.diff
--
1.7.6.4
next reply other threads:[~2011-12-08 8:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-08 8:44 Saul Wold [this message]
2011-12-08 8:44 ` [CONSOLIDATED PULL 01/17] rootfs_ipk: implement FEED_DEPLOYDIR_BASE_URI support Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 02/17] image_types.bbclass: implement jffs2 summary images (sum.jffs2) Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 03/17] image_types.bbclass: disable cleanmarkers for jffs2 images Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 04/17] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 05/17] dpkg: Fix preinst execution Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 06/17] dropbear: Upgrade from 0.53.1 to 2011.54 Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 07/17] distro_tracking_fields.inc: Update dropbear, iproute2, net-tools tracking information Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 08/17] bitbake.conf/image.bbclass: Ensure images use the correct passwd/group files Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 09/17] qt4: fix debug symbol stripping Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 10/17] qt4: various tidy-ups Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 11/17] initramfs-framework: provides a modular initramfs Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 12/17] grub: Create /etc/grub.d Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 13/17] initrdscripts: add sleep to avoid kernel messages before install message Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 14/17] self-hosted-image: remove extra space since we use additional disk instead Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 15/17] wget: enable https and openssl Saul Wold
2011-12-09 20:21 ` Khem Raj
2011-12-19 4:12 ` Steve Sakoman
2011-12-19 4:34 ` Cui, Dexuan
2011-12-08 8:44 ` [CONSOLIDATED PULL 16/17] self-hosted: Add ext2 utilites and perl-pod for building Saul Wold
2011-12-08 8:44 ` [CONSOLIDATED PULL 17/17] ncurses: libcurses.so should link to libncurses.so Saul Wold
2011-12-08 11:33 ` Phil Blundell
2011-12-08 15:27 ` [CONSOLIDATED PULL 00/17] Master Fixes & Self-Hosted Fixes Richard Purdie
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.1323333676.git.sgw@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=openembedded-core@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox