| Submitter | Saul Wold |
|---|---|
| Date | Sept. 15, 2011, 3:14 a.m. |
| Message ID | <cover.1316056194.git.sgw@linux.intel.com> |
| Download | mbox |
| Permalink | /patch/11419/ |
| State | New, archived |
| Headers | show |
Pull-request
git://git.yoctoproject.org/poky-contrib sgw/stageComments
On Wed, 2011-09-14 at 20:14 -0700, Saul Wold wrote: > Richard, > > Please pull this first before pulling any other changes, so that > we can tag / branch this for RC2. > > These changes are all reviewed. There is a kernel update, deb packaging > fix, prelinker and distro tracking updates. > > I also included Paul's core-console change, Tom's Grub2 move and > the blacklisting of diginotar certs. > > This is what was built on the Autobuilder for RC2 with no failures in > the build. > > Thanks > Sau! > > > The following changes since commit 8df322abfd3fa8c460fd73c83c1ef0b5e419dc11: > > core-image-minimal: Add missing POKY_EXTRA_IMAGE variable (2011-09-14 01:27:08 +0100) > > are available in the git repository at: > git://git.yoctoproject.org/poky-contrib sgw/stage > http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/stage > > Bruce Ashfield (3): > linux-yocto: move common tasks to a common location > linux-yocto: split e100 and e1000 support > linux-yocto-rt: correct 3.0.3->3.0.4 mismerge for, stop_machine.c > > Dexuan Cui (1): > package_deb.bbclass, populate_sdk_deb.bbclass: fix > meta-toolchain-gmae build > > Dongxiao Xu (1): > distro_tracking: update package alias > > Eric Bénard (1): > qt4: add blacklist-diginotar-certs patch > > Mark Hatle (1): > Uprev to latest version of prelink_git, fixing TLS issues > > Paul Eggleton (1): > task-core: split into task-core-console and task-core-x11 > > Saul Wold (1): > task-core-sdk: change task-core -> task-core-console > > Tom Zanussi (2): > initramfs-live-install: add support for grub2 > grub2: new recipe > > Yu Ke (1): > distro_tracking_field: add distro checking field > > Zhai Edwin (1): > distro-tracking: Update alias Merged to master, thanks. Richard
Richard, Please pull this first before pulling any other changes, so that we can tag / branch this for RC2. These changes are all reviewed. There is a kernel update, deb packaging fix, prelinker and distro tracking updates. I also included Paul's core-console change, Tom's Grub2 move and the blacklisting of diginotar certs. This is what was built on the Autobuilder for RC2 with no failures in the build. Thanks Sau! The following changes since commit 8df322abfd3fa8c460fd73c83c1ef0b5e419dc11: core-image-minimal: Add missing POKY_EXTRA_IMAGE variable (2011-09-14 01:27:08 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib sgw/stage http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/stage Bruce Ashfield (3): linux-yocto: move common tasks to a common location linux-yocto: split e100 and e1000 support linux-yocto-rt: correct 3.0.3->3.0.4 mismerge for, stop_machine.c Dexuan Cui (1): package_deb.bbclass, populate_sdk_deb.bbclass: fix meta-toolchain-gmae build Dongxiao Xu (1): distro_tracking: update package alias Eric Bénard (1): qt4: add blacklist-diginotar-certs patch Mark Hatle (1): Uprev to latest version of prelink_git, fixing TLS issues Paul Eggleton (1): task-core: split into task-core-console and task-core-x11 Saul Wold (1): task-core-sdk: change task-core -> task-core-console Tom Zanussi (2): initramfs-live-install: add support for grub2 grub2: new recipe Yu Ke (1): distro_tracking_field: add distro checking field Zhai Edwin (1): distro-tracking: Update alias meta/classes/package_deb.bbclass | 10 +-- meta/classes/populate_sdk_deb.bbclass | 6 +- .../conf/distro/include/distro_tracking_fields.inc | 63 +++++++++++-- meta/conf/multilib.conf | 3 +- meta/recipes-bsp/grub/grub-1.99/40_custom | 9 ++ .../grub/grub-1.99/grub-install.in.patch | 20 ++++ meta/recipes-bsp/grub/grub_1.99.bb | 44 +++++++++ .../initrdscripts/files/init-install.sh | 31 +++++-- .../initrdscripts/initramfs-live-install_1.0.bb | 8 +- meta/recipes-core/tasks/task-core-console.bb | 28 ++++++ meta/recipes-core/tasks/task-core-sdk.bb | 2 +- meta/recipes-devtools/prelink/prelink_git.bb | 4 +- meta/recipes-kernel/linux/linux-yocto-rt_2.6.34.bb | 8 +-- meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb | 14 +-- meta/recipes-kernel/linux/linux-yocto.inc | 5 + meta/recipes-kernel/linux/linux-yocto_2.6.37.bb | 13 +--- meta/recipes-kernel/linux/linux-yocto_3.0.bb | 10 +-- .../qt4/files/blacklist-diginotar-certs.diff | 95 ++++++++++++++++++++ meta/recipes-qt/qt4/qt-4.7.3.inc | 1 + meta/recipes-qt/qt4/qt4-embedded.inc | 2 +- meta/recipes-qt/qt4/qt4-native.inc | 2 +- meta/recipes-qt/qt4/qt4-native_4.7.3.bb | 2 + meta/recipes-qt/qt4/qt4-tools-nativesdk.inc | 2 +- meta/recipes-qt/qt4/qt4-tools-nativesdk_4.7.3.bb | 2 + meta/recipes-qt/qt4/qt4-x11-free.inc | 2 +- .../tasks/{task-core.bb => task-core-x11.bb} | 17 +--- 26 files changed, 317 insertions(+), 86 deletions(-) create mode 100755 meta/recipes-bsp/grub/grub-1.99/40_custom create mode 100644 meta/recipes-bsp/grub/grub-1.99/grub-install.in.patch create mode 100644 meta/recipes-bsp/grub/grub_1.99.bb create mode 100644 meta/recipes-core/tasks/task-core-console.bb create mode 100644 meta/recipes-qt/qt4/files/blacklist-diginotar-certs.diff rename meta/recipes-sato/tasks/{task-core.bb => task-core-x11.bb} (79%)