Commit Graph

1722 Commits

Author SHA1 Message Date
Stephan Raue
36f99727ee busybox: add 'renice' applet
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-09 01:36:52 +01:00
Dag Wieers
314b3a76bb Fix typo in script name 2013-02-09 01:20:16 +01:00
Dag Wieers
ab35dbe2ae Remote syslog support from OpenELEC settings
This patch adds remote syslog support. The syslog startup script will add the necessary options, and leaves room for a custom syslog.conf from /storage/.config (as it was before).
2013-02-09 00:25:57 +01:00
Stephan Raue
43411247fc lirc: fix xbox lirc config
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-08 04:46:17 +01:00
Stephan Raue
78ec06c9dc busybox: dont build applet 'powertop'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-08 04:42:11 +01:00
Stephan Raue
c691a33edd eventlircd, add more cypress remotes, this fixes #1347
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-07 01:43:40 +01:00
Stephan Raue
f2a987ab77 pmtools: move to debug tools
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-07 00:16:29 +01:00
Stephan Raue
1daaba248f acpica: move to debug tools
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-07 00:15:24 +01:00
Stephan Raue
3490780d1d i2c-tools: move to debug tools
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-07 00:13:44 +01:00
Stephan Raue
9912f0635e dmidecode: move to debug tools
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-02-07 00:12:19 +01:00
Dag Wieers
c5b63fe01a new package: add package 'i2c-tools'
This package adds the necessary tools to debug i2c hardware.
2013-02-07 00:09:46 +01:00
Dag Wieers
0b84f525f8 new packages: add package 'pmtools' and 'acpica'
These packages add the necessary tools to debug and disassemble ACPI tables in order to understand and fix ACPI problems.
2013-02-07 00:09:08 +01:00
Stephan Raue
726a218430 Merge pull request #1858 from dagwieers/package-dmidecode
new package: add package 'dmidecode'
2013-02-06 14:12:22 -08:00
Dag Wieers
12df4db25c new package: add package 'dmidecode'
This packages adds the dmidecode tools when enabled.
2013-02-06 22:54:27 +01:00
Stephan Raue
8647083a85 Merge pull request #1856 from dagwieers/syslog-config
Allow syslog.conf to be locally customized from /storage/.config/syslog.conf
2013-02-06 13:42:19 -08:00
Stephan Raue
f8bbf18c09 Merge pull request #1855 from dagwieers/exec-daemon
When init starts daemons through a shell script, replace the shell altogether
2013-02-06 13:41:43 -08:00
Dag Wieers
8672ac5b63 Allow syslog.conf to be locally customized from /storage/.config/syslog.conf
Since I would like to remotely log whatever goes on on my AppleTV devices, I need a way to modify the syslog.conf that is used, or need to provide options to syslogd. This was the easiest pick of the two :)
2013-02-06 22:36:53 +01:00
Dag Wieers
6f41b37996 When init starts daemons through a shell script, replace the shell altogether
A few daemons are being started from init through a shell script. Since the daemon does not "deamonizes" properly, it's been put in the background from the shell by using ( ... ) &, however this leaves a lingering shell that serves no purpose. This patch improves this situation.

The situation before this change looked like:

    init-+-Xorg
         |-avahi-daemon
         |-console-kit-dae-+-62*[{console-kit-da}]
         |                 `-{gdbus}
         |-dbus-daemon
         |-eventlircd
         |-klogd
:        |-init---atvclient
         |-init---connmand
:        |-init---ratpoison
:        |-init---udevadm
         |-polkitd---{gdbus}
         |-rpcbind
         |-sshd---sshd---sh---pstree
         |-syslogd
         |-systemd-udevd
:        |-tvheadend.start---tvheadend---12*[{tvheadend}]
         |-udisks-daemon-+-udisks-daemon
         |               |-{gdbus}
         |               `-{gmain}
         |-upowerd-+-{gdbus}
         |         `-{gmain}
         |-wpa_supplicant
         `-xbmc.bin---17*[{xbmc.bin}]

After this change, it looks like:

    init-+-Xorg
:        |-atvclient
         |-avahi-daemon
         |-console-kit-dae-+-62*[{console-kit-da}]
         |                 `-{gdbus}
         |-dbus-daemon
         |-eventlircd
         |-init---connmand
         |-klogd
         |-polkitd---{gdbus}
:        |-ratpoison
         |-rpcbind
         |-sshd---sshd---sh---pstree
         |-syslogd
         |-systemd-udevd
:        |-tvheadend---12*[{tvheadend}]
:        |-udevadm
         |-udisks-daemon-+-udisks-daemon
         |               |-{gdbus}
         |               `-{gmain}
         |-upowerd-+-{gdbus}
         |         `-{gmain}
         |-wpa_supplicant
         `-xbmc.bin---17*[{xbmc.bin}]

Only for connmand this is not easily done since the shell loops and restarts connmand. In different circumstances /etc/inittab would respawn the process.
2013-02-06 22:16:12 +01:00
Stefan Saraev
3f9a6d3353 busybox: mount debugfs 2013-02-04 20:30:19 +02:00
Detlev Rackow
9b9b98b1a3 systemd: write to RTC in utc. to keep in line with connman 2013-01-28 23:18:49 +02:00
Stephan Raue
3765e1ac07 systemd: add keymap support
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-01-27 02:43:47 +01:00
Stephan Raue
99917e437e ntfs-3g_ntfsprogs: update to ntfs-3g_ntfsprogs-2013.1.13
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-01-26 23:05:46 +01:00
Stephan Raue
d626253cfc e2fsprogs: update to e2fsprogs-1.42.7
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-01-26 23:05:29 +01:00
Stephan Raue
bf65f62be8 eventlircd: simplyfing lirc udev rule
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-01-26 23:04:49 +01:00
Stephan Raue
3f5ab0b9ef lirc: update xbox config file to support uinput
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2013-01-26 23:04:26 +01:00