diff options
author | Tom Rini | 2017-02-26 15:23:18 -0500 |
---|---|---|
committer | Tom Rini | 2017-02-26 15:25:30 -0500 |
commit | a0f3e3df4adc451bf56159c0672e570f9c934ee8 (patch) | |
tree | 9c851000bdfa7957c5602b73c5d48c9a37549049 /.travis.yml | |
parent | 87fcdca6be8641d8aa7c4e31ccb6cb7d5177359e (diff) |
travis-ci: Temporarily disable using a newer device tree compiler
For a long while dtc has warned about various constructs. This is now
leading to log file size being exceeded in travis, and as the majority
of these errors need to be fixed in the kernel, switch to using the
stock device-tree-compiler package.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 48b7b101f1c..8333fae9b33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,11 +28,12 @@ addons: - grub-efi-ia32-bin - rpm2cpio - wget + - device-tree-compiler install: # install latest device tree compiler - - git clone --depth=1 git://git.kernel.org/pub/scm/utils/dtc/dtc.git /tmp/dtc - - make -j4 -C /tmp/dtc + #- git clone --depth=1 git://git.kernel.org/pub/scm/utils/dtc/dtc.git /tmp/dtc + #- make -j4 -C /tmp/dtc # Clone uboot-test-hooks - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname` |