summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use glibc instead of eglibcbaserock/pedroalvarez/glibc2Pedro Alvarez2014-10-283-67/+81
|
* Add fake-bash before eglibcPedro Alvarez2014-10-282-0/+12
|
* Update lsof to latest versionPedro Alvarez2014-10-281-2/+2
|
* Update syslinux to work with glibc-2.20Pedro Alvarez2014-10-283-6/+3
|
* Update patch to for new glibcPedro Alvarez2014-10-281-2/+1
|
* Update bison to work with glibcPedro Alvarez2014-10-281-1/+1
|
* Update m4 to work with glibcPedro Alvarez2014-10-281-2/+1
|
* Merge branch 'baserock/sam/fix-build-system-deploy'Sam Thursfield2014-10-272-28/+39
|\ | | | | | | | | Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: Paul Sherwood <paul.sherwood@codethink.co.uk>
| * Allow mason.configure to be enabled without requiring configurationSam Thursfield2014-10-271-19/+29
| | | | | | | | | | | | If none of the MASON_ options are set then mason.configure will now do nothing, instead of raising an error. This is needed because mason.configure is enabled by default in the build-system.
| * Allow distbuild.configure to be enabled without requiring configurationSam Thursfield2014-10-271-9/+10
|/ | | | | | | | Previously if you enabled distbuild.configure but didn't set all of the required variables, your deployment would fail. This has become much more annoying with the introduction of the build-system family of systems, which are indented to be suitable either as a local builder or part of a distbuild network.
* Update Morph for branch baserock/ps/message-fixSam Thursfield2014-10-271-1/+1
|
* Update Morph to include branch sam/build-fix-2Sam Thursfield2014-10-271-1/+1
|
* Merge branch 'baserock/adamcoldrick/mason-openstack-rebased'Adam Coldrick2014-10-2711-7/+707
|\ | | | | | | | | Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk>
| * Add a system and cluster for Mason on OpenStackbaserock/adamcoldrick/mason-openstack-rebasedAdam Coldrick2014-10-272-0/+74
| | | | | | | | | | | | This could be improved in future by combining the cluster morphology with the existing one, and mason/mason-generator.sh being improved to allow choice between OpenStack and KVM.
| * Stop mason.service starting before mason-setup.service has completedAdam Coldrick2014-10-272-1/+1
| |
| * Use Ansible to generate config for OpenStackAdam Coldrick2014-10-274-6/+44
| |
| * Move os-init-script out of /rootAdam Coldrick2014-10-271-1/+1
| |
| * Make mason.conf contain everything it needs toAdam Coldrick2014-10-274-3/+15
| | | | | | | | | | | | | | This adds TEST_INFRASTRUCTURE_TYPE and OPENSTACK_NETWORK_ID to mason.conf, as well as ending the confusion of using both MASON_TEST_HOST and TEST_VM_HOST_SSH_URL to mean the same thing in different places.
| * Stop assuming that known_hosts exists, and fix a typoAdam Coldrick2014-10-272-1/+5
| |
| * Mason: Provide moving parts needed for testing on OpenStackMichael Drake2014-10-274-5/+577
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Testing currently involves building a Baserock devel system, deploying it as a VM and testing that that deployed VM can build Baserock successfully. Originally Mason used scripts/release-test to do testing on a kvm host. In this patch the bits needed to do testing on an OpenStack host are provided. The new scripts/release-test-os script is based on the old scripts/release-test, and it uses `nova` to boot/delete/etc images and instances on OpenStack. The mason script, `mason.sh` is updated to optionally run either scripts/release-test-os or scripts/release-test, depending on whether TEST_INFRASTRUCTURE_TYPE is set to 'openstack' or 'kvmhost' in the Mason's mason.conf. The `os.conf` file is sourced by `mason.sh`, and should be updated to contain the relevant credentials and details for the OpenStack tenancy to be used for test deployments. When Mason creates a test OpenStack instance, there is potential for a race condition depending on whether ssh comes up before the cloud-init has finished resizing the instance's disc. If morph running on the test instance tries to build before the disc size is increased, it will fail complaining of insufficient free space. To eliminate this race, the cloud init script `os-init-script` is passed to `nova boot`. This touches a file after the disc is resized, which Mason checks for before it runs a `morph build`. The `os.conf` and `os-init-script` files must both be placed in the Mason system's `/root/` directory before the system is deployed. This should happen in the `mason.configure` configuration extension. The `mason.configure` configuration extension should also be updated to handle adding two extra variables to the `mason.conf` file. These are the aforementioned TEST_INFRASTRUCTURE_TYPE and OPENSTACK_NETWORK_ID, which is the ID for the configured OpenStack network that test instances should use.
* strata/mesa-common: Update mesa to latest stabel version (10.3.2)Javier Jardón2014-10-251-2/+2
|
* Update cmdtest for parallel yarn runnerRichard Maw2014-10-242-2/+2
|
* Merge remote-tracking branch 'origin/baserock/sam/build-and-devel-systems'Sam Thursfield2014-10-2428-76/+226
|\ | | | | | | | | Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
| * Remove GENIVI devel system strata from x86_64 Vagrant devel systemSam Thursfield2014-10-221-18/+0
| | | | | | | | | | | | | | These strata used to be in all devel systems and were removed. The only extra component that a system needs to be a Vagrant basebox is the VirtualBox Guest Additions, which are in the virtualbox-guest-x86_64 stratum.
| * Add node.js and Ruby to devel systemsSam Thursfield2014-10-2215-0/+60
| | | | | | | | | | | | | | These are dependencies of the Baserock Import tool. The import tool will be added to the devel system later, in a separate branch. This increases the size of an x86_32 devel system from 1.1GB to 1.2GB.
| * Release build-system rather than devel-systemSam Thursfield2014-10-221-14/+14
| | | | | | | | | | | | | | The build-system is equivalent in functionality to the current devel-system that we release, but this change allows us to add more components to the devel-system without increasing the amount of bytes we have to arrange and transfer when making a release.
| * Add chroot variants of the build-systemsSam Thursfield2014-10-222-0/+62
| | | | | | | | | | These take the place of the devel system chroots that we released previously, and should be functionally equivalent.
| * Change descriptions of devel systemsSam Thursfield2014-10-2217-31/+77
| | | | | | | | | | | | The 'build' system is now the recommended way of building other systems, with 'devel' being a larger variant of 'build' that may be useful when doing development and integration, in addition to building and deployment.
| * Rename 'distbuild' system to 'build', and fix descriptionsSam Thursfield2014-10-228-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's better to have one type of system that can do either distributed or local builds than to have separate ones that must both be kept up to date with changes. The need for a separate 'distbuild' stratum went already: commit 1a7fbedf56a4c7a6afb683851dde5d34bbb48b86 Author: Richard Maw <richard.maw@codethink.co.uk> Date: Thu Oct 2 14:16:00 2014 +0000 Split morph out of tools morph now contains distbuild and morph-cache-server, so the distbuild stratum can go away, and anything that needs it can now use morph.
* | Merge remote-tracking branch 'origin/baserock/pedroalvarez/release-14.40-fixes'Sam Thursfield2014-10-242-4/+7
|\ \ | | | | | | | | | | | | | | | Reviewed-By: Pedro Alvarez <pedro.alvarez@codethink.co.uk> Reviewed-By: Richard Maw <richard.maw@codethink.co.uk> Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk>
| * | Fix KERNEL_ARGS in the jetson devel systembaserock/pedroalvarez/release-14.40-fixesPedro Alvarez2014-10-111-1/+1
| | |
| * | Amend system deploy keyRichard Ipsum2014-10-111-1/+1
| | |
| * | Add DTB_PATH and BOOTLOADER config items to jetson releaseJames Thomas2014-10-111-0/+3
| | |
| * | Downgrade uboot in devel bspRichard Ipsum2014-10-111-2/+2
| | | | | | | | | | | | This partially reverts ced256bda95f184361815a6444d752ee10d86d02
* | | Merge branch 'baserock/sam/ruby-build-deps'Sam Thursfield2014-10-243-1/+52
|\ \ \ | | | | | | | | | | | | | | | | Reviewed-By: Adam Coldrick <adam.coldrick@codethink.co.uk> Reviewed-By: Francisco Redondo Marchena <francisco.marchena@codethink.co.uk>
| * | | Add hoe and rake-compiler to base Ruby stratumSam Thursfield2014-10-243-1/+52
| | | | | | | | | | | | | | | | Various Gems require one or other of these tools at build time.
* | | | Update lorry-controller and trove-setupPedro Alvarez2014-10-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new version of lorry-controller includes a script to remove the log of old jobs that nobody cares about. The new version of trove-setup is needed to enable a new systemd unit created in lorry-controller to run the new script.
* | | | Update morph for branch sam/fix-edit-synopsisSam Thursfield2014-10-221-1/+1
| |_|/ |/| |
* | | Update Morph for branch sam/validation-fixesSam Thursfield2014-10-171-1/+1
| | |
* | | Merge branch 'zara/nodejs'Sam Thursfield2014-10-161-24/+0
|\ \ \ | |/ / |/| | | | | | | | Reviewed-By: Pedro Alvarez <pedro.alvarez@codethink.co.uk> Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk>
| * | Fix node.js systemZara Zaimeche2014-10-161-24/+0
| | | | | | | | | | | | | | | It had lots of unneccessary stuff and wouldn't build. Have removed unneccessary stuff; is now just base system plus node.
* | | Merge branch 'baserock/jjardon/libdrm'Sam Thursfield2014-10-1413-115/+77
|\ \ \ | | | | | | | | | | | | | | | | Reviewed-By: James Thomas <james.thomas@codethink.co.uk> Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk>
| * | | Update jetson GENIVI system to use libdrm-common instead of x-commonSam Thursfield2014-10-141-2/+2
| | | |
| * | | Do not build X11 support in mesaJavier Jardón2014-10-145-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In this way we can build completely wayland-only systems The reason to do this is that cairo will pull the X11 dependency if the mesa stratum is built with X11 support (as graphics-common depens on mesa-common)
| * | | Change graphics-infra stratum name to xorg-util-macros-commonJavier Jardón2014-10-145-5/+5
| | | | | | | | | | | | | | | | | | | | As libdrm was moved to an independent stratum this only holds some macros needed to compile other strata
| * | | Split libdrm from graphics-infra stratum and create libdrm-common stratumJavier Jardón2014-10-148-20/+24
| | | | | | | | | | | | | | | | So libdrm only gets build when it's really needed
| * | | Add graphics-infra stratumJavier Jardón2014-10-149-105/+68
| |/ / | | | | | | | | | With basic infrastructure components like libdrm and xorg macros
* | | Update cmdtest for space efficient yarnRichard Maw2014-10-131-1/+1
| | |
* | | Update lorry controller to not put buttons on static pageRichard Maw2014-10-131-1/+1
| | |
* | | Update morph to include artifact resolving speedupRichard Maw2014-10-131-1/+1
|/ /