blob: e0836332613b1ff75be88ee633b65b3247771425 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001# Copyright (C) 2018 kebodiker <kurt.bodiker@braintrust-us.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4require stubdom.inc
5
6# clear this out to break dependency circle
7DEPENDS = ""
8
9# Nothing to configure or compile
10# For stubdoms, lwip is basically a source package with a couple of patches applied.
11do_configure[noexec] = "1"
12do_compile[noexec] = "1"
13
14# needed because this directory isn't typically part of a sysroot
15SYSROOT_DIRS += "${prefix}/lwip"
16
17FILES_${PN} = "\
18 ${prefix} \
19"
20
21do_install() {
22 install -d ${D}${prefix}/lwip
23 cp -r -t ${D}${prefix}/lwip ${S}/src/*
24}