Files
openwrt_yocto/meta-openwrt/recipes-networking/uqmi/uqmi_git.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

27 lines
861 B
BlitzBasic

# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "OpenWrt uqmi utility"
HOMEPAGE = "http://git.openwrt.org/?p=project/uqmi.git;a=summary"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=20;md5=3f7041e5710007661d762bb6043a69c6"
SECTION = "base"
DEPENDS = "libubox json-c"
SRC_URI = "git://git.openwrt.org/project/uqmi.git;protocol=https;branch=master \
file://001-fix-uninitialized-variable.patch \
"
SRCREV = "56cb2d4056fef132ccf78dfb6f3074ae5d109992"
S = "${WORKDIR}/git"
inherit cmake pkgconfig openwrt
B = "${S}"
# temporary solution until upstream gets fixed
# dev.c:217: error: storing the address of local variable 'complete' in '*req.complete'
CFLAGS += "-Wno-error=dangling-pointer"
FILES:${PN} += "${libdir}/*"