Community maintained packages for difos.
On the OpenWrt build bots the compile currently fails: make[8]: Entering directory '/builder/shared-workdir/build/sdk/build_dir/target-arm_cortex-a5+vfpv4_musl_eabi/libmbim-1.20.0/src/common' CC libmbim_common_la-mbim-common.lo cc1: error: /builder/shared-workdir/build/sdk/staging_dir/target-arm_cortex-a5+vfpv4_musl_eabi/include: No such file or directory [-Werror=missing-include-dirs] cc1: all warnings being treated as errors The directory in question gets added to TARGET_CPPFLAGS by rules.mk. Nothing usually gets installed to that directory, so unsurprisingly it may not exist on the build bots. On first glance this problem cannot be reproduced. But once autoreconf is called this becomes possible. If called without "--enable-more-warnings", configure adds -Werror to the flags. This commit adds "--enable-more-warnings=yes" to the build. This way the extra warnings are kept in place, but they aren't turned into errors no more. "PKG_FIXUP:=autoreconf" is also added so that it's easier to forecast build failures on the build bots when preparing future pull request. Last but not least "--disable-silent-rules" is added, because more output is usually welcome for debugging, be it on the build bots or at home/the office. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net> |
||
---|---|---|
.circleci | ||
.github | ||
.keys | ||
admin | ||
devel | ||
fonts/dejavu-fonts-ttf | ||
ipv6/tayga | ||
kernel | ||
lang | ||
libs | ||
multimedia | ||
net | ||
sound | ||
utils | ||
.travis.yml | ||
.travis_do.sh | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md |
OpenWrt packages feed
Description
This is the OpenWrt "packages"-feed containing community-maintained build scripts, options and patches for applications, modules and libraries used within OpenWrt.
Installation of pre-built packages is handled directly by the opkg utility within your running OpenWrt system or by using the OpenWrt SDK on a build system.
Usage
This repository is intended to be layered on-top of an OpenWrt buildroot. If you do not have an OpenWrt buildroot installed, see the documentation at: OpenWrt Buildroot – Installation on the OpenWrt support site.
This feed is enabled by default. To install all its package definitions, run:
./scripts/feeds update packages
./scripts/feeds install -a -p packages
License
See LICENSE file.
Package Guidelines
See CONTRIBUTING.md file.