aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-extended/xen/lwip.inc
blob: e0836332613b1ff75be88ee633b65b3247771425 (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
# Copyright (C) 2018 kebodiker <kurt.bodiker@braintrust-us.com>
# Released under the MIT license (see COPYING.MIT for the terms)

require stubdom.inc

# clear this out to break dependency circle
DEPENDS = ""

# Nothing to configure or compile
# For stubdoms, lwip is basically a source package with a couple of patches applied.
do_configure[noexec] = "1"
do_compile[noexec] = "1"

# needed because this directory isn't typically part of a sysroot
SYSROOT_DIRS += "${prefix}/lwip"

FILES_${PN} = "\
    ${prefix} \
"

do_install() {
    install -d ${D}${prefix}/lwip
    cp -r -t ${D}${prefix}/lwip ${S}/src/*
}