diff options
author | davidjchou <david.j.chou@intel.com> | 2016-06-14 08:04:29 -0700 |
---|---|---|
committer | davidjchou <david.j.chou@intel.com> | 2016-06-20 10:43:56 -0700 |
commit | c715b6029fd5b4eaf323f5efde4ec5db5ba0a9b4 (patch) | |
tree | 65c983f09e458ad199d8ff5bff3233e3110b9cb4 /fuel-plugin/Dockerfile | |
parent | d746fed82003b740680434c09655d7d5e7108994 (diff) |
Rebase fuel-plugin for kvmfornfv to fuel 9.0
1. Uplifit fuel-plugin for kvmfornfv to fuel 9.0 due to that fuel 9.0 will be the
deployment tool of OPNFV Colorado release.
2. Fixed quirk for kernel.
3. Added all tools and libs for building OVS module.
4. Allow KVM developer to build fuel-plugin-kvm after they modify the kerenl
code without commiting their change into the repo first. So, they can test
their code change by fuel-plugin-kvm till they satisfy with their change,
then commit to the repo.
5. The final code built into OPNFV fuel iso will depend on the commit ID for
kvmfornfv speicifed in fuel for OPNFV source tree.
Change-Id: Iaf9ff49c69df374d0757884cfdac4cccee3eebe4
Signed-off-by: davidjchou <david.j.chou@intel.com>
Diffstat (limited to 'fuel-plugin/Dockerfile')
-rw-r--r-- | fuel-plugin/Dockerfile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fuel-plugin/Dockerfile b/fuel-plugin/Dockerfile index b71a09271..ef2e90b65 100644 --- a/fuel-plugin/Dockerfile +++ b/fuel-plugin/Dockerfile @@ -1,10 +1,5 @@ #!/bin/bash FROM ubuntu:14.04.3 -RUN apt-get update -RUN apt-get install -y git fakeroot build-essential ncurses-dev xz-utils kernel-package bc autoconf RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo RUN chmod 0440 /etc/sudoers.d/open-sudo -ADD ./build_kvm.sh /root/build_kvm.sh -RUN chmod +x /root/build_kvm.sh -RUN /root/build_kvm.sh |