summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAge
* man: generate xml not html for indexZbigniew Jędrzejewski-Szmek2013-01-15
| | | | | | | | This way we also get a man page. The output is not as polished. I hope that it doesn't matter too much. index.html is not generated now, the page is called systemd.index.html. If necessary, an install hook should be added.
* man: add links to directive index to see-alsosZbigniew Jędrzejewski-Szmek2013-01-15
| | | | | systemd.directives(5) is renamed to systemd.directives(7). Section 7 is "Miscellaneous".
* make-directive-index: link to systemd optionsZbigniew Jędrzejewski-Szmek2013-01-15
|
* man: add bootchart.conf to directives indexZbigniew Jędrzejewski-Szmek2013-01-15
|
* login: introduce sd_session_get_tty()Lennart Poettering2013-01-15
|
* build-sys: do not install to / in 'make distcheck'Zbigniew Jędrzejewski-Szmek2013-01-10
|
* build-sys: fix 'make distcheck' w/o sysvinit compatZbigniew Jędrzejewski-Szmek2013-01-10
| | | | EXTRA_DIST must unconditionally contain all source files.
* udev: move string copy functions to shared/Kay Sievers2013-01-09
|
* bootchart: install missing man page and config fileUmut Tezduyar2013-01-08
|
* build-sys: fix spelling of sysvrcndirLennart Poettering2013-01-08
|
* build-sys: bump version and so revisionsLennart Poettering2013-01-08
|
* analyze: add emacs mode headerLennart Poettering2013-01-08
|
* Revert "build-sys: remove .la files after installation"Kay Sievers2013-01-07
| | | | | | | | | | "make distcheck" fails with: ERROR: files left after uninstall: ./usr/lib64/security/pam_systemd.so ./lib/libnss_myhostname.so.2 ./lib64/python2.7/site-packages/systemd/_journal.so This reverts commit ca25fde748dba7ee74e24dff2db6aff1d9faea00.
* bootchart: merge bootchartAuke Kok2013-01-07
| | | | | | Bootchart is renamed to 'systemd-bootchart' and installed as /usr/lib/systemd/systemd-bootchart. The configuration file will reside in /etc/systemd/bootchart.conf.
* build-sys: remove .la files after installationZbigniew Jędrzejewski-Szmek2013-01-07
| | | | | | | | | | | | Define KEEP_LA_FILES to keep them. The hook is repeated because both install-exec-hook and install-data-hook can install libraries and with parallel make it's not possible to predict which one will run first. http://lists.freedesktop.org/archives/systemd-devel/2013-January/008016.html tl;dr: Libtool .la files are not very useful for linking linux libraries.
* nss-myhostname: integrate documentationTom Gundersen2013-01-07
| | | | | Converted from html to xml and changed the style to fit into the other manpages.
* nss-myhostname: integrate into systemd buildsystemTom Gundersen2013-01-07
| | | | | | Note that there are still some rome for cleanups. In particular, the .la files are now installed, which we probably don't want; and some of the macros in Makefile.am are likely redundan.
* build: Drop "=" from move-to-rootlibdir defineMichael Biebl2013-01-06
| | | | | | The variable assignment operator was introduced in make 3.82 and thus breaks "make install" with older versions of make. Since "=" is optional in make 3.82 it is safe to drop.
* build-sys: use recipe for moving libsZbigniew Jędrzejewski-Szmek2013-01-06
| | | | | | Just avoids repeating the same code a few times. The way that hooks are named is standardized. No functional change.
* udev: enable persistent network device namingKay Sievers2013-01-06
|
* build-sys: invoke scripts with $PYTHON during buildZbigniew Jędrzejewski-Szmek2013-01-04
| | | | | | | Python binary to be used during compilation can be set with ./configure PYTHON=... The she-bang line is removed, since it is not used anymore.
* systemd-analyze: use specified binary, add --versionZbigniew Jędrzejewski-Szmek2013-01-04
| | | | | | | | | | | | Python binary used in the she-bang line in installed scripts can be set with ./configure PYTHON_BINARY=... Defaults to the same path as python used during compilation. Adding --version makes systemd-analyze behave consistently with the rest of installed programs. The lines in ./configure output are reordered to keep all yes/no lines separate. I think that this makes the output clearer.
* systemd-analyze: pipe through SED_PROCESSZbigniew Jędrzejewski-Szmek2013-01-04
| | | | To be able to add --version and change python binary.
* build-sys: allow update-hwdb with seperate build dirZbigniew Jędrzejewski-Szmek2013-01-04
|
* build-sys: drop unused $RUNTIME_DIRZbigniew Jędrzejewski-Szmek2013-01-04
|
* build-sys: drop all distribution specfic checksLennart Poettering2013-01-04
| | | | Yay, we now have a completely generic systemd. No distribution specific checks anymore!
* build-sys: make path of loadkeys/setfont configurable in configureLennart Poettering2013-01-04
|
* build-sys: make rc-local support part of SYSV compatLennart Poettering2013-01-04
| | | | | | This also drops automatic selection of the rc local scripts based on the local distro. Distributions now should specify the paths of the rc-local and halt-local scripts on the configure command line.
* hwdb: Add database for Bluetooth company identifiersMarcel Holtmann2012-12-31
|
* logind: add support for automatic suspend/hibernate/shutdown on idleLennart Poettering2012-12-24
|
* build-sys: Make libsystemd-shared link to libsystemd-daemonColin Walters2012-12-23
| | | | | | | | | | | Commit f934051c4d17d167bd8e46dd3c70a745e26fd2eb broke the build because it made libsystemd-shared call sd_listen_fds() which is defined in libsystemd-daemon. This is a bit of a contortion because libsystemd-shared.la is a noinst_LTLIBRARY, but libtool should do the right thing here and emit DT_NEEDED on libsystemd-daemon.so for things that consume libsystemd-shared.la.
* shared: move fdset.c from core/ to shared/ since it is used by more than the ↵Lennart Poettering2012-12-23
| | | | core now
* journalctl: strip TABs and ANSI color sequences from log messages when ↵Lennart Poettering2012-12-23
| | | | displaying them
* nspawn: allow passing socket activation fds through nspawnLennart Poettering2012-12-22
|
* Remove frugalware display-manager.serviceTollef Fog Heen2012-12-14
| | | | | | | Frugalware are shipping their own .service file now, so stop shipping it here. This effectively reverts 196e3fa74a88a04b0ecec7d3af648287dd088f8a
* build-sys: add libsystemd-daemon.la to libsystemd-core.laKay Sievers2012-12-05
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=57900
* hwdb: add IAB to the OUI databaseTom Gundersen2012-12-04
| | | | | | | | | | The individual address block is a poor man's organizationally unique identifier. Perhaps we should change the udev key from ID_OUI_FROM_DATABASE to something like ID_IEEE_VENDOR_FROM_DATABASE? Suggested-by: Diego Elio Pettenò <flameeyes@flameeyes.eu>
* build-sys: use parallel tests driverZbigniew Jędrzejewski-Szmek2012-12-01
| | | | | | | | | | | This saves test output to individual .log files. The driver is only used in /Makefile.am, not in /docs/*udev/Makefile.am because the latter don't seem to work with this driver. They don't produce much output anyway. .gitignore is alphabetized, and .log files are added to it. Generated files from /build-aux are removed from the list.
* build-sys: color test resultsZbigniew Jędrzejewski-Szmek2012-12-01
|
* keymap: Update the list of Samsung Series 9 modelsAlessandro Crismani2012-11-28
| | | | | | | | | | | Currently, keymaps are provided only for the NP90X3A laptop. Samsung introduced updated models, codenamed 900X3B, 900X3C, 900X4B, 900X4C, which are currently not matched by udev rules. This patch includes the newer modules in udev rules and move the samsung-n90x3a file defining keys to a more generic samsung-series-9 file. The patch was tested on a 900X4C laptop, and other people reported that the rules also work for 900X3B and 900X3C ones.
* man: add systemd-journal-gatewayd pageZbigniew Jędrzejewski-Szmek2012-11-25
|
* man: document calendar timersLennart Poettering2012-11-24
|
* build-sys: drop TARGET_UBUNTULennart Poettering2012-11-24
| | | | | | TARGET_UBUNTU is effectively the same as TARGET_DEBIAN. Given the Ubuntu is unlikely to use systemd anytime soon there's no point in keeping this separate.
* util: split off time related calls from util.[ch] into time-util.[ch]Lennart Poettering2012-11-23
|
* timer: implement calendar time eventsLennart Poettering2012-11-23
|
* build-sys: add zsh completion bits to EXTRA_DISTLennart Poettering2012-11-21
|
* build-sys: prepare 196Lennart Poettering2012-11-21
|
* journal: document new catalog APIsLennart Poettering2012-11-20
|
* build-sys: make loadable module support optionalTom Gundersen2012-11-20
| | | | | kmod is unecessary if loadable module support is disabled in the kernel, so make the dependency optional.
* build-sys: fix sysvcompat handling in distcheckTom Gundersen2012-11-20
| | | | | | | | | | | | | | | | Distcheck would fail due to sysvinit dir being set, but not sysvrcnd dir: # ./configure --enable-gtk-doc --with-sysvrcd-path=/etc/rc.d # --with-sysvinit-path=/etc/rc.d # make distcheck ... configure: error: *** You need both --with-sysvinit-path=PATH and --with-sysvrcd-path=PATH to enable SysV compatibility support, or both empty to disable it. make: *** [distcheck] Error 1 This also allows sysvcompat support to be disabled from distcheck.