mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-10 10:10:28 +03:00
Compare commits
69 Commits
2013.11_rc
...
2013.11-rc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1bf9afeb1b | ||
|
|
d08ba19c81 | ||
|
|
f2a2c4cce6 | ||
|
|
d893bde74e | ||
|
|
be1cf3bad4 | ||
|
|
54b369c51f | ||
|
|
f2c32b81dd | ||
|
|
720008338a | ||
|
|
ee40f4f7a0 | ||
|
|
e9060f3c18 | ||
|
|
d34c3ea105 | ||
|
|
12da132c2b | ||
|
|
efc35794c8 | ||
|
|
46250ee126 | ||
|
|
f133e9b05f | ||
|
|
cc2c75b0ec | ||
|
|
32d6473ab5 | ||
|
|
f8e4365e99 | ||
|
|
43becdba4c | ||
|
|
b55e473e62 | ||
|
|
9883cbd367 | ||
|
|
a80e3e06ed | ||
|
|
2b2c657957 | ||
|
|
2b468f1bd9 | ||
|
|
768f261be0 | ||
|
|
b14cab5864 | ||
|
|
c2f11a9286 | ||
|
|
c3ab5bfafe | ||
|
|
eaa8691798 | ||
|
|
13b32ef334 | ||
|
|
d2b29f4fa9 | ||
|
|
af0813b09a | ||
|
|
92ba26b5ee | ||
|
|
99bccdce43 | ||
|
|
ca5a1e1a47 | ||
|
|
291d5f031d | ||
|
|
831dad2d61 | ||
|
|
c4b78bda4b | ||
|
|
b1ac80dad8 | ||
|
|
8b24c37e3a | ||
|
|
5e827993e7 | ||
|
|
5a3c69afbd | ||
|
|
d0e1fae103 | ||
|
|
b478d30a6d | ||
|
|
b87c05dc95 | ||
|
|
f078a8bc95 | ||
|
|
6b8aa11205 | ||
|
|
dcefce4cf8 | ||
|
|
25507b2a5a | ||
|
|
db4f6e237f | ||
|
|
f0c5c85215 | ||
|
|
64dbd7d036 | ||
|
|
157101726c | ||
|
|
21161a0889 | ||
|
|
1b5bd7a296 | ||
|
|
93adbf9c00 | ||
|
|
0294aced5e | ||
|
|
7bf866e7b2 | ||
|
|
893108810b | ||
|
|
2b9bdcafa3 | ||
|
|
58b82e5c40 | ||
|
|
da558954b6 | ||
|
|
c09f5aaa0f | ||
|
|
4de330fa2d | ||
|
|
d3db5d863d | ||
|
|
68a1bd1e4f | ||
|
|
b6ee44b6d4 | ||
|
|
be930801a2 | ||
|
|
980220c645 |
34
CHANGES
34
CHANGES
@@ -1,3 +1,37 @@
|
||||
2013.11-rc3, Released November 26th, 2013
|
||||
|
||||
Fixes all over the tree.
|
||||
|
||||
Architecture: Mark MIPS I, II, III and IV as deprecated.
|
||||
|
||||
Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
|
||||
libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
|
||||
mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
|
||||
protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
|
||||
swig, ti-gfx, tinymembench, uclibc, udisks, vim
|
||||
|
||||
2013.11-rc2, Released November 18th, 2013
|
||||
|
||||
Fixes all over the tree.
|
||||
|
||||
Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
|
||||
Adjust kernel versions.
|
||||
|
||||
Toolchain: avr32: fix for modern kernel headers
|
||||
|
||||
Bootloader: Barebox updated to 2013.10.1
|
||||
|
||||
Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
|
||||
libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
|
||||
wayland, wvstreams
|
||||
|
||||
Issues resolved (http://bugs.uclibc.org):
|
||||
|
||||
#3601: DHCPD S80dhcp-server startup script issues
|
||||
#6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
|
||||
#6416: Xenomai package, patch alternative
|
||||
#6590: directfb-examples build failed whit linaro toolchain
|
||||
|
||||
2013.11-rc1, Released November 12th, 2013
|
||||
|
||||
Architectures: Nios-II support, MIPS arch handling fixes
|
||||
|
||||
2
Makefile
2
Makefile
@@ -24,7 +24,7 @@
|
||||
#--------------------------------------------------------------
|
||||
|
||||
# Set and export the version string
|
||||
export BR2_VERSION:=2013.11-rc1
|
||||
export BR2_VERSION:=2013.11-rc3
|
||||
|
||||
# Check for minimal make version (note: this check will break at make 10.x)
|
||||
MIN_MAKE_VERSION=3.81
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
choice
|
||||
prompt "Target Architecture Variant"
|
||||
depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
|
||||
default BR2_mips_3 if BR2_mips
|
||||
default BR2_mips_1 if BR2_mipsel
|
||||
default BR2_mips_32 if BR2_mips || BR2_mipsel
|
||||
default BR2_mips_64 if BR2_mips64 || BR2_mips64el
|
||||
help
|
||||
Specific CPU variant to use
|
||||
@@ -12,14 +11,16 @@ choice
|
||||
|
||||
config BR2_mips_1
|
||||
bool "mips I (generic)"
|
||||
depends on !BR2_ARCH_IS_64
|
||||
depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED
|
||||
config BR2_mips_2
|
||||
bool "mips II"
|
||||
depends on !BR2_ARCH_IS_64
|
||||
depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED
|
||||
config BR2_mips_3
|
||||
bool "mips III"
|
||||
depends on BR2_DEPRECATED
|
||||
config BR2_mips_4
|
||||
bool "mips IV"
|
||||
depends on BR2_DEPRECATED
|
||||
config BR2_mips_32
|
||||
bool "mips 32"
|
||||
depends on !BR2_ARCH_IS_64
|
||||
|
||||
@@ -12,7 +12,7 @@ choice
|
||||
Select the specific Barebox version you want to use
|
||||
|
||||
config BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
bool "2013.10.0"
|
||||
bool "2013.10.1"
|
||||
|
||||
config BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
bool "Custom version"
|
||||
@@ -40,7 +40,7 @@ endif
|
||||
|
||||
config BR2_TARGET_BAREBOX_VERSION
|
||||
string
|
||||
default "2013.10.0" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default "2013.10.1" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
|
||||
|
||||
@@ -15,11 +15,11 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
|
||||
# Lock to 3.10 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.10.18"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.10.20"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.18"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.10.20"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="exynos4"
|
||||
BR2_LINUX_KERNEL_ZIMAGE=y
|
||||
|
||||
@@ -10,14 +10,14 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
|
||||
BR2_TARGET_ROOTFS_EXT2=y
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
# Lock to 3.11 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.11.9"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.11.9"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/arm-versatile/linux-3.11.config"
|
||||
BR2_LINUX_KERNEL_ZIMAGE=y
|
||||
|
||||
@@ -15,11 +15,11 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="vexpress"
|
||||
BR2_LINUX_KERNEL_ZIMAGE=y
|
||||
|
||||
@@ -19,7 +19,7 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazebe-mmu/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_LINUX_BIN=y
|
||||
|
||||
@@ -19,7 +19,7 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/microblazeel-mmu/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_LINUX_BIN=y
|
||||
|
||||
@@ -12,12 +12,12 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips64-malta/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
|
||||
@@ -8,12 +8,12 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mips-malta/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
|
||||
@@ -8,12 +8,12 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/mipsel-malta/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
|
||||
@@ -8,12 +8,12 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/powerpc-g3beige/linux-3.12.config"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
|
||||
@@ -8,12 +8,12 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="mpc85xx"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Use soft float
|
||||
BR2_SOFT_FLOAT=y
|
||||
@@ -16,7 +16,7 @@ BR2_SOFT_FLOAT=y
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="44x/virtex5"
|
||||
BR2_LINUX_KERNEL_VMLINUX=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
|
||||
@@ -8,11 +8,11 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Linux kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="sparc32"
|
||||
BR2_LINUX_KERNEL_ZIMAGE=y
|
||||
|
||||
@@ -11,11 +11,11 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86_64/linux-3.12.config"
|
||||
|
||||
@@ -12,11 +12,11 @@ BR2_TARGET_ROOTFS_EXT2=y
|
||||
|
||||
# Lock to 3.12 headers to avoid breaking with newer kernels
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.12.1"
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.12.1"
|
||||
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/x86/linux-3.12.config"
|
||||
|
||||
@@ -13,17 +13,19 @@ BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K=y
|
||||
|
||||
# Lock down headers to avoid breaking with new defaults
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.5.4"
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.11.8"
|
||||
|
||||
# bootloader
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BOARDNAME="sheevaplug"
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2013.10"
|
||||
BR2_TARGET_UBOOT_FORMAT_KWB=y
|
||||
# BR2_TARGET_UBOOT_NETWORK is not set
|
||||
|
||||
# Kernel
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.5.4"
|
||||
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.11.8"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="kirkwood"
|
||||
BR2_LINUX_KERNEL_UIMAGE=y
|
||||
|
||||
@@ -15,12 +15,12 @@ or
|
||||
|
||||
<p>
|
||||
|
||||
The latest release candidate is <b>2013.11-rc1</b>, which can be
|
||||
The latest release candidate is <b>2013.11-rc3</b>, which can be
|
||||
downloaded here:<p>
|
||||
|
||||
<a href="/downloads/buildroot-2013.11-rc1tar.gz">buildroot-2013.11-rc1.tar.gz</a>
|
||||
<a href="/downloads/buildroot-2013.11-rc3.tar.gz">buildroot-2013.11-rc3.tar.gz</a>
|
||||
or
|
||||
<a href="/downloads/buildroot-2013.11-rc3.tar.bz2">buildroot-2013.11-rc1.tar.bz2</a>.
|
||||
<a href="/downloads/buildroot-2013.11-rc3.tar.bz2">buildroot-2013.11-rc3.tar.bz2</a>.
|
||||
<p>
|
||||
|
||||
This and earlier releases can always be downloaded from
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
<br><a href="/lists.html">Mailing Lists</a>
|
||||
<br><a href="http://autobuild.buildroot.org">Autobuilder</a>
|
||||
<br><a href="http://patchwork.buildroot.org">Patchwork</a>
|
||||
<br><a href="/sponsors.html">Sponsors</a>
|
||||
|
||||
</td>
|
||||
|
||||
|
||||
@@ -5,12 +5,63 @@
|
||||
<p>
|
||||
|
||||
<ul>
|
||||
<li><b>18 November 2013 -- 2013.11-rc3 released</b>
|
||||
|
||||
<p>Another week, another release candidate with more fixes. See the <a
|
||||
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc3">CHANGES</a>
|
||||
file for details.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2013.11-rc3.tar.bz2">2013.11-rc3
|
||||
release candidate</a>, and report any problems found to the <a
|
||||
href="lists.html">mailing list</a> or <a
|
||||
href="https://bugs.uclibc.org">bug tracker</a>.</p>
|
||||
|
||||
<li><b>18 November 2013 -- 2013.11-rc2 released</b>
|
||||
|
||||
<p>Another week, another release candidate with more cleanups and
|
||||
build fixes. See the <a
|
||||
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc2">CHANGES</a>
|
||||
file for details.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2013.11-rc2.tar.bz2">2013.11-rc2
|
||||
release candidate</a>, and report any problems found to the <a
|
||||
href="lists.html">mailing list</a> or <a
|
||||
href="https://bugs.uclibc.org">bug tracker</a>.</p>
|
||||
|
||||
<li><b>13 November 2013 -- Announcement of the next Buildroot Developer Days</b>
|
||||
|
||||
<p>The next <i>Buildroot Developer Days</i> meeting will take
|
||||
place on Monday 3rd and Tuesday 4th February 2014 in Brussels,
|
||||
Belgium - Just after
|
||||
<a href="http://www.fosdem.org">FOSDEM</a> (February
|
||||
1st/2nd). This two days meeting is mainly open to Buildroot
|
||||
developers and contributors, or Buildroot users having a prior
|
||||
experience with the tool. It will allow developers to work on
|
||||
Buildroot and discuss current issues, the future directions, and
|
||||
more.</p>
|
||||
|
||||
<p>In addition to the Buildroot event, we encourage embedded Linux
|
||||
developers to propose talks for the Embedded and Mobile Developer
|
||||
Room at FOSDEM. See
|
||||
the <a href="https://lists.fosdem.org/pipermail/fosdem/2013-October/001870.html">CFP</a>.</p>
|
||||
|
||||
<p>We would like to thank our
|
||||
sponsor <a href="http://www.google.com">Google</a> for sponsoring
|
||||
the event by providing all the needed logistics.</p>
|
||||
|
||||
<p>For more details, see the
|
||||
<a href="http://www.elinux.org/Buildroot:DeveloperDaysFOSDEM2014">wiki
|
||||
page</a> dedicated to the meeting.</p>
|
||||
|
||||
<li><b>12 November 2013 -- 2013.11-rc1 released</b>
|
||||
|
||||
<p>We have a new release candidate! Lots of changes all over the
|
||||
tree, see the <a
|
||||
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11_rc1">CHANGES</a>
|
||||
file for details.</p>
|
||||
file for details, and read the
|
||||
<a href="http://lists.busybox.net/pipermail/buildroot/2013-November/082514.html">announcement</a>.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2013.11-rc1.tar.bz2">2013.11-rc1
|
||||
|
||||
41
docs/sponsors.html
Normal file
41
docs/sponsors.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!--#include file="header.html" -->
|
||||
|
||||
<h3>Sponsors</h3>
|
||||
|
||||
<p>Throughout its history, the Buildroot project has been sponsored by
|
||||
various companies, that we would like to thank below:</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><a href="http://www.google.com">Google</a>, for providing all
|
||||
the logistics for the FOSDEM 2013 and FOSDEM 2014 Developer Days in
|
||||
Brussels, Belgium.</li>
|
||||
|
||||
<li><a href="http://www.imgtec.com/">Imagination Technologies</a>,
|
||||
for sponsoring the meeting room and dinner of the ELCE 2013
|
||||
Developer Days in Edinburgh, UK.</li>
|
||||
|
||||
<li><a href="http://circuitco.com/">CircuitCo</a>, for sponsoring
|
||||
several development boards for the Google Summer of Code 2013
|
||||
project on Buildroot.</li>
|
||||
|
||||
<li><a href="http://boundarydevices.com/">BoundaryDevices</a>, for
|
||||
sponsoring an i.MX6 development board for the Google Summer of Code
|
||||
2013 project on Buildroot.</li>
|
||||
|
||||
<li><a href="http://www.fluendo.com/">Fluendo</a>, for sponsoring
|
||||
the meeting room for the ELCE 2012 Developer Days in Barcelona
|
||||
Spain.</li>
|
||||
|
||||
<li><a href="http://www.synopsys.com">Synopsys</a>, for sponsoring
|
||||
the dinner for the ELCE 2012 Developer Days in Barcelona,
|
||||
Spain.</li>
|
||||
|
||||
<li><a href="http://www.calao-systems.com/">Calao Systems</a>
|
||||
and <a href="http://free-electrons.com/">Free Electrons</a> for
|
||||
providing a meeting room and offering lunch for the ELCE 2009
|
||||
Developer Days in Grenoble, France.</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<!--#include file="footer.html" -->
|
||||
@@ -21,7 +21,7 @@ choice
|
||||
prompt "Kernel version"
|
||||
|
||||
config BR2_LINUX_KERNEL_LATEST_VERSION
|
||||
bool "3.12"
|
||||
bool "3.12.1"
|
||||
|
||||
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
|
||||
bool "Same as toolchain kernel headers"
|
||||
@@ -87,7 +87,7 @@ endif
|
||||
|
||||
config BR2_LINUX_KERNEL_VERSION
|
||||
string
|
||||
default "3.12" if BR2_LINUX_KERNEL_LATEST_VERSION
|
||||
default "3.12.1" if BR2_LINUX_KERNEL_LATEST_VERSION
|
||||
default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
|
||||
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
|
||||
if BR2_LINUX_KERNEL_CUSTOM_VERSION
|
||||
|
||||
@@ -3,8 +3,10 @@ config BR2_PACKAGE_ATK
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
help
|
||||
The ATK accessibility toolkit, needed to build GTK+-2.x.
|
||||
|
||||
comment "atk needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -19,7 +19,8 @@ BEECRYPT_CONF_ENV = \
|
||||
|
||||
BEECRYPT_CONF_OPT = \
|
||||
--without-java \
|
||||
--without-python
|
||||
--without-python \
|
||||
--disable-openmp
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ICU),y)
|
||||
# C++ support needs icu
|
||||
|
||||
@@ -3,7 +3,7 @@ config BR2_PACKAGE_BLUEZ_UTILS
|
||||
depends on !BR2_avr32
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib, libglib2
|
||||
depends on BR2_USE_MMU # dbus
|
||||
depends on BR2_USE_MMU # dbus, libglib2
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
|
||||
@@ -4,6 +4,7 @@ config BR2_PACKAGE_BUSTLE
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on BR2_PACKAGE_DBUS # runtime
|
||||
help
|
||||
Bustle is a better dbus-monitor! It records and draws
|
||||
@@ -20,5 +21,6 @@ config BR2_PACKAGE_BUSTLE
|
||||
http://www.willthompson.co.uk/bustle/
|
||||
|
||||
comment "bustle needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_DBUS
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -9,7 +9,7 @@ config BR2_PACKAGE_CONNMAN
|
||||
depends on BR2_USE_WCHAR # libglib2 and gnutls
|
||||
depends on BR2_INET_IPV6
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
|
||||
depends on BR2_USE_MMU # dbus
|
||||
depends on BR2_USE_MMU # dbus, libglib2
|
||||
help
|
||||
The Connection Manager (ConnMan) project provides a daemon for
|
||||
managing internet connections within embedded devices running
|
||||
|
||||
@@ -9,7 +9,7 @@ config BR2_PACKAGE_CURLFTPFS
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse, glib2
|
||||
depends on BR2_USE_MMU # libfuse
|
||||
depends on BR2_USE_MMU # libfuse, glib2
|
||||
depends on !BR2_PREFER_STATIC_LIB # libfuse
|
||||
help
|
||||
CurlFtpFS is a filesystem for accessing FTP hosts based on FUSE
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_DBUS_GLIB
|
||||
depends on BR2_PACKAGE_DBUS
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
GLib bindings for D-Bus.
|
||||
@@ -10,5 +11,6 @@ config BR2_PACKAGE_DBUS_GLIB
|
||||
http://www.freedesktop.org/software/dbus
|
||||
|
||||
comment "dbus-glib needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_DBUS
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -75,11 +75,15 @@ define DBUS_INSTALL_TARGET_FIXUP
|
||||
mkdir -p $(TARGET_DIR)/var/lib
|
||||
rm -rf $(TARGET_DIR)/var/lib/dbus
|
||||
ln -sf /tmp/dbus $(TARGET_DIR)/var/lib/dbus
|
||||
$(INSTALL) -m 0755 -D package/dbus/S30dbus $(TARGET_DIR)/etc/init.d/S30dbus
|
||||
endef
|
||||
|
||||
DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_INSTALL_TARGET_FIXUP
|
||||
|
||||
define DBUS_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/dbus/S30dbus \
|
||||
$(TARGET_DIR)/etc/init.d/S30dbus
|
||||
endef
|
||||
|
||||
HOST_DBUS_DEPENDENCIES = host-pkgconf host-expat
|
||||
HOST_DBUS_CONF_OPT = \
|
||||
--with-dbus-user=dbus \
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
config BR2_PACKAGE_DHCP
|
||||
bool "isc dhcp"
|
||||
bool "dhcp (ISC)"
|
||||
# fork()
|
||||
depends on BR2_USE_MMU
|
||||
help
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
# $Id: dhcp3-relay,v 1.1 2004/04/16 15:41:08 ml Exp $
|
||||
#
|
||||
|
||||
|
||||
# What servers should the DHCP relay forward requests to?
|
||||
# e.g: SERVERS="192.168.0.1"
|
||||
SERVERS=""
|
||||
@@ -14,31 +13,29 @@ INTERFACES=""
|
||||
# Additional options that are passed to the DHCP relay daemon?
|
||||
OPTIONS=""
|
||||
|
||||
|
||||
|
||||
|
||||
# It is not safe to start if we don't have a default configuration...
|
||||
echo "/etc/init.d/dhcp-relay not yet configured! - Aborting..."
|
||||
exit 1;
|
||||
|
||||
|
||||
# Sanity checks
|
||||
test -f /usr/sbin/dhcrelay || exit 0
|
||||
test -n "$INTERFACES" || exit 0
|
||||
test -n "$SERVERS" || exit 0
|
||||
|
||||
# Build command line for interfaces (will be passed to dhrelay below.)
|
||||
IFCMD=""
|
||||
if test "$INTERFACES" != ""; then
|
||||
for I in $INTERFACES; do
|
||||
IFCMD=${IFCMD}"-i "${I}" "
|
||||
done
|
||||
fi
|
||||
for I in $INTERFACES; do
|
||||
IFCMD=${IFCMD}"-i "${I}" "
|
||||
done
|
||||
|
||||
DHCRELAYPID=/var/run/dhcrelay.pid
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting DHCP relay: "
|
||||
start-stop-daemon -S -x /usr/sbin/dhcrelay -- -q $OPTIONS $IFCMD $SERVERS
|
||||
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping DHCP relay: "
|
||||
start-stop-daemon -K -x /usr/sbin/dhcrelay
|
||||
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
restart | force-reload)
|
||||
$0 stop
|
||||
@@ -47,7 +44,7 @@ case "$1" in
|
||||
;;
|
||||
*)
|
||||
echo "Usage: /etc/init.d/dhcp-relay {start|stop|restart|force-reload}"
|
||||
exit 1
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
@@ -3,34 +3,27 @@
|
||||
# $Id: dhcp3-server.init.d,v 1.4 2003/07/13 19:12:41 mdz Exp $
|
||||
#
|
||||
|
||||
|
||||
|
||||
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
|
||||
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
|
||||
INTERFACES=""
|
||||
|
||||
|
||||
# It is not safe to start if we don't have a default configuration...
|
||||
echo "/etc/init.d/dhcp-server not yet configured! - Aborting..."
|
||||
exit 1;
|
||||
|
||||
|
||||
|
||||
# Sanity checks
|
||||
test -f /usr/sbin/dhcpd || exit 0
|
||||
|
||||
test -f /etc/dhcpd.conf || exit 0
|
||||
test -n "$INTERFACES" || exit 0
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting DHCP server: "
|
||||
test -d /var/lib/dhcp/ || mkdir -p /var/lib/dhcp/
|
||||
test -f /var/lib/dhcp/dhcpd.leases || touch /var/lib/dhcp/dhcpd.leases
|
||||
test -f /var/lib/dhcp/dhcpd.leases || touch /var/lib/dhcp/dhcpd.leases
|
||||
start-stop-daemon -S -x /usr/sbin/dhcpd -- -q $INTERFACES
|
||||
echo "."
|
||||
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping DHCP server: dhcpd3"
|
||||
start-stop-daemon -K -x /usr/sbin/dhcpd
|
||||
echo "."
|
||||
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
restart | force-reload)
|
||||
$0 stop
|
||||
@@ -42,7 +35,7 @@ case "$1" in
|
||||
;;
|
||||
*)
|
||||
echo "Usage: /etc/init.d/dhcp-server {start|stop|restart|force-reload}"
|
||||
exit 1
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_DOCKER
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_XLIB_LIBX11
|
||||
help
|
||||
@@ -11,5 +12,6 @@ config BR2_PACKAGE_DOCKER
|
||||
http://icculus.org/openbox/2/docker
|
||||
|
||||
comment "docker needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -49,6 +49,7 @@ config BR2_PACKAGE_E2FSPROGS_E2UNDO
|
||||
|
||||
config BR2_PACKAGE_E2FSPROGS_E4DEFRAG
|
||||
bool "e4defrag"
|
||||
depends on !BR2_avr32 # fallocate not implemented
|
||||
|
||||
config BR2_PACKAGE_E2FSPROGS_FILEFRAG
|
||||
bool "filefrag"
|
||||
|
||||
@@ -11,7 +11,7 @@ E2FSPROGS_LICENSE_FILES = COPYING lib/uuid/COPYING lib/ss/mit-sipb-copyright.h l
|
||||
|
||||
E2FSPROGS_CONF_OPT = \
|
||||
--disable-tls \
|
||||
--enable-elf-shlibs \
|
||||
$(if $(BR2_PREFER_STATIC_LIB),,--enable-elf-shlibs) \
|
||||
$(if $(BR2_PACKAGE_E2FSPROGS_DEBUGFS),,--disable-debugfs) \
|
||||
$(if $(BR2_PACKAGE_E2FSPROGS_E2IMAGE),,--disable-imager) \
|
||||
$(if $(BR2_PACKAGE_E2FSPROGS_E4DEFRAG),,--disable-defrag) \
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_ENCHANT
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
Enchant is a spell-checking library that provides a consistent
|
||||
@@ -11,5 +12,6 @@ config BR2_PACKAGE_ENCHANT
|
||||
http://www.abisource.com/projects/enchant/
|
||||
|
||||
comment "enchant needs a toolchain w/ C++, threads, wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_GAMIN
|
||||
bool "gamin"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
the File Alteration Monitor
|
||||
@@ -9,4 +10,5 @@ config BR2_PACKAGE_GAMIN
|
||||
http://www.gnome.org/~veillard/gamin/sources
|
||||
|
||||
comment "gamin needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_GDK_PIXBUF
|
||||
bool "gdk-pixbuf"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
@@ -11,4 +12,5 @@ config BR2_PACKAGE_GDK_PIXBUF
|
||||
http://www.gtk.org/
|
||||
|
||||
comment "gdk-pixbuf needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,10 +2,12 @@ config BR2_PACKAGE_GLIB_NETWORKING
|
||||
bool "glib-networking"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||
help
|
||||
Network-related GIO modules for glib.
|
||||
|
||||
comment "glib-networking needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -5,11 +5,13 @@ config BR2_PACKAGE_GLIBMM
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
help
|
||||
The GLibmm package is a set of C++ bindings for GLib.
|
||||
|
||||
http://www.gtkmm.org/
|
||||
|
||||
comment "glibmm needs a toolchain w/ C++, wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_GMPC
|
||||
depends on BR2_PACKAGE_LIBGTK2
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
@@ -21,5 +22,6 @@ config BR2_PACKAGE_GMPC
|
||||
http://gmpcwiki.sarine.nl/index.php?title=GMPC
|
||||
|
||||
comment "gmpc needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_XORG7 && BR2_PACKAGE_LIBGTK2
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,8 +2,7 @@ config BR2_PACKAGE_GOB2
|
||||
bool "gob2"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
# m4 uses fork(), so does bison then
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_USE_MMU # bison, glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_FLEX
|
||||
select BR2_PACKAGE_BISON
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_GSTREAMER
|
||||
bool "gstreamer"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
GStreamer is an open source multimedia framework.
|
||||
@@ -29,4 +30,5 @@ config BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY
|
||||
the launch-time for a GStreamer application.
|
||||
|
||||
comment "gstreamer needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -358,6 +358,7 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DIRECTFB
|
||||
|
||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WAYLAND
|
||||
bool "wayland"
|
||||
depends on !BR2_avr32 # wayland
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # wayland
|
||||
select BR2_PACKAGE_WAYLAND
|
||||
help
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
[PATCH] work around dfb-example build issue
|
||||
|
||||
directfb.h defines a number of macros which conflicts with gst/gst.h:
|
||||
|
||||
In file included from ../sysroot/usr/include/gstreamer-1.0/gst/gst.h:50:0,
|
||||
from dfb-example.c:4:
|
||||
../sysroot/usr/include/gstreamer-1.0/gst/gstinfo.h:295:69: error: expected ‘)’ before ‘__attribute__’
|
||||
../sysroot/usr/include/gstreamer-1.0/gst/gstinfo.h:295:69: error: expected ‘,’ or ‘;’ before ‘)’ token
|
||||
|
||||
As mentioned in the upstream bug report:
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=685609
|
||||
|
||||
A workaround is to simply swap the include order around.
|
||||
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
ext/directfb/dfb-example.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Index: gst1-plugins-bad-1.2.1/ext/directfb/dfb-example.c
|
||||
===================================================================
|
||||
--- gst1-plugins-bad-1.2.1.orig/ext/directfb/dfb-example.c
|
||||
+++ gst1-plugins-bad-1.2.1/ext/directfb/dfb-example.c
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
-#include <directfb.h>
|
||||
#include <stdio.h>
|
||||
#include <gst/gst.h>
|
||||
+#include <directfb.h>
|
||||
|
||||
static IDirectFB *dfb = NULL;
|
||||
static IDirectFBSurface *primary = NULL;
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_GSTREAMER1
|
||||
bool "gstreamer1"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
GStreamer is an open source multimedia framework. This 1.x version of
|
||||
@@ -50,4 +51,5 @@ config BR2_PACKAGE_GSTREAMER1_INSTALL_TOOLS
|
||||
endif
|
||||
|
||||
comment "gstreamer1 needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,7 +2,7 @@ config BR2_PACKAGE_GVFS
|
||||
bool "gvfs"
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_USE_MMU # dbus
|
||||
depends on BR2_USE_MMU # dbus, glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_DBUS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_JSON_GLIB
|
||||
bool "json-glib"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||
help
|
||||
@@ -12,4 +13,5 @@ config BR2_PACKAGE_JSON_GLIB
|
||||
https://live.gnome.org/JsonGlib/
|
||||
|
||||
comment "json-glib needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LATENCYTOP
|
||||
bool "latencytop"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
select BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
@@ -21,4 +22,5 @@ config BR2_PACKAGE_LATENCYTOP
|
||||
http://www.latencytop.org
|
||||
|
||||
comment "latencytop needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_LIBCAP_NG
|
||||
bool "libcap-ng"
|
||||
depends on !BR2_avr32 # lacks TLS
|
||||
help
|
||||
The libcap-ng library is intended to make programming with
|
||||
posix capabilities much easier than the traditional libcap
|
||||
|
||||
32
package/libcurl/libcurl-0001-CVE-2013-4545.patch
Normal file
32
package/libcurl/libcurl-0001-CVE-2013-4545.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
From 3c3622b66221d89509cffaa693fc7dcd5c5b96cf Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Stenberg <daniel@haxx.se>
|
||||
Date: Wed, 2 Oct 2013 15:31:10 +0200
|
||||
Subject: [PATCH] OpenSSL: acknowledge CURLOPT_SSL_VERIFYHOST without
|
||||
VERIFYPEER
|
||||
|
||||
Setting only CURLOPT_SSL_VERIFYHOST without CURLOPT_SSL_VERIFYPEER set
|
||||
should still verify that the host name fields in the server certificate
|
||||
is fine or return failure.
|
||||
|
||||
Bug: http://curl.haxx.se/mail/lib-2013-10/0002.html
|
||||
Reported-by: Ishan SinghLevett
|
||||
---
|
||||
lib/ssluse.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/ssluse.c b/lib/ssluse.c
|
||||
index 4f3c1e1..9974ac8 100644
|
||||
--- a/lib/ssluse.c
|
||||
+++ b/lib/ssluse.c
|
||||
@@ -2351,7 +2351,7 @@ ossl_connect_step3(struct connectdata *conn,
|
||||
* operations.
|
||||
*/
|
||||
|
||||
- if(!data->set.ssl.verifypeer)
|
||||
+ if(!data->set.ssl.verifypeer && !data->set.ssl.verifyhost)
|
||||
(void)servercert(conn, connssl, FALSE);
|
||||
else
|
||||
retcode = servercert(conn, connssl, TRUE);
|
||||
--
|
||||
1.8.3.2
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBGLADE
|
||||
depends on BR2_PACKAGE_LIBGTK2
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_ATK
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
@@ -14,5 +15,6 @@ config BR2_PACKAGE_LIBGLADE
|
||||
http://ftp.gnome.org/pub/GNOME/sources/libglade/
|
||||
|
||||
comment "libglade needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_LIBGTK2
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -3,13 +3,16 @@ config BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
select BR2_PACKAGE_LIBFFI
|
||||
select BR2_PACKAGE_PCRE_UCP if BR2_PACKAGE_PCRE
|
||||
select BR2_PACKAGE_ZLIB
|
||||
depends on BR2_USE_WCHAR # gettext
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Low-level core library that forms the basis of GTK+ and GNOME.
|
||||
|
||||
http://www.gtk.org/
|
||||
|
||||
comment "libglib2 needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -15,6 +15,7 @@ config BR2_PACKAGE_LIBGTK2
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_INSTALL_LIBSTDCPP # pango
|
||||
help
|
||||
The GTK+ version 2 graphical user interface library
|
||||
@@ -32,6 +33,7 @@ config BR2_PACKAGE_LIBGTK2_DEMO
|
||||
endif
|
||||
|
||||
comment "libgtk2 needs a toolchain w/ wchar, threads, C++"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBMMS
|
||||
bool "libmms"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
LibMMS is a common library for parsing mms:// and mmsh://
|
||||
@@ -13,4 +14,5 @@ config BR2_PACKAGE_LIBMMS
|
||||
http://launchpad.net/libmms
|
||||
|
||||
comment "libmms needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBMPD
|
||||
bool "libmpd"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
@@ -12,4 +13,5 @@ config BR2_PACKAGE_LIBMPD
|
||||
http://gmpcwiki.sarine.nl/index.php?title=Libmpd
|
||||
|
||||
comment "libmpd needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -16,6 +16,10 @@ config BR2_PACKAGE_LIBPLAYER_MPLAYER
|
||||
depends on !BR2_sh4a && !BR2_sh4aeb && !BR2_microblaze && !BR2_aarch64
|
||||
# mplayer
|
||||
depends on BR2_LARGEFILE
|
||||
# mplayer
|
||||
# Broken support for <ARMv5
|
||||
depends on !(BR2_arm7tdmi || BR2_arm720t || BR2_arm920t \
|
||||
|| BR2_arm920t || BR2_arm922t || BR2_fa526 || BR2_strongarm)
|
||||
select BR2_PACKAGE_MPLAYER
|
||||
|
||||
config BR2_PACKAGE_LIBPLAYER_GSTREAMER
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBQMI
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
help
|
||||
libqmi is a glib-based library for talking to WWAN modems and devices
|
||||
which speak the Qualcomm MSM Interface (QMI) protocol.
|
||||
@@ -10,4 +11,5 @@ config BR2_PACKAGE_LIBQMI
|
||||
http://www.freedesktop.org/wiki/Software/libqmi/
|
||||
|
||||
comment "libqmi needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -11,7 +11,7 @@ Index: a/Makefile
|
||||
===================================================================
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -41,7 +41,7 @@
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
# options
|
||||
override CPPFLAGS += -Iinc/
|
||||
21
package/libroxml/libroxml-0002-wno-unused-result.patch
Normal file
21
package/libroxml/libroxml-0002-wno-unused-result.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
The -Wno-unused-result option is not understood by the version of gcc used by the
|
||||
avr32 toolchain. Remove the option from the compilation flags.
|
||||
|
||||
Fixes build failures such as the following.
|
||||
|
||||
http://autobuild.buildroot.net/results/e22/e22d94fca3eabb4e54d82af04319f17ad8e10c20/
|
||||
|
||||
Signed-off-by: Simon Dawson <spdawson@gmail.com>
|
||||
|
||||
diff -Nurp a/Makefile b/Makefile
|
||||
--- a/Makefile 2013-11-21 17:13:17.679388374 +0000
|
||||
+++ b/Makefile 2013-11-21 17:13:35.219299157 +0000
|
||||
@@ -46,7 +46,7 @@ DEFINES = -DIGNORE_EMPTY_TEXT_NODES
|
||||
|
||||
# options
|
||||
override CPPFLAGS += -Iinc/
|
||||
-override CFLAGS += $(OPTIM) -fPIC -Wall -Wextra -Wno-unused-parameter -Wno-unused-result -Iinc/ $(DEFINES)
|
||||
+override CFLAGS += $(OPTIM) -fPIC -Wall -Wextra -Wno-unused-parameter -Iinc/ $(DEFINES)
|
||||
override LDFLAGS +=
|
||||
|
||||
ifeq ("$(OS)", "Darwin")
|
||||
@@ -8,6 +8,7 @@ config BR2_PACKAGE_LIBRSVG
|
||||
select BR2_PACKAGE_GDK_PIXBUF
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_INSTALL_LIBSTDCPP # pango
|
||||
help
|
||||
The rsvg library is an efficient renderer for Scalable
|
||||
@@ -16,4 +17,5 @@ config BR2_PACKAGE_LIBRSVG
|
||||
http://librsvg.sourceforge.net/
|
||||
|
||||
comment "librsvg needs a toolchain w/ wchar, threads, C++"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
||||
|
||||
@@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBSECRET
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # gettext dep in libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
help
|
||||
libsecret is a library for storing and retrieving passwords and other
|
||||
secrets. It communicates with the "Secret Service" using DBus.
|
||||
@@ -12,4 +13,5 @@ config BR2_PACKAGE_LIBSECRET
|
||||
https://wiki.gnome.org/Libsecret
|
||||
|
||||
comment "libsecret needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
31
package/libsigsegv/libsigsegv-0002-fix-aarch64-build.patch
Normal file
31
package/libsigsegv/libsigsegv-0002-fix-aarch64-build.patch
Normal file
@@ -0,0 +1,31 @@
|
||||
From 2a2dac797cc41fb3f106c4186fc68d3e15b4ea47 Mon Sep 17 00:00:00 2001
|
||||
From: Will Newton <will.newton@linaro.org>
|
||||
Date: Tue, 28 May 2013 18:31:46 +0100
|
||||
Subject: [PATCH] m4/stack-direction.m4: AArch64 stack grows down.
|
||||
|
||||
Submitted-Upstream: https://lists.gnu.org/archive/html/bug-libsigsegv/2013-05/msg00001.html
|
||||
|
||||
ChangeLog:
|
||||
|
||||
2013-05-28 Will Newton <will.newton@linaro.org>
|
||||
|
||||
* m4/stack-direction.m4: AArch64 stack grows down.
|
||||
---
|
||||
m4/stack-direction.m4 | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/m4/stack-direction.m4 b/m4/stack-direction.m4
|
||||
index 00e0445..890b77e 100644
|
||||
--- a/m4/stack-direction.m4
|
||||
+++ b/m4/stack-direction.m4
|
||||
@@ -13,6 +13,7 @@ AC_DEFUN([SV_STACK_DIRECTION],
|
||||
case "$host_cpu" in
|
||||
dnl See the #define STACK_GROWS_DOWNWARD in gcc-3.1/gcc/config/*/*.h.
|
||||
a29k | \
|
||||
+ aarch64* | \
|
||||
alpha* | \
|
||||
arc | \
|
||||
arm* | strongarm* | xscale* | \
|
||||
--
|
||||
1.8.1.4
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBSOUP
|
||||
bool "libsoup"
|
||||
depends on BR2_USE_WCHAR # glib2 and gnutls
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_SQLITE
|
||||
@@ -24,4 +25,5 @@ config BR2_PACKAGE_LIBSOUP_SSL
|
||||
endif
|
||||
|
||||
comment "libsoup needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -15,14 +15,19 @@ LIBVNCSERVER_CONFIG_SCRIPTS = libvncserver-config
|
||||
# only used for examples
|
||||
LIBVNCSERVER_CONF_OPT += --with-sdl-config=/bin/false
|
||||
|
||||
ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
LIBVNCSERVER_CONF_OPT += --without-pthread
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_INET_IPV6),y)
|
||||
LIBVNCSERVER_CONF_OPT += --without-ipv6
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
# openssl supports needs pthread
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL)$(BR2_TOOLCHAIN_HAS_THREADS),yy)
|
||||
LIBVNCSERVER_DEPENDENCIES += openssl
|
||||
else
|
||||
LIBVNCSERVER_CONF_OPT += --without-crypto
|
||||
LIBVNCSERVER_CONF_OPT += --without-crypto --without-ssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
|
||||
@@ -83,14 +83,14 @@ config BR2_DEFAULT_KERNEL_HEADERS
|
||||
default "3.1.10" if BR2_KERNEL_HEADERS_3_1
|
||||
default "3.2.52" if BR2_KERNEL_HEADERS_3_2
|
||||
default "3.3.8" if BR2_KERNEL_HEADERS_3_3
|
||||
default "3.4.68" if BR2_KERNEL_HEADERS_3_4
|
||||
default "3.4.70" if BR2_KERNEL_HEADERS_3_4
|
||||
default "3.5.7" if BR2_KERNEL_HEADERS_3_5
|
||||
default "3.6.11" if BR2_KERNEL_HEADERS_3_6
|
||||
default "3.7.10" if BR2_KERNEL_HEADERS_3_7
|
||||
default "3.8.13" if BR2_KERNEL_HEADERS_3_8
|
||||
default "3.9.11" if BR2_KERNEL_HEADERS_3_9
|
||||
default "3.10.18" if BR2_KERNEL_HEADERS_3_10
|
||||
default "3.11.7" if BR2_KERNEL_HEADERS_3_11
|
||||
default "3.12" if BR2_KERNEL_HEADERS_3_12
|
||||
default "3.10.20" if BR2_KERNEL_HEADERS_3_10
|
||||
default "3.11.9" if BR2_KERNEL_HEADERS_3_11
|
||||
default "3.12.1" if BR2_KERNEL_HEADERS_3_12
|
||||
default "2.6" if BR2_KERNEL_HEADERS_SNAP
|
||||
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
|
||||
|
||||
@@ -4,12 +4,10 @@ config BR2_PACKAGE_LTTNG_BABELTRACE
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
# libglib2 needs thread support and gettext which needs wchar support, and
|
||||
# we also depends on util-linux which needs wchar
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
# util-linux depends on largefile support
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_USE_WCHAR # libglib2, util-linux
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on BR2_LARGEFILE # util-linux
|
||||
help
|
||||
Babeltrace is part of the LTTng 2.x project.
|
||||
|
||||
@@ -29,4 +27,5 @@ config BR2_PACKAGE_LTTNG_BABELTRACE
|
||||
|
||||
comment "lttng-babeltrace needs a toolchain w/ wchar, threads, largefile"
|
||||
depends on BR2_PACKAGE_LTTNG_TOOLS
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -3,7 +3,9 @@ config BR2_PACKAGE_LXC
|
||||
select BR2_PACKAGE_LIBCAP
|
||||
depends on BR2_INET_IPV6
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_avr32 # no timerfd
|
||||
help
|
||||
Linux Containers (LXC), provides the ability to group and isolate
|
||||
of a set of processes in a jail by virtualizing and accounting the
|
||||
@@ -11,6 +13,7 @@ config BR2_PACKAGE_LXC
|
||||
|
||||
http://lxc.sourceforge.net/
|
||||
|
||||
comment "lxc needs a toolchain w/ IPv6, threads"
|
||||
comment "lxc needs a toolchain w/ IPv6, threads, largefile"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_avr32 # no timerfd
|
||||
depends on !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_LARGEFILE
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_MDADM
|
||||
bool "mdadm"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Utility for managing Linux Software RAID arrays.
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ NAME=mongoose
|
||||
DESC="Mongoose HTTP server"
|
||||
|
||||
DAEMON=`which mongoose`
|
||||
OPTIONS="-max_threads 3 -root /var/www -ports 80"
|
||||
OPTIONS="-num_threads 3 -document_root /var/www -listening_ports 80"
|
||||
|
||||
[ -e /etc/default/mongoose ] && . /etc/default/mongoose
|
||||
|
||||
@@ -28,12 +28,12 @@ case "$1" in
|
||||
restart|force-reload)
|
||||
echo -n "Restarting $DESC: "
|
||||
start-stop-daemon -K -x "$DAEMON"
|
||||
sleep 1
|
||||
start-stop-daemon -S -x "$DAEMON" -b -- $OPTIONS
|
||||
echo "$NAME."
|
||||
;;
|
||||
*)
|
||||
N=/etc/init.d/$NAME
|
||||
echo "Usage: $N {start|stop|restart|force-reload}" >&2
|
||||
echo "Usage: $0 {start|stop|restart|force-reload}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -3,6 +3,7 @@ menuconfig BR2_PACKAGE_MPD
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
select BR2_PACKAGE_MPD_TREMOR if !(BR2_PACKAGE_MPD_MAD || BR2_PACKAGE_MPD_MPG123 || BR2_PACKAGE_MPD_VORBIS || BR2_PACKAGE_MPD_WAVPACK || BR2_PACKAGE_MPD_FLAC || BR2_PACKAGE_MPD_MUSEPACK || BR2_PACKAGE_MPD_FFMPEG)
|
||||
@@ -183,5 +184,6 @@ config BR2_PACKAGE_MPD_WAVPACK
|
||||
endif
|
||||
|
||||
comment "mpd needs a toolchain w/ C++, threads, wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -13,6 +13,12 @@ NANO_CONF_OPT = --without-slang
|
||||
NANO_CONF_ENV = ac_cv_prog_NCURSESW_CONFIG=false
|
||||
NANO_DEPENDENCIES = ncurses
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FILE),y)
|
||||
NANO_DEPENDENCIES += file
|
||||
else
|
||||
NANO_CONF_ENV += ac_cv_lib_magic_magic_open=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NANO_TINY),y)
|
||||
NANO_CONF_OPT += --enable-tiny
|
||||
endif
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_NBD
|
||||
bool "nbd"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
NBD is a set of utilities to configure network block devices,
|
||||
@@ -25,4 +26,5 @@ config BR2_NBD_SERVER
|
||||
endif
|
||||
|
||||
comment "nbd needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -2,7 +2,7 @@ config BR2_PACKAGE_NEARD
|
||||
bool "neard"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl, dbus, libglib2
|
||||
depends on BR2_USE_MMU # dbus
|
||||
depends on BR2_USE_MMU # dbus, libglib2
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_LIBNL
|
||||
|
||||
@@ -48,6 +48,14 @@ else
|
||||
NUT_CONF_OPT += --without-cgi
|
||||
endif
|
||||
|
||||
# libltdl (libtool) is needed for nut-scanner
|
||||
ifeq ($(BR2_PACKAGE_LIBTOOL),y)
|
||||
NUT_DEPENDENCIES += libtool
|
||||
NUT_CONF_OPT += --with-libltdl
|
||||
else
|
||||
NUT_CONF_OPT += --without-libltdl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBUSB_COMPAT),y)
|
||||
NUT_DEPENDENCIES += libusb-compat
|
||||
NUT_CONF_OPT += --with-usb
|
||||
|
||||
@@ -2,7 +2,8 @@ config BR2_PACKAGE_OFONO
|
||||
bool "ofono"
|
||||
depends on BR2_USE_WCHAR # gettext, libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
|
||||
depends on BR2_USE_MMU # dbus
|
||||
depends on BR2_USE_MMU # dbus, libglib2
|
||||
depends on !BR2_avr32 # libcap-ng
|
||||
select BR2_PACKAGE_LIBCAP_NG
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
@@ -15,5 +16,6 @@ config BR2_PACKAGE_OFONO
|
||||
http://ofono.org/
|
||||
|
||||
comment "ofono needs a toolchain w/ wchar, threads"
|
||||
depends on !BR2_avr32
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
27
package/ola/ola-0001-fix-build-warning.patch
Normal file
27
package/ola/ola-0001-fix-build-warning.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
Fix build on 64 bits architectures
|
||||
|
||||
This upstream patch fixes a warning that, due to -Werror, is causing
|
||||
build failures on 64 bits architectures.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
|
||||
commit ea375582b0bfee93d66608ffc807078ffc48e961
|
||||
Author: Simon Newton <nomis52@gmail.com>
|
||||
Date: Wed Oct 30 09:23:49 2013 -0700
|
||||
|
||||
* Avoid a compiler warning
|
||||
|
||||
diff --git a/plugins/e131/e131/PreamblePacker.cpp b/plugins/e131/e131/PreamblePacker.cpp
|
||||
index ef29e18..8dfcc72 100644
|
||||
--- a/plugins/e131/e131/PreamblePacker.cpp
|
||||
+++ b/plugins/e131/e131/PreamblePacker.cpp
|
||||
@@ -77,7 +77,8 @@ const uint8_t *PreamblePacker::Pack(const PDUBlock<PDU> &pdu_block,
|
||||
if (!m_send_buffer)
|
||||
Init();
|
||||
|
||||
- unsigned int size = MAX_DATAGRAM_SIZE - sizeof(ACN_HEADER);
|
||||
+ unsigned int size = MAX_DATAGRAM_SIZE -
|
||||
+ static_cast<unsigned int>(sizeof(ACN_HEADER));
|
||||
if (!pdu_block.Pack(m_send_buffer + sizeof(ACN_HEADER), &size)) {
|
||||
OLA_WARN << "Failed to pack E1.31 PDU";
|
||||
return NULL;
|
||||
@@ -19,7 +19,8 @@ OLA_CONF_OPT = \
|
||||
--disable-tcmalloc \
|
||||
--disable-unittests \
|
||||
--disable-root-check \
|
||||
--disable-java-libs
|
||||
--disable-java-libs \
|
||||
--disable-fatal-warnings
|
||||
|
||||
# sets where to find python libs built for target and required by ola
|
||||
OLA_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
config BR2_PACKAGE_OMNIORB
|
||||
bool "omniorb"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
omniORB is a robust high performance CORBA ORB for C++ and Python.
|
||||
omniORB is largely CORBA 2.6 compliant. omniORB is one of only
|
||||
@@ -10,5 +11,5 @@ config BR2_PACKAGE_OMNIORB
|
||||
|
||||
http://omniorb.sourceforge.net/
|
||||
|
||||
comment "omniORB needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
||||
comment "omniORB needs a toolchain w/ C++, threads"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -73,7 +73,7 @@ define OPENSSL_CONFIGURE_CMDS
|
||||
--prefix=/usr \
|
||||
--openssldir=/etc/ssl \
|
||||
--libdir=/lib \
|
||||
threads \
|
||||
$(if $(BR2_TOOLCHAIN_HAS_THREADS),threads,no-threads) \
|
||||
$(if $(BR2_PREFER_STATIC_LIB),no-shared,shared) \
|
||||
no-idea \
|
||||
no-rc5 \
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_PANGO
|
||||
bool "pango"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_INSTALL_LIBSTDCPP # freetype support
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_EXPAT
|
||||
@@ -20,5 +21,6 @@ config BR2_PACKAGE_PANGO
|
||||
http://www.pango.org/
|
||||
|
||||
comment "pango needs a toolchain w/ wchar, threads, C++"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_INSTALL_LIBSTDCPP
|
||||
|
||||
@@ -19,4 +19,16 @@ config BR2_PACKAGE_PCRE_32
|
||||
help
|
||||
This option builds the 32-bits pcre library, i.e 'libpcre32'
|
||||
|
||||
config BR2_PACKAGE_PCRE_UTF
|
||||
bool "UTF-8/16/32 support in pcre"
|
||||
help
|
||||
This option builds the pcre library with UTF-8/16/32 support
|
||||
|
||||
config BR2_PACKAGE_PCRE_UCP
|
||||
bool "Unicode properties support in pcre"
|
||||
select BR2_PACKAGE_PCRE_UTF
|
||||
help
|
||||
This option builds the pcre library with Unicode properties
|
||||
support (implies UTF-8/16/32 support)'
|
||||
|
||||
endif
|
||||
|
||||
@@ -19,5 +19,7 @@ endif
|
||||
PCRE_CONF_OPT += --enable-pcre8
|
||||
PCRE_CONF_OPT += $(if $(BR2_PACKAGE_PCRE_16),--enable-pcre16,--disable-pcre16)
|
||||
PCRE_CONF_OPT += $(if $(BR2_PACKAGE_PCRE_32),--enable-pcre32,--disable-pcre32)
|
||||
PCRE_CONF_OPT += $(if $(BR2_PACKAGE_PCRE_UTF),--enable-utf,--disable-utf)
|
||||
PCRE_CONF_OPT += $(if $(BR2_PACKAGE_PCRE_UCP),--enable-unicode-properties,--disable-unicode-properties)
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
32
package/php/php-01-no-iconv-search.patch
Normal file
32
package/php/php-01-no-iconv-search.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
Just assume ICONV_DIR is fine since we pass the correct parameters
|
||||
to configure.
|
||||
Otherwise configure will try to guess on absolute directories and
|
||||
sometimes messes up on some weird edge conditions.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura php-5.3.27.orig/configure php-5.3.27/configure
|
||||
--- php-5.3.27.orig/configure 2013-11-26 09:33:30.874253800 -0300
|
||||
+++ php-5.3.27/configure 2013-11-26 09:41:41.495363637 -0300
|
||||
@@ -48212,20 +48212,7 @@
|
||||
|
||||
|
||||
if test "$iconv_avail" != "no"; then
|
||||
- if test -z "$ICONV_DIR"; then
|
||||
- for i in /usr/local /usr; do
|
||||
- if test -f "$i/include/iconv.h" || test -f "$i/include/giconv.h"; then
|
||||
- PHP_ICONV_PREFIX="$i"
|
||||
- break
|
||||
- fi
|
||||
- done
|
||||
- if test -z "$PHP_ICONV_PREFIX"; then
|
||||
- PHP_ICONV_PREFIX="/usr"
|
||||
- fi
|
||||
- else
|
||||
- PHP_ICONV_PREFIX="$ICONV_DIR"
|
||||
- fi
|
||||
-
|
||||
+ PHP_ICONV_PREFIX="$ICONV_DIR"
|
||||
CFLAGS="-I$PHP_ICONV_PREFIX/include $CFLAGS"
|
||||
LDFLAGS="-L$PHP_ICONV_PREFIX/$PHP_LIBDIR $LDFLAGS"
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
Don't push LDFLAGS/CFLAGS for iconv.
|
||||
Just assume they're covered somewhere else.
|
||||
Otherwise we get -L/usr/lib and -I/usr/include search paths with uClibc
|
||||
internal iconv support, which breaks things.
|
||||
|
||||
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||
|
||||
diff -Nura php-5.3.13/configure php-5.3.13-iconv/configure
|
||||
--- php-5.3.13/configure 2012-05-08 06:41:23.000000000 -0300
|
||||
+++ php-5.3.13-iconv/configure 2012-05-18 22:18:21.313975849 -0300
|
||||
@@ -47885,8 +47885,8 @@
|
||||
PHP_ICONV_PREFIX="$ICONV_DIR"
|
||||
fi
|
||||
|
||||
- CFLAGS="-I$PHP_ICONV_PREFIX/include $CFLAGS"
|
||||
- LDFLAGS="-L$PHP_ICONV_PREFIX/$PHP_LIBDIR $LDFLAGS"
|
||||
+ #CFLAGS="-I$PHP_ICONV_PREFIX/include $CFLAGS"
|
||||
+ #LDFLAGS="-L$PHP_ICONV_PREFIX/$PHP_LIBDIR $LDFLAGS"
|
||||
|
||||
if test -r "$PHP_ICONV_PREFIX/include/giconv.h"; then
|
||||
PHP_ICONV_H_PATH="$PHP_ICONV_PREFIX/include/giconv.h"
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_PKG_CONFIG
|
||||
bool "pkg-config"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
depends on BR2_DEPRECATED
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
@@ -14,4 +15,5 @@ config BR2_PACKAGE_PKG_CONFIG
|
||||
|
||||
comment "pkg-config needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_DEPRECATED
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -34,6 +34,11 @@ ifeq ($(LIBC),uclibc)
|
||||
POCO_CONF_OPT += --no-fpenvironment --no-wstring
|
||||
endif
|
||||
|
||||
# sh4a is missing FE_DOWNWARD and FE_UPWARD in its fenv.h
|
||||
ifeq ($(BR2_sh4a),y)
|
||||
POCO_CONF_OPT += --no-fpenvironment
|
||||
endif
|
||||
|
||||
define POCO_CONFIGURE_CMDS
|
||||
(cd $(@D); ./configure \
|
||||
--config=Linux-CrossEnv \
|
||||
|
||||
@@ -2,6 +2,7 @@ config BR2_PACKAGE_POLKIT
|
||||
bool "polkit"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_EXPAT
|
||||
help
|
||||
@@ -12,4 +13,5 @@ config BR2_PACKAGE_POLKIT
|
||||
http://www.freedesktop.org/wiki/Software/polkit
|
||||
|
||||
comment "polkit needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
@@ -8,6 +8,7 @@ PROTOBUF_C_VERSION = 0.15
|
||||
PROTOBUF_C_SITE = http://protobuf-c.googlecode.com/files
|
||||
PROTOBUF_C_DEPENDENCIES = protobuf host-protobuf-c
|
||||
HOST_PROTOBUF_C_DEPENDENCIES = host-protobuf
|
||||
PROTOBUF_C_MAKE = $(MAKE1)
|
||||
PROTOBUF_C_CONF_OPT = --disable-protoc
|
||||
PROTOBUF_C_INSTALL_STAGING = YES
|
||||
PROTOBUF_C_LICENSE = BSD-3c
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_PV
|
||||
bool "pv"
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
help
|
||||
Pipe Viewer - is a terminal-based tool for
|
||||
monitoring the progress of data through a
|
||||
|
||||
@@ -9,6 +9,7 @@ PV_SOURCE = pv-$(PV_VERSION).tar.bz2
|
||||
PV_SITE = http://www.ivarch.com/programs/sources
|
||||
PV_LICENSE = Artistic-2.0
|
||||
PV_LICENSE_FILES = doc/COPYING
|
||||
PV_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
||||
|
||||
# While 'pv' uses autoconf, it does not use automake for its
|
||||
# makefiles. It uses $(LD) $(LDFLAGS) to achieve partial linking, but
|
||||
@@ -17,7 +18,7 @@ PV_LICENSE_FILES = doc/COPYING
|
||||
# the correct one. By passing the below values for LD and LDFLAGS, we
|
||||
# ensure that 'gcc' is used to do these partial linking steps.
|
||||
PV_MAKE_OPT = \
|
||||
LD=$(TARGET_CC) \
|
||||
LD="$(TARGET_CC)" \
|
||||
LDFLAGS="-Wl,-r -nostdlib"
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
@@ -136,12 +136,11 @@ diff --git a/src/3rdparty/sqlite.pri b/src/3rdparty/sqlite.pri
|
||||
index 58d4ddd..072502c 100644
|
||||
--- a/src/3rdparty/sqlite.pri
|
||||
+++ b/src/3rdparty/sqlite.pri
|
||||
@@ -1,6 +1,7 @@
|
||||
@@ -1,5 +1,6 @@
|
||||
CONFIG(release, debug|release):DEFINES *= NDEBUG
|
||||
DEFINES += SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS3_PARENTHESIS SQLITE_ENABLE_RTREE
|
||||
!contains(CONFIG, largefile):DEFINES += SQLITE_DISABLE_LFS
|
||||
+contains(QT_CONFIG, posix_fallocate):DEFINES += HAVE_POSIX_FALLOCATE=1
|
||||
winrt: DEFINES += SQLITE_OS_WINRT
|
||||
INCLUDEPATH += $$PWD/sqlite
|
||||
SOURCES += $$PWD/sqlite/sqlite3.c
|
||||
diff --git a/src/3rdparty/sqlite/sqlite3.c b/src/3rdparty/sqlite/sqlite3.c
|
||||
|
||||
29
package/qt5/qt5base/qt5base-0008-qatomic-ppc.patch
Normal file
29
package/qt5/qt5base/qt5base-0008-qatomic-ppc.patch
Normal file
@@ -0,0 +1,29 @@
|
||||
Set loadAcquire() as const
|
||||
|
||||
Fixes powerpc build.
|
||||
|
||||
Fetched-from: https://bugzilla.redhat.com/attachment.cgi?id=812643
|
||||
Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com>
|
||||
|
||||
Index: qtbase-opensource-src-5.1.1/src/corelib/thread/qoldbasicatomic.h
|
||||
===================================================================
|
||||
--- qtbase-opensource-src-5.1.1.orig/src/corelib/thread/qoldbasicatomic.h
|
||||
+++ qtbase-opensource-src-5.1.1/src/corelib/thread/qoldbasicatomic.h
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
// Atomic API, implemented in qatomic_XXX.h
|
||||
|
||||
int load() const { return _q_value; }
|
||||
- int loadAcquire() { return _q_value; }
|
||||
+ int loadAcquire() const { return _q_value; }
|
||||
void store(int newValue) { _q_value = newValue; }
|
||||
void storeRelease(int newValue) { _q_value = newValue; }
|
||||
|
||||
@@ -107,7 +107,7 @@ public:
|
||||
// Atomic API, implemented in qatomic_XXX.h
|
||||
|
||||
T *load() const { return _q_value; }
|
||||
- T *loadAcquire() { return _q_value; }
|
||||
+ T *loadAcquire() const { return _q_value; }
|
||||
void store(T *newValue) { _q_value = newValue; }
|
||||
void storeRelease(T *newValue) { _q_value = newValue; }
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
config BR2_PACKAGE_RUBY
|
||||
bool "ruby"
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
Object Oriented Scripting Language.
|
||||
|
||||
http://www.ruby-lang.org/
|
||||
|
||||
comment "ruby needs a toolchain w/ wchar"
|
||||
depends on !BR2_USE_WCHAR
|
||||
comment "ruby needs a toolchain w/ wchar, threads"
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user