summaryrefslogtreecommitdiffstats
path: root/projectroot
Commit message (Collapse)AuthorAgeFilesLines
* mySQL: exhume a gone package by updating it to a new releaseJuergen Borleis2016-05-266-0/+136
| | | | | | | | | | | | | | | | | | After the remove of the old package from the staging area this change adds a new release of the mySQL package. Its intended and checked on a read-only root filesystem with write access in "/var/mysql" only. The database engine runs as a regular user and does not need root permissions. Due to its dependency to boost_1_59_0 it uses exactly this version and the already present boost lib in PTXdist isn't used. Be aware: its buildsystem uses a huge amount of memory. If your host is low on memory don't forget to build this package with the '-ji1' parameter. Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mySQL: remove an orphaned fileJuergen Borleis2016-05-261-4/+0
| | | | | | | The corresponding package is gone with 7e3cd4d1d83c24ff5070fea5b6789936351a880a Signed-off-by: Juergen Borleis <jbe@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* projectroot: etc/group: add missing shadow groupMarc Kleine-Budde2016-05-241-0/+1
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* rng-tools: add systemd service and rngtest optionsSteffen Trumtrar2016-05-171-0/+7
| | | | | Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* Add persistant iptable-rules via systemdGavin Schenk2016-04-116-0/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Supports ipv4 and ipv6 and both options can be selected in menuconfig by IPTABLES_IPV6_SYSTEMD_UNIT and/or IPTABLES_IPV4_SYSTEMD_UNIT If you select IPTABLES_IPV4_SYSTEMD_UNIT a systemd unit is started on multiuser.target that set the iptable rules from file: /etc/iptables/rules.v4 If you select IPTABLES_IPV6_SYSTEMD_UNIT a systemd unit is started on multiuser.target that set the iptable rules from the file: /etc/iptables/rules.v6 The Package provides empty files. If you want to add custom rules, you have to provide your own files. The rule files can be generated with the utils iptables-save ip6tables-save from the iptables package. Example: Generating a rule file, that drops port 5000 on interface eth0 for ipv4 1.) iptables -A INPUT -i eth0 -p TCP --dport 5000 -j DROP 2.) iptables-save > /etc/iptables/rules.v4 The basic idea was taken from https://github.com/gronke/systemd-iptables written by Stefan Grönke <stefan@gronke.net> in 2015. Signed-off-by: Gavin Schenk <g.schenk@eckelmann.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gptp: add new package for IEEE1588Robert Schwebel2016-02-171-0/+28
| | | | | | | | | | | This adds the linuxptp project. The original ptxdist rules have been written by Steffen Trumtrar. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> [clean up rules, add license, version bump to 1.6] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de> [mol: white space fixes, GPL-2.0 -> GPL-2.0+] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* Export LANG environment variable for systemdClemens Gruber2016-02-161-0/+7
| | | | | Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* nfsutils: version bump 1.3.0 -> 1.3.3Michael Olbrich2016-01-125-21/+14
| | | | | | Cleanup and simplify rules while at it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* rpcbind: new packageMichael Olbrich2016-01-122-0/+24
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* pcsc-lite: add missing reader.conf config fileMarc Kleine-Budde2015-12-171-0/+2
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* openct: new packageMarc Kleine-Budde2015-12-102-0/+8
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* lldpd: update to 0.7.19 and add systemd supportClemens Gruber2015-12-091-0/+13
| | | | | | | | | Bump version to current stable version 0.7.19. Add options for custom TLV and JSON support. Add systemd unit and adapt rule file accordingly. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* systemd: networkd: don't configure eth0 for nfsrootMichael Olbrich2015-11-251-0/+1
| | | | | | | systemd-networkd now clears existing addresses, so make sure it does not touch eth0 when running from nfsroot. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* opkg: version bump 0.2.2 -> 0.3.0Michael Olbrich2015-11-251-0/+1
| | | | | | | | * remove obsolete patches. This is handled correctly now by libarchive. * the lock-file is now configured in the config file. * The binary is now called 'opkg' instead of 'opkg-cl'. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* openssh: harden security options and host keysClemens Gruber2015-11-072-43/+91
| | | | | | | | | | | | | | The rc.once.d script generates the host keys which are enabled in the ssd_config file. Ed25519 and RSA are the default host key signature algorithms as both do not solely rely upon good entropy sources. DSA and ECDSA are not recommended on embedded systems. The SSH configuration is hardened: Enabled sandboxing, reduced login grace time, strict mode, etc. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> [mol: use 4096 bits for RSA keys, base config on upstream example] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* os-release: move to /usr/libMichael Olbrich2015-11-071-0/+0
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* dbus: version bump 1.8.16 -> 1.10.0Michael Olbrich2015-10-152-144/+0
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* quagga: this patch adds quagga support to ptxdistOliver Graute2015-07-308-0/+202
| | | | | | | | | Quagga is a routing software suite, providing implementations of OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4 for Unix platforms, particularly FreeBSD, Linux, Solaris and NetBSD. Signed-off-by: Oliver Graute <oliver.graute@neuhaus.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* pulseaudio: new packageMichael Olbrich2015-07-222-0/+22
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* xorg-font-ttf-caladea: new packageMichael Olbrich2015-07-222-0/+34
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* xorg-font-ttf-carlito: new packageMichael Olbrich2015-07-222-0/+34
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* busybox: add crond systemd serviceAlbert Antony2015-07-161-0/+11
| | | | | | | Hopefully the tabs are preserved in this version of the patch ;) Signed-off-by: Albert Antony <albert@newtec.dk> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* procps: switch from procps to procps-ngClemens Gruber2015-07-073-7/+7
| | | | | | | | | | The procps package is unmaintained, therefore switch to procps-ng, which is used by many major distributions. Cc: Michael Olbrich <m.olbrich@pengutronix.de> Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> [mol: use SF mirror in the URL] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* udev: fix error on kernels without uevent helpersClemens Gruber2015-06-301-1/+3
| | | | | | | | | | | | | Current kernel docs recommend disabling CONFIG_UEVENT_HELPER. If disabled however, the following error message is shown: /etc/rc.d/S00udev: line 95: can't create /proc/sys/kernel/hotplug: nonexistent directory This patch fixes it by checking if /sys/kernel/uevent_helper exists. Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* lighttpd: svg mimetype supportBruno Thomsen2015-06-301-0/+1
| | | | | | | web server can now serve svg images with generic config. Signed-off-by: Bruno Thomsen <bth@kamstrup.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ldd: fix migration from generic -> projectrootMarc Kleine-Budde2015-06-191-0/+0
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ipkg: fix migration from generic -> projectrootMarc Kleine-Budde2015-06-191-0/+0
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* chrony: migrate to install_alternativeMarc Kleine-Budde2015-06-192-0/+0
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* generic: rename generic -> projectroot: move logrotate config files, tooMarc Kleine-Budde2015-06-183-0/+29
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* generic: rename generic -> projectrootMarc Kleine-Budde2015-06-18242-1/+10896
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* ptxdist: provide link from generic to projectrootMarc Kleine-Budde2012-06-141-0/+1
ptxdist will rename generic to projectroot. Provide a link for now, so that new features can make use of it. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>