diff options
author | unixninja92 <charles@unixninja92.com> | 2018-09-02 17:25:58 -0400 |
---|---|---|
committer | unixninja92 <charles@unixninja92.com> | 2018-09-03 19:06:46 -0400 |
commit | 99185352490f5c05246c4d6d049ce973ebaef1dc (patch) | |
tree | f4c50130fc06eca1ca5436d8aa627a57bbe73f7c /README.md | |
parent | 4f7540f6f8e04352cc7f3c879fa129e9abb155de (diff) | |
download | vyos-build-99185352490f5c05246c4d6d049ce973ebaef1dc.tar.gz vyos-build-99185352490f5c05246c4d6d049ce973ebaef1dc.zip |
T556: Added packages to docker image for building qemu image and vyos-1x
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -77,8 +77,8 @@ package build scripts will tell you. ## Building the ISO image inside a docker container Using our `Dockerfile` you can create your own Docker container that can be used -to build a VyOS ISO image. The `Dockerfile` contains all of the packages needed -for the VyOS build ISO process. +to build a VyOS ISO image. The `Dockerfile` contains some of the most used +packages needed to build a VyOS ISO, a qemu image, and several of the submodules. ``` squashfs-tools # Required for squashfs file system @@ -102,6 +102,15 @@ bison # Optional, for building vyatta-cfg libperl-dev # Optional, for building vyatta-cfg libnfnetlink-dev # Optional, for building vyatta-cfg-vpn vim # Optional, vim, vi, nano or other text editor +jq # Optional, for qemu build +qemu-system-x86 # Optional, for qemu build +qemu-utils # Optional, for qemu build +packer # Optional, for qemu build +quilt # Optional, for building vyos-1x +python3-lxml # Optional, for building vyos-1x +python3-setuptools # Optional, for building vyos-1x +python3-nose # Optional, for building vyos-1x +python3-coverage # Optional, for building vyos-1x ``` To build the docker image: @@ -117,7 +126,7 @@ docker run -it --privileged -v /HOST_PATH_OF_VYOS_BUILD_REPO:/vyos -w="/vyos" vy ``` This will drop you into a bash shell with this vyos-build repo mounted at /vyos. -Then follow the instructions bellow to build the VyOS iso. +Then follow the instructions bellow to build the VyOS iso and qemu image. ### MacOS and Windows |