summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* core: Update to latest git (v2.1.3)baserock/jjardon/gitJavier Jardón2014-11-132-5/+6
|
* Merge branch 'baserock/pedroalvarez/linux-pam'Pedro Alvarez2014-11-131-2/+2
|\ | | | | | | | | | | Reviewed-by: - Paul Sherwood - Adam Coldrick
| * Upgrade linux-pam to 1.1.8 to be glibc compatiblebaserock/pedroalvarez/linux-pamPedro Alvarez2014-11-131-2/+2
|/
* Merge branch 'baserock/pedroalvarez/bison-version'My Name2014-11-121-0/+1
|\ | | | | | | | | | | | | | | | | Reviewed-by: - Paul Sherwood - Francisco Redondo Marchena Notes: Author: Pedro Alvarez <pedro.alvarez@codethink.co.uk>
| * Generate .tarball-version in bisonMy Name2014-11-121-0/+1
|/ | | | | | | | | | | | | The version number of bison appends a part of the sha1 of the commit which is being built. This was causing failures in the autoconf when building gstreamer given that it tries to compare the version number of bison. This is a *workaround* to generate a clean version number of bison. Notes: Author: Pedro Alvarez <pedro.alvarez@codethink.co.uk>
* Sometimes localhost doesn't resolve, so force 127.0.0.1Paul Sherwood2014-11-122-2/+2
| | | | | | | | | | | Sometimes localhost does not resolve, which makes rsync to root@localhost fail during upgrades with: ERROR: ssh-rsync.check failed with code 1: ERROR: Unable to SSH to root@localhost: Command failed: ssh root@localhost -- true ssh: connect to host localhost port 22: Connection timed out So let's set the default to 127.0.0.1, which should always work.
* Merge remote-tracking branch 'origin/baserock/richardmaw/split-out-lighttpd'Richard Maw2014-11-129-20/+38
|\ | | | | | | | | | | Reviewed-by: Adam Coldrick Reviewed-by: Tom Pollard Reviewed-by: Pedro Alvarez
| * Add lighttpd to web systembaserock/richardmaw/split-out-lighttpdRichard Maw2014-11-101-0/+2
| |
| * Move lighttpd out of trove.morphRichard Maw2014-11-104-6/+15
| | | | | | | | | | It would be nice to in-line the lighttpd morphology, but we can't do that yet.
| * Split PCRE out into its own stratumRichard Maw2014-11-107-15/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | We need PCRE in multiple places, so rather than having multiple definitions, and potentially differing versions, let's use the same one from its own stratum. The need to add the stratum entry into the systems is annoying, and could probably do with a way of specifying that a stratum includes another, rather than just depends on it. Also, it seems a bit weird to have a stratum with only one chunk in it, but I can't think of a better way.
* | Merge branch 'baserock/jjardon/coreutils'Javier Jardón2014-11-117-23/+34
|\ \ | | | | | | | | | | | | | | | Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk> Reviewed-By: Paul Sherwood <paul.sherwood@codethink.co.uk> Reviewed-By: Richard Maw <richard.maw@codethink.co.uk>
| * | Move "patch" to strata/core from strata/coreutils-commonbaserock/jjardon/coreutilsJavier Jardón2014-11-113-8/+9
| | |
| * | strata/foundation: Make it depend on coreutils-commonJavier Jardón2014-11-112-2/+3
| | |
| * | patch.morph: Install binaries in default locationJavier Jardón2014-11-111-1/+1
| | |
| * | coreutils.morph: Do not disable coreutils binariesJavier Jardón2014-11-111-1/+1
| | | | | | | | | | | | | | | This fixes compilation problems with several modules, like modern versions of systemd
| * | Move coreutils to its own stratumJavier Jardón2014-11-115-12/+21
|/ /
* | Merge branch 'baserock/pedroalvarez/glibc10'Pedro Alvarez2014-11-1110-129/+168
|\ \ | | | | | | | | | | | | | | | | | | Reviewed-by: - Sam Thursfield - Richard Maw - Javier Jardon
| * | Various patches in gcc 4.6 (stage1 and stage2)baserock/pedroalvarez/glibc10Pedro Alvarez2014-11-111-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | These patches are needed to: - Support the name change of the dynamic linker in the new version of glibc. - Build gcc in x86_32. - Remove old morphology files.
| * | Various patches in gcc 4.7 (stage3)Pedro Alvarez2014-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | These patches are needed to: - Build gcc in armv7b. - Support the name change of the dynamic linker in the new version of glibc. - Remove the old morphology files.
| * | Reorder hosts in nsswitch.confPedro Alvarez2014-11-111-1/+1
| | |
| * | Use glibc instead of eglibcPedro Alvarez2014-11-114-115/+140
| | |
| * | Add stage2-fake-bash before eglibcPedro Alvarez2014-11-112-0/+14
| | | | | | | | | | | | | | | This change is to prepare the transition to glibc since the latter is going to need bash to build.
| * | Patch busybox to be glibc-2.20 compatiblePedro Alvarez2014-11-111-2/+2
| | | | | | | | | | | | | | | | | | This patch is needed because glibc rearranged its headers to not leak as many definitions unintentionally, but busybox was relying on the leaked definitions.
| * | Patch syslinux to work with glibc-2.20Pedro Alvarez2014-11-113-3/+3
| | | | | | | | | | | | | | | | | | This patch sets _DEFAULT_SOURCE when needed. This patch is included in newer versions of syslinux, but the transition is complicated.
| * | Update patch to v2.7.1Pedro Alvarez2014-11-111-2/+2
| | |
| * | Update bison to v3.0.2Pedro Alvarez2014-11-111-2/+2
| | |
| * | Patch m4 to be glibc-2.20 compatiblePedro Alvarez2014-11-111-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | m4 has a hacked up stdio.h which will give warnings when certain functions are used. One of these warnings was that 'gets' is a deprecated function. The patch removes the code that adds the warning. Presumably the new version of glibc finally got rid of it, which makes it puzzling that the deprecation warning code was failing to handle the fact that the deprecated function could have been removed.
* | Update morph for branches sam/fix-deploy and sam/source-resolver-cleanupSam Thursfield2014-11-111-1/+1
|/
* drm.morph: Enable freedreno experimental apiJavier Jardón2014-11-101-1/+1
| | | | | | | | So libdrm_freedreno.pc gets generated and the mesa driver can be build Reviewed-By: Emmet Hikory <emmet.hikory@codethink.co.uk> Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk> Reviewed-By: Pedro Alvarez <pedro.alvarez@codethink.co.uk>
* Merge branch 'baserock/ps/user-specify-target-name-v2'Pedro Alvarez2014-11-071-10/+21
|\ | | | | | | | | | | Reviewed-by: - Sam Thursfield - Pedro Alvarez
| * cycle.sh - allow user to specify target system version namePaul Sherwood2014-11-071-10/+21
|/
* Merge branch 'sam/remove-node-ppc64'Sam Thursfield2014-11-062-4/+0
|\ | | | | | | | | Reviewed-By: Pedro Alvarez <pedro.alvarez@codethink.co.uk> Reviewed-By: Paul Sherwood <paul.sherwood@codethink.co.uk>
| * Remove nodejs stratum from PPC64 devel systemsSam Thursfield2014-11-062-4/+0
|/ | | | | | | Node.js doesn't build on PPC64 at this time. It also doesn't build on big-endian ARM, but was already not in those systems.
* Update Morph for a couple of fixes to the GitDirectory classSam Thursfield2014-11-061-1/+1
|
* Update morph for branch 'baserock/pedroalvarez/upgrades-to-default'Pedro Alvarez2014-11-052-2/+2
|
* Update morph for branch franred/check-for-commit-object-in-submodule-pathFrancisco Redondo Marchena2014-11-052-2/+2
|
* Update lorry to update svn and hg config every updateRichard Maw2014-11-051-1/+1
|
* Merge branch 'baserock/jjardon/tcpwrappers'Javier Jardón2014-10-313-10/+2
|\ | | | | | | Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk>
| * strata/nfs: Do not build rpcbin and nfs-utils with tcp-wrappers supportbaserock/jjardon/tcpwrappersJavier Jardón2014-10-313-10/+2
|/ | | | | | | Upstream have not released a new version since April 1997. Additionally, newer daemons and applications are inconsistent in their support for libwrap, leading to confusion as to whether an application supports the library.
* Merge branch 'baserock/jjardon/mesa'Javier Jardón2014-10-311-18/+7
|\ | | | | | | | | Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk> Reviewed-By: Richard Maw <richard.maw@codethink.co.uk>
| * strata/mesa-common/mesa: Clean configurationbaserock/jjardon/mesaJavier Jardón2014-10-311-18/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Try to be as generic as possible and only make a few exceptions: - Only build ARM-related drivers if we are in ARM, this is: nouveau,freedreno,vc4 (and svga,swrast as fallbacks) - enable-gallium-egl only in ARM (needed by freedreno, nouveau) - For the rest of the arquitectures, the drivers to build will be the default ones, this is: - DRI: i915 i965 nouveau r200 radeon swrast - Gallium: r300 r600 svga swrast - enable GLES2 (disabled by default) - disable GLX (enabled by default) to not pull x11 deps The rest all the configure parameters will be automatically configured by the mesa's configure.ac
* | Update morph chunk for branch sam/transfer-statusSam Thursfield2014-10-311-1/+1
| |
* | Merge branch 'baserock/jjardon/clean_genivi'Javier Jardón2014-10-2913-66/+7
|\ \ | |/ |/| | | Reviewed-By: Paul Sherwood <paul.sherwood@codethink.co.uk>
| * Move linuxquota to genivi stratum and remove genivi-foundation stratumbaserock/jjardon/clean_geniviJavier Jardón2014-10-299-25/+7
| |
| * Remove genivi-x-genericJavier Jardón2014-10-295-26/+0
| | | | | | | | | | | | It only contains genivi layer_management component, but this component seems to be replaced by wayland-ivi-extension present in weston-genivi
| * Remove genivi-wayland-genericJavier Jardón2014-10-291-15/+0
|/ | | | Its not a dependency of any stratum or system
* Merge branch 'baserock/jjardon/gtk3'Javier Jardón2014-10-298-28/+30
|\ | | | | | | | | Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: James Thomas <james.thomas@codethink.co.uk>
| * gtk3: Only build wayland backendbaserock/jjardon/gtk3Javier Jardón2014-10-292-2/+1
| |
| * strata/gtk3: Upgrade to latest GTK+Javier Jardón2014-10-291-3/+4
| | | | | | | | This version adds GL support
| * strata/wayland-generic: Upgrade wayland to latest stable (1.6.0)Javier Jardón2014-10-291-2/+2
| |