aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/dhcdbd/dhcdbd_3.0.bb
blob: c894c7a366f889c4214d1ccf1c355f86d794d255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
DESCRIPTION = "DBus-enabled dhcp client"
SECTION = "net"
LICENSE = "GPL"
DEPENDS = "dbus"
RDEPENDS_${PN} = "dhcp-client"
PR = "r1"

SRC_URI = "https://fedorahosted.org/releases/d/h/dhcdbd/dhcdbd-${PV}.tar.bz2 \
           file://dbus_connection_unref.patch \
           file://paths.patch \
           file://dhcdbd"

inherit update-rc.d

do_compile() {
	CC=${TARGET_SYS}-gcc DESTDIR=${prefix} make
}

do_install() {
	DESTDIR=${D} make install
	install -d ${D}/etc/init.d
	install -m 0755 ${WORKDIR}/dhcdbd ${D}/etc/init.d/
}

INITSCRIPT_NAME = dhcdbd
INITSCRIPT_PARAMS = "start 30 2 3 4 5 . stop 30 0 1 6 ."
FILES_${PN} += "${sysconfdir} ${datadir}/dbus-1 ${base_sbindir}/*"

SRC_URI[md5sum] = "5316b1a0b3a3d53e972374627546d0bf"
SRC_URI[sha256sum] = "c62d5916dbd4d3148bd4deff355c3dfcb8092c2d9918d62dd24030e01c28361a"
ption> OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/boot.py
blob: e1ad88a17443ef1e76613903b1532bc90ad13b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# SPDX-License-Identifier: MIT
#

from subprocess import Popen, PIPE
import time

from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
from oeqa.core.decorator.oetimeout import OETimeout
from oeqa.core.decorator.data import skipIfQemu

class BootTest(OERuntimeTestCase):

    @OETimeout(120)
    @skipIfQemu()
    @OETestDepends(['ssh.SSHTest.test_ssh'])
    def test_reboot(self):
        output = ''
        count = 0
        (status, output) = self.target.run('reboot -h')
        while count < 5:
            time.sleep(5)
            cmd = 'ping -c 1 %s' % self.target.ip
            proc = Popen(cmd, shell=True, stdout=PIPE)
            output += proc.communicate()[0].decode('utf-8')
            if proc.poll() == 0:
                count += 1
            else:
                count = 0
        msg = ('Expected 5 consecutive, got %d.\n'
               'ping output is:\n%s' % (count,output))
        self.assertEqual(count, 5, msg = msg)