Move buildroot to bsp directory.
This commit is contained in:
16
bsp/buildroot/package/libuci/Config.in
Normal file
16
bsp/buildroot/package/libuci/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_LIBUCI
|
||||
bool "libuci"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_LIBUBOX
|
||||
help
|
||||
This library originates from the OpenWrt project to
|
||||
handle the configuration file infrastructure, but can
|
||||
also be used for the same purposes in projects other
|
||||
than OpenWrt.
|
||||
|
||||
This package will also install CLI tool uci.
|
||||
|
||||
http://wiki.openwrt.org/doc/techref/uci
|
||||
|
||||
comment "libuci needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
22
bsp/buildroot/package/libuci/libuci.mk
Normal file
22
bsp/buildroot/package/libuci/libuci.mk
Normal file
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# libuci
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBUCI_VERSION = e339407372ffc70b1451e4eda218c01aa95a6a7f
|
||||
LIBUCI_SITE = git://nbd.name/uci.git
|
||||
LIBUCI_LICENSE = LGPLv2.1
|
||||
LIBUCI_INSTALL_STAGING = YES
|
||||
LIBUCI_DEPENDENCIES = libubox
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LUA_5_1),y)
|
||||
LIBUCI_DEPENDENCIES += lua
|
||||
LIBUCI_CONF_OPTS += -DBUILD_LUA=ON \
|
||||
-DLUAPATH=/usr/lib/lua/5.1 \
|
||||
-DLUA_CFLAGS=-I$(STAGING_DIR)/usr/include
|
||||
else
|
||||
LIBUCI_CONF_OPTS += -DBUILD_LUA=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user