mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 13:11:57 +02:00
Reuse as much as possible from oe-core Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
11 lines
180 B
Bash
11 lines
180 B
Bash
#!/bin/sh
|
|
|
|
[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1
|
|
|
|
case "$1" in
|
|
|
|
deconfig|renew|bound)
|
|
/usr/sbin/avahi-autoipd -k $interface 2> /dev/null
|
|
;;
|
|
esac
|