Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/11] busybox fixes and cleanups + update to 1.24
@ 2015-10-15  1:43 Andre McCurdy
  2015-10-15  1:43 ` [PATCH 01/11] busybox_git: Enable getopt applet Andre McCurdy
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Andre McCurdy @ 2015-10-15  1:43 UTC (permalink / raw)
  To: openembedded-core

In anticipation of master re-opening for commits, here's a re-send
of the previous busybox fixes and cleanups patches, plus new patches
to update to 1.24.

Andre McCurdy (11):
  busybox_git: Enable getopt applet
  busybox.inc: don't export EXTRA_OEMAKE
  busybox: move common EXTRA_OEMAKE options into busybox.inc
  busybox.inc: explicitly include CC=${CC} on make command line
  busybox.inc: don't set .config CROSS_COMPILER_PREFIX
  busybox.inc: fix CONFIG_EXTRA_CFLAGS configmangle
  busybox.inc: remove MAKEFLAGS over-ride from EXTRA_OEMAKE
  busybox: move common do_install_ptest() into busybox.inc
  busybox: re-order defconfig to align with busybox 1.24.0
  busybox: update 1.23.2 -> 1.24.0 (and git recipe to latest trunk)
  busybox: disable support for mounting NFS file systems on Linux < 2.6.23

 meta/recipes-core/busybox/busybox.inc              |  20 +-
 .../busybox/0001-Switch-to-POSIX-utmpx-API.patch   | 388 ---------------------
 .../busybox/busybox/0001-chown-fix-help-text.patch |  34 --
 ...ix-double-free-fatal-error-in-INET_sprint.patch |  67 ----
 meta/recipes-core/busybox/busybox/defconfig        |  63 ++--
 meta/recipes-core/busybox/busybox_1.23.2.bb        |  53 ---
 meta/recipes-core/busybox/busybox_1.24.0.bb        |  42 +++
 meta/recipes-core/busybox/busybox_git.bb           |  17 +-
 8 files changed, 101 insertions(+), 583 deletions(-)
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-Switch-to-POSIX-utmpx-API.patch
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-chown-fix-help-text.patch
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-ifconfig-fix-double-free-fatal-error-in-INET_sprint.patch
 delete mode 100644 meta/recipes-core/busybox/busybox_1.23.2.bb
 create mode 100644 meta/recipes-core/busybox/busybox_1.24.0.bb

-- 
1.9.1



^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 00/11] busybox fixes and cleanups + update 1.23.2 -> 1.24.1
@ 2015-11-06  8:47 Andre McCurdy
  2015-11-06  8:47 ` [PATCH 04/11] busybox.inc: explicitly include CC=${CC} on make command line Andre McCurdy
  0 siblings, 1 reply; 13+ messages in thread
From: Andre McCurdy @ 2015-11-06  8:47 UTC (permalink / raw)
  To: openembedded-core

Andre McCurdy (11):
  busybox_git: Enable getopt applet
  busybox.inc: don't export EXTRA_OEMAKE
  busybox: move EXTRA_OEMAKE etc into busybox.inc
  busybox.inc: explicitly include CC=${CC} on make command line
  busybox.inc: don't set .config CROSS_COMPILER_PREFIX
  busybox.inc: fix CONFIG_EXTRA_CFLAGS configmangle
  busybox.inc: remove MAKEFLAGS over-ride from EXTRA_OEMAKE
  busybox: re-order defconfig to align with busybox 1.24.1
  busybox: update 1.23.2 -> 1.24.1
  busybox: disable support for mounting NFS file systems on Linux < 2.6.23
  busybox: enable resize applet

 meta/recipes-core/busybox/busybox.inc              |  20 +-
 .../busybox/0001-Switch-to-POSIX-utmpx-API.patch   | 388 ---------------------
 .../busybox/busybox/0001-chown-fix-help-text.patch |  34 --
 ...ix-double-free-fatal-error-in-INET_sprint.patch |  67 ----
 meta/recipes-core/busybox/busybox/defconfig        |  63 ++--
 meta/recipes-core/busybox/busybox/resize.cfg       |   2 +
 meta/recipes-core/busybox/busybox_1.23.2.bb        |  53 ---
 meta/recipes-core/busybox/busybox_1.24.1.bb        |  43 +++
 meta/recipes-core/busybox/busybox_git.bb           |  18 +-
 9 files changed, 105 insertions(+), 583 deletions(-)
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-Switch-to-POSIX-utmpx-API.patch
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-chown-fix-help-text.patch
 delete mode 100644 meta/recipes-core/busybox/busybox/0001-ifconfig-fix-double-free-fatal-error-in-INET_sprint.patch
 create mode 100644 meta/recipes-core/busybox/busybox/resize.cfg
 delete mode 100644 meta/recipes-core/busybox/busybox_1.23.2.bb
 create mode 100644 meta/recipes-core/busybox/busybox_1.24.1.bb

-- 
1.9.1



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2015-11-06  8:47 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-15  1:43 [PATCH 00/11] busybox fixes and cleanups + update to 1.24 Andre McCurdy
2015-10-15  1:43 ` [PATCH 01/11] busybox_git: Enable getopt applet Andre McCurdy
2015-10-15  1:43 ` [PATCH 02/11] busybox.inc: don't export EXTRA_OEMAKE Andre McCurdy
2015-10-15  1:43 ` [PATCH 03/11] busybox: move common EXTRA_OEMAKE options into busybox.inc Andre McCurdy
2015-10-15  1:43 ` [PATCH 04/11] busybox.inc: explicitly include CC=${CC} on make command line Andre McCurdy
2015-10-15  1:43 ` [PATCH 05/11] busybox.inc: don't set .config CROSS_COMPILER_PREFIX Andre McCurdy
2015-10-15  1:43 ` [PATCH 06/11] busybox.inc: fix CONFIG_EXTRA_CFLAGS configmangle Andre McCurdy
2015-10-15  1:43 ` [PATCH 07/11] busybox.inc: remove MAKEFLAGS over-ride from EXTRA_OEMAKE Andre McCurdy
2015-10-15  1:43 ` [PATCH 08/11] busybox: move common do_install_ptest() into busybox.inc Andre McCurdy
2015-10-15  1:43 ` [PATCH 09/11] busybox: re-order defconfig to align with busybox 1.24.0 Andre McCurdy
2015-10-15  1:43 ` [PATCH 10/11] busybox: update 1.23.2 -> 1.24.0 (and git recipe to latest trunk) Andre McCurdy
2015-10-15  1:43 ` [PATCH 11/11] busybox: disable support for mounting NFS file systems on Linux < 2.6.23 Andre McCurdy
  -- strict thread matches above, loose matches on Subject: below --
2015-11-06  8:47 [PATCH 00/11] busybox fixes and cleanups + update 1.23.2 -> 1.24.1 Andre McCurdy
2015-11-06  8:47 ` [PATCH 04/11] busybox.inc: explicitly include CC=${CC} on make command line Andre McCurdy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox