* [Buildroot] [PATCH 05/52] package/qemu: bump version
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355183112-10735-1-git-send-email-yann.morin.1998@free.fr>
Bump QEMU to 1.2.1.
Note: 1.3.0 is out now, but ./configure has changed a bit, and there are
new dependencies, so the bump to 1.3.0 is postponed for a litle while...
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
package/qemu/qemu.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 91d0eb8..241a392 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -4,7 +4,7 @@
#
#############################################################
-QEMU_VERSION = 1.2.0
+QEMU_VERSION = 1.2.1
QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
QEMU_SITE = http://wiki.qemu.org/download
QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [PATCH 04/52] package/qemu: use autotools-package infrastructure
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355183112-10735-1-git-send-email-yann.morin.1998@free.fr>
Turns out that, with a little bit of tweaking, we can use
the autotools-package infrastructure to build QEMU.
That's better than defining all the _CMDS and using the
generic-package infra.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
package/qemu/qemu.mk | 17 ++++-------------
1 files changed, 4 insertions(+), 13 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 2c0dbde..91d0eb8 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -62,6 +62,9 @@ ifeq ($(HOST_QEMU_ARCH),powerpc)
endif
HOST_QEMU_TARGETS=$(HOST_QEMU_ARCH)-linux-user
+# Note: although QEMU has a ./configure script, it is not a real autotools
+# package, and ./configure chokes on options such as --host or --target.
+# So, provide out own _CONFIGURE_CMDS to override the defaults.
define HOST_QEMU_CONFIGURE_CMDS
(cd $(@D); $(HOST_CONFIGURE_OPTS) ./configure \
--target-list="$(HOST_QEMU_TARGETS)" \
@@ -74,19 +77,7 @@ define HOST_QEMU_CONFIGURE_CMDS
)
endef
-define HOST_QEMU_BUILD_CMDS
- $(MAKE) -C $(@D) all
-endef
-
-define HOST_QEMU_INSTALL_CMDS
- $(MAKE) -C $(@D) install
-endef
-
-define HOST_QEMU_CLEAN_CMDS
- $(MAKE) -C $(@D) clean
-endef
-
-$(eval $(host-generic-package))
+$(eval $(host-autotools-package))
# variable used by other packages
QEMU_USER = $(HOST_DIR)/usr/bin/qemu-$(QEMU_ARCH)
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [PATCH 03/52] package/qemu: fix host dependencies
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355183112-10735-1-git-send-email-yann.morin.1998@free.fr>
'host-*' packages should depends on other 'host-*' packages,
not on target packages.
Reported-by: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
package/qemu/qemu.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 81cd79f..2c0dbde 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -16,7 +16,7 @@ QEMU_LICENSE_FILES = COPYING COPYING.LIB
#-------------------------------------------------------------
# Host-qemu
-HOST_QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
+HOST_QEMU_DEPENDENCIES = host-pkgconf host-zlib host-libglib2
# BR ARCH qemu
# ------- ----
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [PATCH 02/52] package/qemu: fix host-qemu variable names
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355183112-10735-1-git-send-email-yann.morin.1998@free.fr>
With the upcoming introduction of qemu-on-target, we need to properly
separate the variables used for the host qemu, from the variables
used for the target qemu.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
package/qemu/qemu.mk | 25 ++++++++++++++-----------
1 files changed, 14 insertions(+), 11 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 790d34f..81cd79f 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -13,7 +13,10 @@ QEMU_LICENSE_FILES = COPYING COPYING.LIB
# the non-(L)GPL license texts are specified in the affected
# individual source files.
-QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
+#-------------------------------------------------------------
+# Host-qemu
+
+HOST_QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
# BR ARCH qemu
# ------- ----
@@ -44,20 +47,20 @@ QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
# sh64 not supported
# sparc sparc
-QEMU_ARCH = $(ARCH)
-ifeq ($(QEMU_ARCH),i486)
- QEMU_ARCH = i386
+HOST_QEMU_ARCH = $(ARCH)
+ifeq ($(HOST_QEMU_ARCH),i486)
+ HOST_QEMU_ARCH = i386
endif
-ifeq ($(QEMU_ARCH),i586)
- QEMU_ARCH = i386
+ifeq ($(HOST_QEMU_ARCH),i586)
+ HOST_QEMU_ARCH = i386
endif
-ifeq ($(QEMU_ARCH),i686)
- QEMU_ARCH = i386
+ifeq ($(HOST_QEMU_ARCH),i686)
+ HOST_QEMU_ARCH = i386
endif
-ifeq ($(QEMU_ARCH),powerpc)
- QEMU_ARCH = ppc
+ifeq ($(HOST_QEMU_ARCH),powerpc)
+ HOST_QEMU_ARCH = ppc
endif
-HOST_QEMU_TARGETS=$(QEMU_ARCH)-linux-user
+HOST_QEMU_TARGETS=$(HOST_QEMU_ARCH)-linux-user
define HOST_QEMU_CONFIGURE_CMDS
(cd $(@D); $(HOST_CONFIGURE_OPTS) ./configure \
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [PATCH 01/52] package/qemu: add license information
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355183112-10735-1-git-send-email-yann.morin.1998@free.fr>
QEMU is such a snakes-nest of licenses... :-/
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Francois Perrad <fperrad@gmail.com>
---
package/qemu/qemu.mk | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index d40d7c9..790d34f 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -7,6 +7,11 @@
QEMU_VERSION = 1.2.0
QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
QEMU_SITE = http://wiki.qemu.org/download
+QEMU_LICENSE = GPLv2 LGPLv2.1 MIT BSD-3c BSD-2c Others/BSD-1c
+QEMU_LICENSE_FILES = COPYING COPYING.LIB
+#?NOTE: there is no top-level license file for non-(L)GPL licenses;
+# the non-(L)GPL license texts are specified in the affected
+# individual source files.
QEMU_DEPENDENCIES = host-pkgconf zlib libglib2
--
1.7.2.5
^ permalink raw reply related
* [Buildroot] [pull request] Pull request for branch yem-qemu v5
From: Yann E. MORIN @ 2012-12-10 23:44 UTC (permalink / raw)
To: buildroot
Hello!
This patch series adds qemu as a package to run on the target.
Although this may sound weird in a first place, I use it to build a
simple VM server.
I also use it to build statically-linked user-emulation to run foreign
chroots on my PC (eg. running an ARM chroot on my x86_64), because
using glibc for static-linking is not possible (it still requires some
shared libs that it dlopens at runtime).
In the future, I plan on adding libvirt to remotely manage the VM server.
Changes v4 -> v5:
- drop autoreconf where not needed (Thomas)
- explain autoreconf for slirp (Thomas)
- fix host-qemu incorrect dependencies on target packages (Arnout)
- fix vde2 description and URL (Arnout)
- add missing dependencies in some Config.in (with help from Peter)
- fix another SF URL
Changes v3 -> v4:
- drop applied cURL fix (Peter)
- fix some licenses infos (Thomas, Arnout)
- rename DTC's make goals (Arnout) [*]
- no longer autoreconf libiscsi (Thomas)
- use autotools-package infra for qemu
- drop bsd-user emulation, it does not build on Linux
- move DTC to the end of the series, in case it is still a problem.
[*] Not really using the names we discussed on the list, as Thomas said
on IRC: "do not over-engineer", or "YAGNI". When/if the make-package
infra is added, it will *then* be time to rename the variables, and
nothing can guarantee that the names we choose *now* will still be
relevant *then* .
Changes v2 -> v3:
- act on Arnout's comments on v2:
- cURL fix as a post-patch hook rather than post-install hook
- dtc package name, install tools
- usbredir cleanups
- cegui06 package name
- update to qemu 1.2.1
Thank you!
Regards,
Yann E. MORIN.
The following changes since commit 7ffda3e241c4d57394d9f5eeb19e41a3546c0495:
tcllib: new package (2012-12-10 22:36:03 +0100)
are available in the git repository at:
git://gitorious.org/buildroot/buildroot.git yem-qemu
Yann E. MORIN (52):
package/qemu: add license information
package/qemu: fix host-qemu variable names
package/qemu: fix host dependencies
package/qemu: use autotools-package infrastructure
package/qemu: bump version
package/vde2: new package
package/libiscsi: new package
package/usbredir: new package
package/celt051: new package
package/python-pyparsing: new package
package/spice-protocol: new package
package/cegui06: new package
package/slirp: new package
package/spice: new package
package/spice: enable client
package/spice: enable GUI
package/spice: enable slirp support
package/libseccomp: new package
package/keyutils: new package
package/pmake: add host pmake
package/libbsd: new package
package/libedit2: new package
package/ceph: new package
package/qemu: build for the target (i386 or x86_64 only)
package/qemu: add basic target selection
package/qemu: add fine-grained target selection
package/qemu: add SDL frontends
package/qemu: add option to enable/disable the VNC frontend
package/qemu: add VNC jpeg and png compression
package/qemu: add VNC TLS-encryption
package/qemu: add option to not install blobs
package/qemu: add option to remove unwanted keymaps
package/qemu: add uuid support
package/qemu: add support for capabilities
package/qemu: add attr/xattr option
package/qemu: add support for virtfs
package/qemu: add support for cURL
package/qemu: enable use of the curses frontend
package/qemu: add BlueZ connectivity
package/qemu: add AIO support
package/qemu: add support for VDE switches
package/qemu: add iSCSI support
package/qemu: add support for USB redirection
package/qemu: add support for Spice
package/qemu: enable sound
package/qemu: add support for libseccomp
package/qemu: option to build the docs
package/qemu: move sub-options into a sub-menu
package/qemu: enable a static build
package/dtc: new package
package/dtc: add option to install programs
package/qemu: add support for FDT
package/Config.in | 15 +
package/cegui06/Config.in | 15 +
package/cegui06/cegui06-stddef.h.patch | 26 +
package/cegui06/cegui06.mk | 36 +
package/ceph/Config.in | 18 +
package/ceph/ceph-no-envz.patch | 63 +
package/ceph/ceph-no-getloadavg.patch | 61 +
package/ceph/ceph-no-posix_fallocate.patch | 50 +
package/ceph/ceph.mk | 53 +
package/dtc/Config.in | 29 +
package/dtc/dtc-extra_cflags.patch | 27 +
package/dtc/dtc-separate-lib-install.patch | 28 +
package/dtc/dtc.mk | 51 +
package/keyutils/Config.in | 7 +
.../keyutils-01-memleak-from-realloc.patch | 51 +
package/keyutils/keyutils-02-another-memleak.patch | 32 +
package/keyutils/keyutils-03-cifs.patch | 15 +
.../keyutils-04-Makefile-for-buildroot.patch | 65 +
.../keyutils/keyutils-05-fix-install-rule.patch | 19 +
package/keyutils/keyutils.mk | 32 +
package/libbsd/Config.in | 10 +
package/libbsd/libbsd.mk | 21 +
package/libedit2/Config.in | 9 +
package/libedit2/libedit2-01-Makefile.patch | 25 +
package/libedit2/libedit2-02-el.c-issetugid.patch | 24 +
package/libedit2/libedit2-03-el.c-MAXPATHLEN.patch | 40 +
.../libedit2/libedit2-04-readline.h-stdio.patch | 17 +
.../libedit2/libedit2-08-readline-history.h.patch | 20 +
.../libedit2/libedit2-10-define_SIZE_T_MAX.patch | 18 +
.../libedit2/libedit2-12-libedit-Makefile.patch | 54 +
package/libedit2/libedit2-20-fortify.patch | 23 +
package/libedit2/libedit2.mk | 75 +
package/libedit2/libedit2.pc | 13 +
package/libiscsi/Config.in | 12 +
package/libiscsi/libiscsi.mk | 15 +
package/libseccomp/Config.in | 13 +
...ibseccomp-use-system-headers-from-sysroot.patch | 17 +
package/libseccomp/libseccomp.mk | 22 +
package/multimedia/Config.in | 1 +
package/multimedia/celt051/Config.in | 15 +
package/multimedia/celt051/celt.mk | 30 +
package/pmake/pmake-100_mk.patch | 2624 ++++++++++++++++++++
package/pmake/pmake-110_mkdep.patch | 230 ++
package/pmake/pmake-120_fixes.patch | 266 ++
package/pmake/pmake-130_maxpathlen.patch | 39 +
package/pmake/pmake-140_multiarch.patch | 354 +++
package/pmake/pmake-150_mktemp.patch | 31 +
package/pmake/pmake.mk | 46 +
package/python-pyparsing/Config.in | 11 +
package/python-pyparsing/python-pyparsing.mk | 38 +
package/qemu/Config.in | 338 +++
package/qemu/qemu-static-curl.patch | 72 +
package/qemu/qemu-static-sdl.patch | 54 +
package/qemu/qemu.mk | 331 +++-
package/slirp/Config.in | 25 +
package/slirp/slirp.mk | 21 +
package/spice-protocol/Config.in | 12 +
package/spice-protocol/spice-protocol.mk | 14 +
package/spice/Config.in | 51 +
package/spice/spice.mk | 80 +
package/usbredir/Config.in | 28 +
package/usbredir/usbredir.mk | 31 +
package/vde2/Config.in | 10 +
package/vde2/vde2.mk | 36 +
64 files changed, 5888 insertions(+), 21 deletions(-)
create mode 100644 package/cegui06/Config.in
create mode 100644 package/cegui06/cegui06-stddef.h.patch
create mode 100644 package/cegui06/cegui06.mk
create mode 100644 package/ceph/Config.in
create mode 100644 package/ceph/ceph-no-envz.patch
create mode 100644 package/ceph/ceph-no-getloadavg.patch
create mode 100644 package/ceph/ceph-no-posix_fallocate.patch
create mode 100644 package/ceph/ceph.mk
create mode 100644 package/dtc/Config.in
create mode 100644 package/dtc/dtc-extra_cflags.patch
create mode 100644 package/dtc/dtc-separate-lib-install.patch
create mode 100644 package/dtc/dtc.mk
create mode 100644 package/keyutils/Config.in
create mode 100644 package/keyutils/keyutils-01-memleak-from-realloc.patch
create mode 100644 package/keyutils/keyutils-02-another-memleak.patch
create mode 100644 package/keyutils/keyutils-03-cifs.patch
create mode 100644 package/keyutils/keyutils-04-Makefile-for-buildroot.patch
create mode 100644 package/keyutils/keyutils-05-fix-install-rule.patch
create mode 100644 package/keyutils/keyutils.mk
create mode 100644 package/libbsd/Config.in
create mode 100644 package/libbsd/libbsd.mk
create mode 100644 package/libedit2/Config.in
create mode 100644 package/libedit2/libedit2-01-Makefile.patch
create mode 100644 package/libedit2/libedit2-02-el.c-issetugid.patch
create mode 100644 package/libedit2/libedit2-03-el.c-MAXPATHLEN.patch
create mode 100644 package/libedit2/libedit2-04-readline.h-stdio.patch
create mode 100644 package/libedit2/libedit2-08-readline-history.h.patch
create mode 100644 package/libedit2/libedit2-10-define_SIZE_T_MAX.patch
create mode 100644 package/libedit2/libedit2-12-libedit-Makefile.patch
create mode 100644 package/libedit2/libedit2-20-fortify.patch
create mode 100644 package/libedit2/libedit2.mk
create mode 100644 package/libedit2/libedit2.pc
create mode 100644 package/libiscsi/Config.in
create mode 100644 package/libiscsi/libiscsi.mk
create mode 100644 package/libseccomp/Config.in
create mode 100644 package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
create mode 100644 package/libseccomp/libseccomp.mk
create mode 100644 package/multimedia/celt051/Config.in
create mode 100644 package/multimedia/celt051/celt.mk
create mode 100644 package/pmake/pmake-100_mk.patch
create mode 100644 package/pmake/pmake-110_mkdep.patch
create mode 100644 package/pmake/pmake-120_fixes.patch
create mode 100644 package/pmake/pmake-130_maxpathlen.patch
create mode 100644 package/pmake/pmake-140_multiarch.patch
create mode 100644 package/pmake/pmake-150_mktemp.patch
create mode 100644 package/pmake/pmake.mk
create mode 100644 package/python-pyparsing/Config.in
create mode 100644 package/python-pyparsing/python-pyparsing.mk
create mode 100644 package/qemu/Config.in
create mode 100644 package/qemu/qemu-static-curl.patch
create mode 100644 package/qemu/qemu-static-sdl.patch
create mode 100644 package/slirp/Config.in
create mode 100644 package/slirp/slirp.mk
create mode 100644 package/spice-protocol/Config.in
create mode 100644 package/spice-protocol/spice-protocol.mk
create mode 100644 package/spice/Config.in
create mode 100644 package/spice/spice.mk
create mode 100644 package/usbredir/Config.in
create mode 100644 package/usbredir/usbredir.mk
create mode 100644 package/vde2/Config.in
create mode 100644 package/vde2/vde2.mk
^ permalink raw reply
* [Buildroot] The following changes since commit 7ffda3e241c4d57394d9f5eeb19e41a3546c0495:
From: Yann E. MORIN @ 2012-12-10 23:16 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355181322-9260-1-git-send-email-yann.morin.1998@free.fr>
Doh... Looks like I'm not yet ready for that... :-(
Sorry.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply
* [Buildroot] The following changes since commit 7ffda3e241c4d57394d9f5eeb19e41a3546c0495:
From: Yann E. MORIN @ 2012-12-10 23:15 UTC (permalink / raw)
To: buildroot
tcllib: new package (2012-12-10 22:36:03 +0100)
are available in the git repository at:
git://gitorious.org/buildroot/buildroot.git yem-qemu
Yann E. MORIN (52):
package/qemu: add license information
package/qemu: fix host-qemu variable names
package/qemu: fix host dependencies
package/qemu: use autotools-package infrastructure
package/qemu: bump version
package/vde2: new package
package/libiscsi: new package
package/usbredir: new package
package/celt051: new package
package/python-pyparsing: new package
package/spice-protocol: new package
package/cegui06: new package
package/slirp: new package
package/spice: new package
package/spice: enable client
package/spice: enable GUI
package/spice: enable slirp support
package/libseccomp: new package
package/keyutils: new package
package/pmake: add host pmake
package/libbsd: new package
package/libedit2: new package
package/ceph: new package
package/qemu: build for the target (i386 or x86_64 only)
package/qemu: add basic target selection
package/qemu: add fine-grained target selection
package/qemu: add SDL frontends
package/qemu: add option to enable/disable the VNC frontend
package/qemu: add VNC jpeg and png compression
package/qemu: add VNC TLS-encryption
package/qemu: add option to not install blobs
package/qemu: add option to remove unwanted keymaps
package/qemu: add uuid support
package/qemu: add support for capabilities
package/qemu: add attr/xattr option
package/qemu: add support for virtfs
package/qemu: add support for cURL
package/qemu: enable use of the curses frontend
package/qemu: add BlueZ connectivity
package/qemu: add AIO support
package/qemu: add support for VDE switches
package/qemu: add iSCSI support
package/qemu: add support for USB redirection
package/qemu: add support for Spice
package/qemu: enable sound
package/qemu: add support for libseccomp
package/qemu: option to build the docs
package/qemu: move sub-options into a sub-menu
package/qemu: enable a static build
package/dtc: new package
package/dtc: add option to install programs
package/qemu: add support for FDT
package/Config.in | 15 +
package/cegui06/Config.in | 15 +
package/cegui06/cegui06-stddef.h.patch | 26 +
package/cegui06/cegui06.mk | 36 +
package/ceph/Config.in | 18 +
package/ceph/ceph-no-envz.patch | 63 +
package/ceph/ceph-no-getloadavg.patch | 61 +
package/ceph/ceph-no-posix_fallocate.patch | 50 +
package/ceph/ceph.mk | 53 +
package/dtc/Config.in | 29 +
package/dtc/dtc-extra_cflags.patch | 27 +
package/dtc/dtc-separate-lib-install.patch | 28 +
package/dtc/dtc.mk | 51 +
package/keyutils/Config.in | 7 +
.../keyutils-01-memleak-from-realloc.patch | 51 +
package/keyutils/keyutils-02-another-memleak.patch | 32 +
package/keyutils/keyutils-03-cifs.patch | 15 +
.../keyutils-04-Makefile-for-buildroot.patch | 65 +
.../keyutils/keyutils-05-fix-install-rule.patch | 19 +
package/keyutils/keyutils.mk | 32 +
package/libbsd/Config.in | 10 +
package/libbsd/libbsd.mk | 21 +
package/libedit2/Config.in | 9 +
package/libedit2/libedit2-01-Makefile.patch | 25 +
package/libedit2/libedit2-02-el.c-issetugid.patch | 24 +
package/libedit2/libedit2-03-el.c-MAXPATHLEN.patch | 40 +
.../libedit2/libedit2-04-readline.h-stdio.patch | 17 +
.../libedit2/libedit2-08-readline-history.h.patch | 20 +
.../libedit2/libedit2-10-define_SIZE_T_MAX.patch | 18 +
.../libedit2/libedit2-12-libedit-Makefile.patch | 54 +
package/libedit2/libedit2-20-fortify.patch | 23 +
package/libedit2/libedit2.mk | 75 +
package/libedit2/libedit2.pc | 13 +
package/libiscsi/Config.in | 12 +
package/libiscsi/libiscsi.mk | 15 +
package/libseccomp/Config.in | 13 +
...ibseccomp-use-system-headers-from-sysroot.patch | 17 +
package/libseccomp/libseccomp.mk | 22 +
package/multimedia/Config.in | 1 +
package/multimedia/celt051/Config.in | 15 +
package/multimedia/celt051/celt.mk | 30 +
package/pmake/pmake-100_mk.patch | 2624 ++++++++++++++++++++
package/pmake/pmake-110_mkdep.patch | 230 ++
package/pmake/pmake-120_fixes.patch | 266 ++
package/pmake/pmake-130_maxpathlen.patch | 39 +
package/pmake/pmake-140_multiarch.patch | 354 +++
package/pmake/pmake-150_mktemp.patch | 31 +
package/pmake/pmake.mk | 46 +
package/python-pyparsing/Config.in | 11 +
package/python-pyparsing/python-pyparsing.mk | 38 +
package/qemu/Config.in | 338 +++
package/qemu/qemu-static-curl.patch | 72 +
package/qemu/qemu-static-sdl.patch | 54 +
package/qemu/qemu.mk | 331 +++-
package/slirp/Config.in | 25 +
package/slirp/slirp.mk | 21 +
package/spice-protocol/Config.in | 12 +
package/spice-protocol/spice-protocol.mk | 14 +
package/spice/Config.in | 51 +
package/spice/spice.mk | 80 +
package/usbredir/Config.in | 28 +
package/usbredir/usbredir.mk | 31 +
package/vde2/Config.in | 10 +
package/vde2/vde2.mk | 36 +
64 files changed, 5888 insertions(+), 21 deletions(-)
create mode 100644 package/cegui06/Config.in
create mode 100644 package/cegui06/cegui06-stddef.h.patch
create mode 100644 package/cegui06/cegui06.mk
create mode 100644 package/ceph/Config.in
create mode 100644 package/ceph/ceph-no-envz.patch
create mode 100644 package/ceph/ceph-no-getloadavg.patch
create mode 100644 package/ceph/ceph-no-posix_fallocate.patch
create mode 100644 package/ceph/ceph.mk
create mode 100644 package/dtc/Config.in
create mode 100644 package/dtc/dtc-extra_cflags.patch
create mode 100644 package/dtc/dtc-separate-lib-install.patch
create mode 100644 package/dtc/dtc.mk
create mode 100644 package/keyutils/Config.in
create mode 100644 package/keyutils/keyutils-01-memleak-from-realloc.patch
create mode 100644 package/keyutils/keyutils-02-another-memleak.patch
create mode 100644 package/keyutils/keyutils-03-cifs.patch
create mode 100644 package/keyutils/keyutils-04-Makefile-for-buildroot.patch
create mode 100644 package/keyutils/keyutils-05-fix-install-rule.patch
create mode 100644 package/keyutils/keyutils.mk
create mode 100644 package/libbsd/Config.in
create mode 100644 package/libbsd/libbsd.mk
create mode 100644 package/libedit2/Config.in
create mode 100644 package/libedit2/libedit2-01-Makefile.patch
create mode 100644 package/libedit2/libedit2-02-el.c-issetugid.patch
create mode 100644 package/libedit2/libedit2-03-el.c-MAXPATHLEN.patch
create mode 100644 package/libedit2/libedit2-04-readline.h-stdio.patch
create mode 100644 package/libedit2/libedit2-08-readline-history.h.patch
create mode 100644 package/libedit2/libedit2-10-define_SIZE_T_MAX.patch
create mode 100644 package/libedit2/libedit2-12-libedit-Makefile.patch
create mode 100644 package/libedit2/libedit2-20-fortify.patch
create mode 100644 package/libedit2/libedit2.mk
create mode 100644 package/libedit2/libedit2.pc
create mode 100644 package/libiscsi/Config.in
create mode 100644 package/libiscsi/libiscsi.mk
create mode 100644 package/libseccomp/Config.in
create mode 100644 package/libseccomp/libseccomp-use-system-headers-from-sysroot.patch
create mode 100644 package/libseccomp/libseccomp.mk
create mode 100644 package/multimedia/celt051/Config.in
create mode 100644 package/multimedia/celt051/celt.mk
create mode 100644 package/pmake/pmake-100_mk.patch
create mode 100644 package/pmake/pmake-110_mkdep.patch
create mode 100644 package/pmake/pmake-120_fixes.patch
create mode 100644 package/pmake/pmake-130_maxpathlen.patch
create mode 100644 package/pmake/pmake-140_multiarch.patch
create mode 100644 package/pmake/pmake-150_mktemp.patch
create mode 100644 package/pmake/pmake.mk
create mode 100644 package/python-pyparsing/Config.in
create mode 100644 package/python-pyparsing/python-pyparsing.mk
create mode 100644 package/qemu/Config.in
create mode 100644 package/qemu/qemu-static-curl.patch
create mode 100644 package/qemu/qemu-static-sdl.patch
create mode 100644 package/slirp/Config.in
create mode 100644 package/slirp/slirp.mk
create mode 100644 package/spice-protocol/Config.in
create mode 100644 package/spice-protocol/spice-protocol.mk
create mode 100644 package/spice/Config.in
create mode 100644 package/spice/spice.mk
create mode 100644 package/usbredir/Config.in
create mode 100644 package/usbredir/usbredir.mk
create mode 100644 package/vde2/Config.in
create mode 100644 package/vde2/vde2.mk
^ permalink raw reply
* [Buildroot] [PATCH] linux-fusion: don't override CFLAGS/LDFLAGS
From: Samuel Martin @ 2012-12-10 22:49 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1355159219-10867-1-git-send-email-arnout@mind.be>
2012/12/10 Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>:
> Putting $(TARGET_CONFIGURE_OPTS) after $(MAKE) overrides the Makefile's
> CFLAGS and LDFLAGS. Some of these flags are required, however. So
> instead pass these things in the environment, which allows the Makefile
> to append to the flags.
>
> This removes the need for the patch, because now the correct -I options
> are added.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Tested-by: Samuel Martin <s.martin49@gmail.com>
Build-test only too.
> ---
> Build-test only
Reagards,
--
Samuel
^ permalink raw reply
* [Buildroot] [git commit] package/crosstool-ng: bumpimg default GCC version to 4.6.3
From: Carsten Schoenert @ 2012-12-10 22:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87ehiytfcn.fsf@dell.be.48ers.dk>
Hello Peter,
hello Thomas,
Am 10.12.2012 10:40, schrieb Peter Korsgaard:
> Thomas> The recent updates to the crosstool-ng configs is apparently breaking
> Thomas> the build:
>
> Thomas> http://autobuild.buildroot.org/results/b99c757884d14bbe8893900824763f63dd13f5dc/build-end.log
>
> Yes, that looks related (but not exactly the same) as the ppl issues
> with gcc 4.7+ mentioned yesterday.
>
> Yann mentioned on IRC that he had a ppl fix pending.
As far as I can see in the (complete) log the toolchain was building
PPL 0.10.2 but 0.11 is later expected. If possible I can test one more
change to the crosstool-ng configs later. :/
--
Regards
Carsten
^ permalink raw reply
* [Buildroot] Is libiconv necessary to fully support internationalization?
From: Dallas Clement @ 2012-12-10 22:06 UTC (permalink / raw)
To: buildroot
Pardon my ignorance, but it is my understanding that glibc now
provides the same functionality as hitherto provided by libiconv. If
my distro needs to support mutliple languages, is there any danger in
not linking with libiconv?
Thanks in advance for any insight.
^ permalink raw reply
* [Buildroot] buildroot 2012.11 large file support
From: Peter Korsgaard @ 2012-12-10 22:05 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAKvQZ_2MzciYPnYw0rCv_pzhHTzOS+vn=sry7nubtHd+sha3cw@mail.gmail.com>
>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
Hi,
Willy> Yes, so I just quit it so it leaves the default config (which
Willy> seems to have a problem with large file)
Ok, that also works here:
yes '' | make oldconfig
make
Willy> I'm not blocked I already have my root image (with large file
Willy> enabled), I'm currently setting up qemu to test it, our remark is just
Willy> that default config seems dummy.
Notice that we have a bunch of preconfigured qemu defconfigs (look in configs/)
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] tcllib: new package
From: Peter Korsgaard @ 2012-12-10 21:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354839385-23108-2-git-send-email-zinosat@tiscali.it>
>>>>> "Davide" == Davide Viti <zinosat@tiscali.it> writes:
Davide> Signed-off-by: Davide Viti <zinosat@tiscali.it>
Please put the v4 in the topic of the patch itself in the future, as the
cover letter doesn't make it to patchwork (and put the changelog after
the --- line).
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] tcllib: new package
From: Peter Korsgaard @ 2012-12-10 21:36 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=7ffda3e241c4d57394d9f5eeb19e41a3546c0495
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Davide Viti <zinosat@tiscali.it>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 5 +++++
package/tcllib/Config.in | 11 +++++++++++
package/tcllib/tcllib.mk | 14 ++++++++++++++
3 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 74e439e..cad1221 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -313,6 +313,11 @@ endmenu
endif
source "package/ruby/Config.in"
source "package/tcl/Config.in"
+if BR2_PACKAGE_TCL
+menu "tcl libraries/modules"
+source "package/tcllib/Config.in"
+endmenu
+endif
endmenu
menu "Libraries"
diff --git a/package/tcllib/Config.in b/package/tcllib/Config.in
new file mode 100644
index 0000000..b0a4ad0
--- /dev/null
+++ b/package/tcllib/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_TCLLIB
+ bool "tcllib"
+ help
+ Tcllib is a collection of utility modules for Tcl. These
+ modules provide a wide variety of functionality, from
+ implementations of standard data structures to
+ implementations of common networking protocols. The intent
+ is to collect commonly used function into a single library,
+ which users can rely on to be available and stable
+
+ http://tcl.activestate.com/software/tcllib/
diff --git a/package/tcllib/tcllib.mk b/package/tcllib/tcllib.mk
new file mode 100644
index 0000000..09d617f
--- /dev/null
+++ b/package/tcllib/tcllib.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# tcllib
+#
+#############################################################
+TCLLIB_VERSION = 1.13
+TCLLIB_SOURCE = tcllib-$(TCLLIB_VERSION).tar.bz2
+TCLLIB_SITE = http://downloads.sourceforge.net/project/tcllib/tcllib/$(TCLLIB_VERSION)
+TCLLIB_LICENSE = tcl license
+TCLLIB_LICENSE_FILES = license.terms
+TCLLIB_DEPENDENCIES = host-tcl
+TCLLIB_CONF_ENV = ac_cv_path_tclsh="$(HOST_DIR)/usr/bin/tclsh8.4"
+
+$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] [git commit] tslib: add license info
From: Peter Korsgaard @ 2012-12-10 21:33 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=5611509259e513486dfc35941e80549b081b28fd
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
[Peter: Change to LGPL as pointed out by Arnout]
Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/tslib/tslib.mk | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/package/tslib/tslib.mk b/package/tslib/tslib.mk
index b10b5ec..c94be7d 100644
--- a/package/tslib/tslib.mk
+++ b/package/tslib/tslib.mk
@@ -5,6 +5,9 @@
#############################################################
TSLIB_VERSION = 412d99d
TSLIB_SITE = http://github.com/kergoth/tslib/tarball/master
+TSLIB_LICENSE = LGPL
+TSLIB_LICENSE_FILES = COPYING
+
TSLIB_AUTORECONF = YES
TSLIB_INSTALL_STAGING = YES
TSLIB_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
^ permalink raw reply related
* [Buildroot] [PATCH] tslib: add license info
From: Peter Korsgaard @ 2012-12-10 21:33 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354876163-30452-1-git-send-email-sho@relinux.de>
>>>>> "Stephan" == Stephan Hoffmann <sho@relinux.de> writes:
Stephan> Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Stephan> ---
Stephan> package/tslib/tslib.mk | 3 +++
Stephan> 1 files changed, 3 insertions(+), 0 deletions(-)
Stephan> diff --git a/package/tslib/tslib.mk b/package/tslib/tslib.mk
Stephan> index b10b5ec..9b51015 100644
Stephan> --- a/package/tslib/tslib.mk
Stephan> +++ b/package/tslib/tslib.mk
Stephan> @@ -5,6 +5,9 @@
Stephan> #############################################################
Stephan> TSLIB_VERSION = 412d99d
Stephan> TSLIB_SITE = http://github.com/kergoth/tslib/tarball/master
Stephan> +TSLIB_LICENSE = LGPLv2
Stephan> +TSLIB_LICENSE_FILES = COPYING
Committed as LGPL, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] buildroot 2012.11 large file support
From: Willy Lambert @ 2012-12-10 21:30 UTC (permalink / raw)
To: buildroot
In-Reply-To: <878v95skvm.fsf@dell.be.48ers.dk>
2012/12/10 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>> "Willy" == Willy Lambert <lambert.willy@gmail.com> writes:
>
> Hi,
>
> >> I don't think so. I just did a:
> >>
> >> make at91sam9263ek_defconfig && make
> >>
> >> Without any problems. What exactly did you do?
>
> Willy> make.
>
> With what configuration? 'make' with a clean tree will just run
> menuconfig for you.
>
Yes, so I just quit it so it leaves the default config (which seems to
have a problem with large file)
> Willy> just make after having DL latest stable version few days ago from a
> Willy> tgz. Doing a make menuconfig don't change anything, and as far as I
> Willy> can remember, menuconfig was telling us about this problem (something
> Willy> depending on largefile).
>
> Did you perhaps forget to run 'make clean' after changing something in
> your toolchain configuration?
I'm quite sure I did it (make clean + make distclean + rm ccache). But
to be sure I'll retry from zero tomorrow.
I'm not blocked I already have my root image (with large file
enabled), I'm currently setting up qemu to test it, our remark is just
that default config seems dummy.
>
> Willy> (and BTW, hi all, I'm new with buildroot).
>
> Welcome!
>
Thanks !
> --
> Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] openssl: fix runtime failure on some powerpc variants
From: Peter Korsgaard @ 2012-12-10 21:29 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354881980-24101-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> OpenSSL's assembly optimizations por PowerPC seem to be broken for at
Gustavo> least 4xx cores.
Gustavo> Thanks go to Jan Schunke for reporting and testing.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] openssl: fix runtime failure on some powerpc variants
From: Peter Korsgaard @ 2012-12-10 21:29 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=85736773fa06118b3a5a754f5f5bd4190298aecf
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
OpenSSL's assembly optimizations por PowerPC seem to be broken for at
least 4xx cores.
Thanks go to Jan Schunke for reporting and testing.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/openssl/openssl.mk | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk
index 265a4fb..160df2e 100644
--- a/package/openssl/openssl.mk
+++ b/package/openssl/openssl.mk
@@ -38,8 +38,11 @@ endif
endif
endif
ifeq ($(ARCH),powerpc)
+# 4xx cores seem to have trouble with openssl's ASM optimizations
+ifeq ($(BR2_powerpc_401)$(BR2_powerpc_403)$(BR2_powerpc_405)$(BR2_powerpc_405fp)$(BR2_powerpc_440)$(BR2_powerpc_440fp),)
OPENSSL_TARGET_ARCH = ppc
endif
+endif
ifeq ($(ARCH),x86_64)
OPENSSL_TARGET_ARCH = x86_64
endif
^ permalink raw reply related
* [Buildroot] [PATCH] barebox: add 2012.12, remove 2012.08
From: Peter Korsgaard @ 2012-12-10 21:27 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354877490-15585-1-git-send-email-fabio.porcedda@gmail.com>
>>>>> "Fabio" == Fabio Porcedda <fabio.porcedda@gmail.com> writes:
Fabio> Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] barebox: add 2012.12, remove 2012.08
From: Peter Korsgaard @ 2012-12-10 21:27 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=04c8ff92c3f4ca645daf44f73b40b22fc13fdc4c
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
boot/barebox/Config.in | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/boot/barebox/Config.in b/boot/barebox/Config.in
index 95f330f..e7498a8 100644
--- a/boot/barebox/Config.in
+++ b/boot/barebox/Config.in
@@ -8,13 +8,10 @@ config BR2_TARGET_BAREBOX
if BR2_TARGET_BAREBOX
choice
prompt "version"
- default BR2_TARGET_BAREBOX_2012_11
+ default BR2_TARGET_BAREBOX_2012_12
help
Select the specific Barebox version you want to use
-config BR2_TARGET_BAREBOX_2012_08
- bool "2012.08"
-
config BR2_TARGET_BAREBOX_2012_09
bool "2012.09"
@@ -24,6 +21,9 @@ config BR2_TARGET_BAREBOX_2012_10
config BR2_TARGET_BAREBOX_2012_11
bool "2012.11"
+config BR2_TARGET_BAREBOX_2012_12
+ bool "2012.12"
+
config BR2_TARGET_BAREBOX_CUSTOM_TARBALL
bool "Custom tarball"
@@ -41,10 +41,10 @@ endif
config BR2_TARGET_BAREBOX_VERSION
string
- default "2012.08.0" if BR2_TARGET_BAREBOX_2012_08
default "2012.09.0" if BR2_TARGET_BAREBOX_2012_09
default "2012.10.0" if BR2_TARGET_BAREBOX_2012_10
default "2012.11.0" if BR2_TARGET_BAREBOX_2012_11
+ default "2012.12.0" if BR2_TARGET_BAREBOX_2012_12
default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
default $BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
^ permalink raw reply related
* [Buildroot] [PATCH] xtensa: add -mlongcalls to CFLAGS for xtensa
From: Peter Korsgaard @ 2012-12-10 21:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50c0320c.05bf440a.60fe.60b5@mx.google.com>
>>>>> "Chris" == Chris Zankel <chris@zankel.net> writes:
Chris> The longcalls option allows calls across a greater range of addresses.
Chris> This option may degrade both code size and performance, but
Chris> the linker can generally optimize away the unnecessary overhead
Chris> when a call ends up within range
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] xtensa: add -mlongcalls to CFLAGS for xtensa
From: Peter Korsgaard @ 2012-12-10 21:25 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=f7ccd30afbd989085be834b23ac2ea997c50b883
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
The longcalls option allows calls across a greater range of addresses.
This option may degrade both code size and performance, but
the linker can generally optimize away the unnecessary overhead
when a call ends up within range
Signed-off-by: Chris Zankel <chris@zankel.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Makefile.in | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/package/Makefile.in b/package/Makefile.in
index 8dea51e..4281773 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -56,6 +56,15 @@ TARGET_ABI+=-mabi=spe -mfloat-gprs=double -Wa,-me500mc
endif
endif
+# Use longcalls option for Xtensa globally.
+# The 'longcalls' option allows calls across a greater range of addresses,
+# and is required for some packages. While this option can degrade both
+# code size and performance, the linker can usually optimize away the
+# overhead when a call ends up within a certain range.
+ifeq ($(BR2_xtensa),y)
+TARGET_ABI += -mlongcalls
+endif
+
STAGING_DIR=$(HOST_DIR)/usr/$(GNU_TARGET_NAME)/sysroot
TARGET_OPTIMIZATION:=$(call qstrip,$(BR2_TARGET_OPTIMIZATION))
^ permalink raw reply related
* [Buildroot] bump connman version to 1.9
From: Peter Korsgaard @ 2012-12-10 21:24 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAEnpE0zToiU8Q5CnXxPCid5EiXHs4m4e0MiHJj--wmi-u1stkA@mail.gmail.com>
>>>>> "Gary" == Gary Coulbourne <bear@bears.org> writes:
Gary> A quick patch to bump connman's version to 1.9
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] bump connman version to 1.9
From: Peter Korsgaard @ 2012-12-10 21:24 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=36f96dbb7816ddeaa7f0a588f0a54ad8fd7a0ee5
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
A quick patch to bump connman's version to 1.9
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/connman/connman.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/connman/connman.mk b/package/connman/connman.mk
index 2c04cdd..2c376c9 100644
--- a/package/connman/connman.mk
+++ b/package/connman/connman.mk
@@ -4,7 +4,7 @@
#
#######################################################
-CONNMAN_VERSION = 1.8
+CONNMAN_VERSION = 1.9
CONNMAN_SITE = $(BR2_KERNEL_MIRROR)/linux/network/connman/
CONNMAN_DEPENDENCIES = libglib2 dbus iptables gnutls
CONNMAN_INSTALL_STAGING = YES
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox