summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-02build-sys: re-add systemd.directives and systemd.index to MANPAGES (#5876)Michael Biebl
Those were dropped accidentally in commit 19fe49f62cc916f1237ea92a04fc80ee75285dde, most likely by running make update-man-list. This is a known limitation of the autotools build: the man pages must be built before update-man-list is called.
2017-05-02hwdb: update axis ranges for the Asus UX301LAA touchpad (#5872)Peter Hutterer
https://bugs.freedesktop.org/show_bug.cgi?id=100873
2017-05-01Merge pull request #5871 from keszybz/meson-html-2Michael Biebl
meson: make sure html symlinks are also created in build directory
2017-05-01meson: make sure html symlinks are also created in build directoryZbigniew Jędrzejewski-Szmek
The symlinks should be created in the build directory in two cases: when configuration specifies -Dhtml=true, or when ninja html target is built. Normally install : {true,false} is used to decide if a target should be built, but in this case, we cannot use install : true, because, as described in 488477d101, that results in the target file being copied into the installation directory instead of a symlink. So we need a work-around. To achieve the first end, the commands to create the symlinks are added as dependencies of the command to create the html page. To the second end, they are added as dependencies of the html target. Follow-up for 488477d101 and 064d9ef0d7.
2017-05-01meson: create index.html symlink pointing at systemd.index.html (#5870)Michael Biebl
Re-use bits from 488477d1011559078dbebfea18e22dcc1c9ca7ea to create the index.html symlink. Fixes #5862
2017-05-01Merge pull request #5869 from keszybz/meson-htmlMichael Biebl
meson: fix creation of html symlinks
2017-05-01meson: fix creation of html symlinksZbigniew Jędrzejewski-Szmek
This adds two somewhat independent rules: 1. to create symlinks to html pages in the build directory 2. to create symlinks in the installation directory The second part needs to be coded separately, because telling meson to install the symlinks created in step 1. results in a copy of the target, instead of a symlink. So step 2. needs to ignore the result of 1. and create the symlink again. Fixes #5863.
2017-04-30more portable python shebangs (#5816)Jörg Thalheim
This is useful on systems like NixOS, where python3 is not in /usr/bin/python3 as well as for people using alternative ways to install python such as virtualenv/pyenv.
2017-04-30build-sys: don't generate index.html with --disable-manpages (#5865)Michael Biebl
Don't generate man/index.html and the dependent man/systemd.index.html if man pages have been disabled. Closes #5854
2017-04-30networkd: Add check to ensure link is down before attempting to enslave (#5853)Roelf Wichertjes
netdev to bond. There are situations where a link can be in an "UP" state when systemd-networkd attempts to add the link to a bond device. This is a problem because the bonding driver will refuse to enslave a link if it is in the "UP" state. This check ensures systemd-networkd sets the link to "DOWN" before attempting to add the link to the bond. Fixes #5838.
2017-04-30Merge pull request #5808 from ssahani/utilLennart Poettering
conf parser: add config_parse_ip_port
2017-04-29sd-boot: remove compiler warning (#5860)Max Resch
This small fixup removes a compiler warning when passing tcg (a const arg type) to the uefi call wapper, which does not define it as const. All other source files in sd-boot do this cast except measure.c, so let's fix that.
2017-04-29Merge pull request #5809 from keszybz/glob-safeMartin Pitt
Implement `safe_glob` that ignores "." and ".."
2017-04-29conf parser: add config_parse_ip_portSusant Sahani
2017-04-29journald: fix assertion failure on journal_file_link_data. (#5843)Yusuke Nojima
When some error occurs during the initialization of JournalFile, the JournalFile can be left without hash tables created. When later trying to append an entry to that file, the assertion in journal_file_link_data() fails, and journald crashes. This patch fix this issue by checking *_hash_table_size in journal_file_verify_header().
2017-04-29networkd: replace geneve/vxlan port parsing with generic config_parse_ip_portSusant Sahani
2017-04-29config parser: Introduce config_parse_ip_portSusant Sahani
2017-04-29Merge pull request #5164 from Werkov/ordering-for-_netdev-devicesLennart Poettering
Ordering for _netdev devices
2017-04-29Merge pull request #5783 from keszybz/compiler-warning-fixesLennart Poettering
shared/extract-word: replace enum with int to avoid undefined behaviour
2017-04-29Merge pull request #5529 from ssahani/labelLennart Poettering
networkd / sd-netlink: add support for address label
2017-04-29Merge pull request #5852 from phomes/trivialMartin Pitt
Trivial cleanups
2017-04-29Merge pull request #5801 from keszybz/help-errorLennart Poettering
nspawn,cgtop: make sure --version, --help always work
2017-04-29sd-boot: remove unnecessary defines (#5848)Max Resch
As discussed in #5829 `#define` is not necessary, meson and autotools set the correct compiler flags and the default value is provided by them.
2017-04-29test: explain why we explicitly make all despite test/Makefile's check ↵Chris Lamb
target calling it (#5830)
2017-04-29meson: do not link libshared dynamically against libudev (#5850)Michael Biebl
Linking dynamically against libudev will fail once https://github.com/mesonbuild/meson/pull/1545 is merged and apparently already triggers a link failure on s390x. Make libshared provide the udev symbols by including libudev_sources into libshared. This will cause those files to be compiled twice, but it actually reduces the installed size and is closer to what the autotools build system is doing. Closes #5828
2017-04-28tree-wide: remove unused variablesThomas Hindoe Paaboel Andersen
2017-04-28networkd: remove duplicated includeThomas Hindoe Paaboel Andersen
2017-04-28shared: assert the source for memcpyThomas Hindoe Paaboel Andersen
2017-04-28build-sys: do not install manpages from disabled features (#5844)userwithuid
A few of the manpages where missing the "conditional" attribute.
2017-04-28hwdb: add Samsung 880Z5E series touchpad overrides (#5825)Peter Hutterer
https://bugs.freedesktop.org/show_bug.cgi?id=100631
2017-04-27meson: add compiler flags for "--tpm" in EFI apps (#5829)Max Resch
Readds boot log tpm feature that was missing in meson by readding a defines in efi_conf.h
2017-04-27Merge pull request #5827 from keszybz/meson-libcapMartin Pitt
meson: fixes to allow meson builds on Ubuntu Trusty
2017-04-27meson: do not install files from disabled features (#5811)userwithuid
Mirror conditions from Makefile.am.
2017-04-27Merge pull request #5818 from mbiebl/meson-no-libudevZbigniew Jędrzejewski-Szmek
meson: drop implicit libudev link dependencies
2017-04-27Merge branch 'master' into meson-no-libudevZbigniew Jędrzejewski-Szmek
2017-04-27Merge pull request #5821 from mbiebl/meson-no-libiptcZbigniew Jędrzejewski-Szmek
Merge libfirewall into libshared, and link libshared to libip[46]tc directly.
2017-04-27build-sys: only install libexecdir/resolv.conf if resolved is enabled (#5826)userwithuid
as mentioned in https://github.com/systemd/systemd/pull/5811
2017-04-27execute: filter out "." for ".." in EnvironmentFile= globs tooZbigniew Jędrzejewski-Szmek
This doesn't really matter much, only in case somebody would use something strange like EnvironmentFile=/etc/something/.* Make sure that "." and ".." is not returned by that glob. This makes all our globbing patterns behave the same.
2017-04-27tmpfiles: use safe_glob()Zbigniew Jędrzejewski-Szmek
This filters out "." and ".." from glob results. Fixes #5655 and #5644. Any judgements on whether the path is "safe" are removed. We will not remove "/" under any name (including "/../" and such), but we will remove stuff that is specified using paths that include "//", "/./" and "/../". Such paths can be created when joining strings automatically, or for other reasons, and people generally know what ".." and "." is. Tests are added to make sure that the helper functions behave as expected.
2017-04-27basic: add readdir_no_dot and safe_glob functionsZbigniew Jędrzejewski-Szmek
safe_glob filters out "." and "..". This converts all users of glob_extend() and glob_exists() to safe_glob.
2017-04-27meson: fix detection of "-Wno-" optionsZbigniew Jędrzejewski-Szmek
2017-04-27meson: add version check for libseccompZbigniew Jędrzejewski-Szmek
Compilation fails because of the missing arm64 bits with old seccomp versions.
2017-04-27meson: also search for libcap directlyZbigniew Jędrzejewski-Szmek
2017-04-26improve readability (#5814)Matija Skala
2017-04-26update-done: Create using a temporary file (#5789)codekipper
'/etc/.updated' is created without using a temporary file, this can be problematic with filesystems that cache writes. Modify so that the timestamp is written to a temporary file and then use an atomic move to move it to its correct place.
2017-04-26meson: get rid of libfirewallMichael Biebl
2017-04-26meson: drop libiptc link dependencies from libsharedMichael Biebl
The only place where libiptc is needed is in libfirewall, which already takes care of linking against libiptc.
2017-04-26meson: drop implicit libudev link dependenciesMichael Biebl
Executables which link against libshared do not need an explicit dependency on libudev, as libshared will make sure that those symbols are available.
2017-04-26meson: add address label to build systemSusant Sahani
2017-04-26networkd: add support for address labelSusant Sahani
IPv6 address labels are used for address selection; they are described in RFC 3484. Precedence is managed by userspace, and only the label itself is stored in the kernel. enp0s25.network [Match] Name=enp0s25 [Network] DHCP=yes Address = 2001:db8:f00:baa::b [AddressLabel] Label=199 Prefix=2001:db8:41::/64 [AddressLabel] Label=11 Prefix=2001:db8:31::/64 [AddressLabel] Label=123 Prefix=2001:db8:21::/64 [AddressLabel] Label=124 Prefix=2001:db8:11::/64 [sus@maximus label]$ ip addrlabel list prefix ::1/128 label 0 prefix ::/96 label 3 prefix ::ffff:0.0.0.0/96 label 4 prefix 2001:db8:41::/64 dev enp0s25 label 199 prefix 2001:db8:31::/64 dev enp0s25 label 11 prefix 2001:db8:21::/64 dev enp0s25 label 123 prefix 2001:db8:11::/64 dev enp0s25 label 124 prefix 2001::/32 label 6 prefix 2001:10::/28 label 7 prefix 3ffe::/16 label 12 prefix 2002::/16 label 2 prefix fec0::/10 label 11 prefix fc00::/7 label 5 prefix ::/0 label 1