mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 17:29:40 +01:00
We've been removing PR values from recipes at upgrade time for a while. In general anyone maintaining a binary distro would end up having to curate these themselves so the values in OE-Core aren't really that useful anymore. In many ways it makes sense to clear out the remaining ones (which are mostly for 'config' recipes that are unlikely to increase in PV) and leave a clean slate for anyone implementing a binary distro config. References are left in meta-selftest since the tests there do involve them and their removal upon upgrade. (From OE-Core rev: d4c346e8ab8f3cae25d1b01c7331ed9f6d4f96ef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
773 B
BlitzBasic
25 lines
773 B
BlitzBasic
SUMMARY = "Initscript for enabling USB gadget Ethernet"
|
|
DESCRIPTION = "This module allows ethernet emulation over USB, allowing for \
|
|
all sorts of nifty things like SSH and NFS in one go plus charging over the \
|
|
same wire, at higher speeds than most Wifi connections."
|
|
HOMEPAGE = "http://linux-sunxi.org/USB_Gadget/Ethernet"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
|
|
SRC_URI = "file://usb-gether \
|
|
file://COPYING.GPL"
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install usb-gether ${D}${sysconfdir}/init.d
|
|
}
|
|
|
|
inherit update-rc.d allarch
|
|
|
|
INITSCRIPT_NAME = "usb-gether"
|
|
INITSCRIPT_PARAMS = "start 99 5 2 . stop 20 0 1 6 ."
|