summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-05-19Merge pull request #631 from c-po/frr-revert-local-patchesChristian Breunig
frr: T6250: T6283: revert local patches merged upstream
2024-05-19Revert "frr: T6283: add pending upstream patch"Christian Breunig
This reverts commit 1b61973b9143aa8a04cc7c857ec567fa962e4e43. Upstream Patch merged
2024-05-19Revert "frr: T6250: add pending upstream patch"Christian Breunig
This reverts commit 38cae97177191ad6876a4ce7afb4f53b21bf746c. Upstream patch merged
2024-05-19Merge pull request #629 from c-po/T5887-kernelChristian Breunig
Kernel: T5887: update Linux Kernel to v6.6.31
2024-05-19Kernel: T5887: update Linux Kernel to v6.6.31Christian Breunig
2024-05-17Merge pull request #622 from zdc/T3664-circinusChristian Breunig
build-script: T3664: Allowed all options in both config file and comm…
2024-05-17Merge pull request #626 from jestabro/syntax-config-defaultChristian Breunig
T6356: normalize '.., ntp, server' path syntax in config.boot.default
2024-05-16T6356: normalize '.., ntp, server' path syntax in config.boot.defaultJohn Estabrook
2024-05-16Merge pull request #624 from c-po/targetChristian Breunig
hooks: T6346: set default boot target to multi-user.target
2024-05-16hooks: T6346: set default boot target to multi-user.targetChristian Breunig
2024-05-16Merge pull request #614 from aidan-gibson/currentChristian Breunig
T6333 non-free-firmware to trixie
2024-05-16T6333: drop reference to non-free of trixie as it's not usedAidan Gibson
2024-05-15build-script: T3664: Allowed all options in both config file and command argszsdc
Moved defaults away from argparser to `defaults.py`. This unlocks the ability to pass values that can be defined as command line arguments via a config file. With this change logic looks like this (in order of overrides). Pre-build config: `data/defaults.toml` -> `build-flavors/<flavor>.toml` -> `--<command line argument>` Build config: `defaults.py` -> `data/defaults.toml` -> `build-types/<type>.toml` -> `architectures/<architecture>.toml` -> `build-flavors/<flavor>.toml` -> `--<command line argument>`
2024-05-15Merge pull request #620 from zdc/T3664-circinusChristian Breunig
build-script: T3664: Add flavor and architecture to image name (rework)
2024-05-14build-script: T3664: Add flavor and architecture to image name (rework)zsdc
The previous version did not work for all flavor types. This one should be universal.
2024-05-14Merge pull request #582 from 0xThiebaut/suricataChristian Breunig
suricata: T751: Disable suricata.service by default
2024-05-14Merge pull request #618 from sever-sever/T3420Viacheslav Hletenko
T3420: Remove service upnp
2024-05-14T3420: Remove service upnpViacheslav Hletenko
2024-05-14Merge pull request #616 from zdc/T3664-circinusDaniil Baturin
build-script: T3664: Added flavor name to a target file name
2024-05-14build-script: T3664: Added flavor name to a target file namezsdc
Mark artifacts with a flavor name for better clarity.
2024-05-12Merge pull request #612 from c-po/T6330-release-prefChristian Breunig
build: T6330: fix indention of autogenerated release.pref.chroot
2024-05-12build: T6330: fix indention of autogenerated release.pref.chrootChristian Breunig
2024-05-10Merge pull request #609 from dmbaturin/T3664-architectureChristian Breunig
build: T3664: include the architecture field in version data
2024-05-09build: T3664: include the architecture field in version dataDaniil Baturin
2024-05-09Merge pull request #605 from dmbaturin/T3664-flavor-fieldChristian Breunig
build: T3664: include build flavor name in the version file
2024-05-09Merge pull request #606 from dmbaturin/T3664-dict-merge-fixeszdc
build: T3664: use explicit defaults argument in the dict merging function
2024-05-09build: T3664: use explicit defaults argument in the dict merging functionDaniil Baturin
to make it clear what is merged into what
2024-05-08build: T3664: include build flavor name in the version fileDaniil Baturin
2024-05-08Merge pull request #603 from zdc/T3664-circinusDaniil Baturin
build-script: T3664: Added more options to the image format
2024-05-08build-script: T3664: Added more options to the image formatzsdc
Added two new options: - `image_ext`. Can be used if the file extension needs to be different than the image format - `image_opts`. Required if a target format needs extra options.
2024-05-08Merge pull request #600 from dmbaturin/T3664-mixin-pathViacheslav Hletenko
build: T3664: fix architecture mix-in loading
2024-05-08build: T3664: fix architecture mix-in loadingT3664-mixin-pathDaniil Baturin
2024-05-07Merge pull request #598 from sever-sever/T6311Daniil Baturin
T6311: Docker add dependency asciidoc-base for nftables
2024-05-07T6311: Docker add dependency asciidoc-base for nftablesViacheslav Hletenko
Add dependency `asciidob-base` for build nftables
2024-05-07Merge pull request #596 from dmbaturin/T3664-no-env-varViacheslav Hletenko
build: T3664: modify the module-level template path instead of setting an environment variable
2024-05-06build: T3664: modify the module-level template pathDaniil Baturin
instead of setting an environment variable
2024-05-06Merge pull request #594 from sever-sever/T6307Christian Breunig
T6307: Add dependency procps to build vyos-1x
2024-05-06T6307: Add dependency procps to build vyos-1xViacheslav Hletenko
This fixes the sysctl dependency ``` ====================================================================== ERROR: test_sysctl_read (test_utils.TestVyOSUtils.test_sysctl_read) ---------------------------------------------------------------------- Traceback (most recent call last): File "/vyos/work/tmp/vyos-1x/src/tests/test_utils.py", line 28, in test_sysctl_read self.assertEqual(sysctl_read('net.ipv4.conf.lo.forwarding'), '1') ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/vyos/work/tmp/vyos-1x/python/vyos/utils/system.py", line 28, in sysctl_read tmp = run(['sysctl', '-nb', name], capture_output=True) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/subprocess.py", line 548, in run with Popen(*popenargs, **kwargs) as process: ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/subprocess.py", line 1024, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/usr/lib/python3.11/subprocess.py", line 1901, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'sysctl' ```
2024-05-04Merge pull request #591 from c-po/frrChristian Breunig
frr: T6283: T6250: add pending upstream patches
2024-05-04frr: T6250: add pending upstream patchChristian Breunig
2024-05-04frr: T6283: add pending upstream patchChristian Breunig
2024-05-04Docker: T6283: T6250: no need to include rtrlib and libyang in generalChristian Breunig
FRR build tracks the rtrlib and libyang version, so only one place is needed to build to sources.
2024-05-03Merge pull request #590 from jestabro/fix-clone-repo-raw-flavorsJohn Estabrook
build: T3664: fix regression and bug in build script clone of vyos-1x repo
2024-05-03build: T3664: fix regression and bug in clone vyos-1x repoJohn Estabrook
2024-05-03Merge pull request #584 from SaulGoodman1337/patch-2Christian Breunig
T6293: add Mediatek MT7921 to defconfig
2024-05-03Merge pull request #586 from c-po/currentChristian Breunig
container: T5867: podman depends on libgpgme11t64 from trixie
2024-05-03container: T5867: podman depends on libgpgme11t64 from trixieChristian Breunig
2024-05-03Merge pull request #585 from jestabro/clone-repo-raw-flavorsChristian Breunig
build: T3664: clone vyos-1x under build dir instead of as submodule
2024-05-02build: T3664: clone vyos-1x under build dir instead of as submoduleJohn Estabrook
2024-05-03suricata: T751: Disable suricata.service by defaultMaxime THIEBAUT