diff options
author | Sam <33001794+SamLue@users.noreply.github.com> | 2024-06-05 09:47:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 09:47:44 +0200 |
commit | 2a181d631d7d03e4ec91c9cb4cf9d1cd353efda9 (patch) | |
tree | 24a12372fe333e9e604e4bb76bfd94fefd5576f2 /docs | |
parent | c7adcd66b8bcef54d2eccef1036176530945a998 (diff) | |
download | vyos-documentation-2a181d631d7d03e4ec91c9cb4cf9d1cd353efda9.tar.gz vyos-documentation-2a181d631d7d03e4ec91c9cb4cf9d1cd353efda9.zip |
Changed parameter flavor from iso to generic for 1.5 (circinus, current)
The flavor has been renamed in this branch.
https://vyos.dev/T6414
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing/build-vyos.rst | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/contributing/build-vyos.rst b/docs/contributing/build-vyos.rst index 16eb8ac7..55be147b 100644 --- a/docs/contributing/build-vyos.rst +++ b/docs/contributing/build-vyos.rst @@ -65,10 +65,14 @@ To start, clone the repository to your local machine: $ ./configure --architecture amd64 --build-by "j.randomhacker@vyos.io" $ sudo make iso - # For VyOS 1.4 (sagitta) and VyOS 1.5 (circinus,current) + # For VyOS 1.4 (sagitta) $ sudo make clean $ sudo ./build-vyos-image iso --architecture amd64 --build-by "j.randomhacker@vyos.io" + # For VyOS 1.5 (circinus,current) + $ sudo make clean + $ sudo ./build-vyos-image generic --architecture amd64 --build-by "j.randomhacker@vyos.io" + For the packages required, you can refer to the ``docker/Dockerfile`` file in the repository_. The ``./build-vyos-image`` script will also warn you if any dependencies are missing. @@ -274,10 +278,14 @@ Start the build: vyos_bld@8153428c7e1f:/vyos$ ./configure --architecture amd64 --build-by "j.randomhacker@vyos.io" vyos_bld@8153428c7e1f:/vyos$ sudo make iso - # For VyOS 1.4 (sagitta) For VyOS 1.5 (circinus,current) + # For VyOS 1.4 (sagitta) vyos_bld@8153428c7e1f:/vyos$ sudo make clean vyos_bld@8153428c7e1f:/vyos$ sudo ./build-vyos-image iso --architecture amd64 --build-by "j.randomhacker@vyos.io" + # For VyOS 1.5 (circinus,current) + vyos_bld@8153428c7e1f:/vyos$ sudo make clean + vyos_bld@8153428c7e1f:/vyos$ sudo ./build-vyos-image generic --architecture amd64 --build-by "j.randomhacker@vyos.io" + When the build is successful, the resulting iso can be found inside the ``build`` directory as ``live-image-[architecture].hybrid.iso``. |