[vz-users] 1wirevz Problem
Udo1
udo1 at gmx.net
Tue Feb 18 09:07:55 CET 2014
Am 18.02.2014 07:49, schrieb Bernd Gewehr:
> mal auf eine frische SD Karte das Image von Rainer aufspielst?
So wie die rc.local aussieht, hat er ja das Image von Rainer genommen.
> #/usr/local/bin/vzlogger #20131030 2101 SVI: erstmal abgeschaltet um ihn
> von der Konsole zu starten
Diese Zeilen in der rc.local stören mich. Wenn, dann sollten sie so
aussehen:
> # /usr/local/bin/vzlogger #20131030 2101 SVI: erstmal abgeschaltet um ihn
> # von der Konsole zu starten
> ls/sys/devices/
> breakpoint dev:f1 platform software system virtual
>
> Sollte hier nicht der Busmaster auftauchen?
Ja, sollte er:
> pi at raspberrypi ~ $ ls /sys/devices/
> breakpoint dev:f1 platform software system v6 virtual w1_bus_master1
Anscheinend kommt er in der rc.local nicht bis zu dessen Initialisierung.
Mal einen Monitor direkt am RPi anschließen und dir die Bootmeldungen
anschauen.
Oder mal die rc.local in rc.local_old umbenennen und eine neue rc.local
erstellen mit folgendem Inhalt:
> #!/bin/sh -e
> #
> # rc.local
> #
> # This script is executed at the end of each multiuser runlevel.
> # Make sure that the script will "exit 0" on success or any other
> # value on error.
> #
> # In order to enable or disable this script just change the execution
> # bits.
> #
> # By default this script does nothing.
>
> # Print the IP address
> _IP=$(hostname -I) || true
> if [ "$_IP" ]; then
> printf "My IP address is %s\n" "$_IP"
> fi
>
> # Part of S0/Impulse to Volkszaehler 'RaspberryPI deamon'
> echo 17 > /sys/class/gpio/export && echo "in" >
> /sys/class/gpio/gpio17/direction && echo "rising" >
> /sys/class/gpio/gpio17/edge
> echo 18 > /sys/class/gpio/export && echo "in" >
> /sys/class/gpio/gpio18/direction && echo "rising" >
> /sys/class/gpio/gpio18/edge
>
> # Part of DS2482 I2C 1-Wire Master to Volkszaehler 'RaspberryPI deamon'.
> echo ds2482 0x18 > /sys/bus/i2c/devices/i2c-1/new_device
>
> exit 0
Darauf achten, dass in den Zeile keine Zeilenumbrüche stattfinden.
Gruß
Udo
More information about the volkszaehler-users
mailing list