Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-28 | Packages: remove vyatta-op-dhcp-server | Christian Poessinger | |
2019-08-17 | Packages: remove obsolete vyatta-openvpn | Christian Poessinger | |
2019-05-28 | Packages: clean, fetch and keep options are mutually exclusive | Christian Poessinger | |
... as it makes no sense to keep and clean a package or any other combination. | |||
2019-05-28 | Packages: add '--keep' option to not clean packages | Christian Poessinger | |
By default all git repos are reset using 'git reset --hard' and cleaned using 'git clean -x -d -f'. A developer sometimes would like to keep his changes and thus the --keep option was added. | |||
2019-05-28 | Packages: do not create obsolete 'data/kernel_version' file | Christian Poessinger | |
2019-05-26 | Packages/modules: install accel-ppp and wireguard modules into right location | Christian Poessinger | |
... previously the modules have been installed into /lib/modules/4.14.45 and not 4.14.45-amd64-vyos. | |||
2019-05-24 | Packages: add live-boot package to build procedure | Christian Poessinger | |
2019-05-04 | Packages: add vyos-replace package to build procedure | Christian Poessinger | |
2019-05-03 | Packages: add keepalived 2.0.10 to build procedure | Christian Poessinger | |
2019-04-27 | Packages: add net-snmp package to build procedure | Christian Poessinger | |
2019-04-27 | Packages: remove duplicate '-j' statement when building Kernel | Christian Poessinger | |
2019-04-27 | Packages: use Kernel Maintainer build command for Linux Kernel | Christian Poessinger | |
make-kpkg is a deprecated command and make deb-pkg should be used which is maintained by the Kernel developers. Switch to the new command for Kernel building which eases the transition to Debian Buster. | |||
2019-04-26 | Packages: support --blacklist option to not build individual packages | Christian Poessinger | |
2019-04-26 | Packages: fix missing bytes stuck in the output buffer | Christian Poessinger | |
A last read() was missing to the temporary files when reporting errors after a command was executed. | |||
2019-04-26 | Packages: extract kernel version from defaults.json | Christian Poessinger | |
This requires 'jq' as part of the Docker container. $ cat data/defaults.json | jq '.kernel_version' | tr -d \" | |||
2019-04-26 | Packages: use 'make kernelversion' instead of grep magic | Christian Poessinger | |
Exract version by using the included "make kernelversion" instead of writing a custom grep script that was used before. VERSION=$(grep '^VERSION' Makefile | grep -Eo '[0-9]{1,4}') PATCHLEVEL=$(grep '^PATCHLEVEL' Makefile | grep -Eo '[0-9]{1,4}') SUBLEVEL=$(grep '^SUBLEVEL' Makefile | grep -Eo '[0-9]{1,4}') $ make kernelversion 4.19.36 | |||
2019-04-26 | Packages: add bgpq3 (debian/0.1.33-1) package to build procedure | Christian Poessinger | |
2019-04-26 | Packages: remove vyatta-quagga | Christian Poessinger | |
2019-04-26 | Packages: add ethtool (debian/1%4.19-1) package to build procedure | Christian Poessinger | |
2019-04-26 | Packages: define custom command for vyos-strongswan | Christian Poessinger | |
This is required to get a python3-vici package which is required by vyos-1x | |||
2019-04-23 | Replace build-submodules with Python based package builder | Christian Poessinger | |
Support building individual VyOS packages by this modules. Call scripts/build-packages -l to list all available packages which will be build when invoking scripts/build-packages. |