Hi,
I made a small package and wanted to give it a try:
git clone git://git.openwrt.org/14.07/openwrt.git
cd openwrt
./scripts/feeds update -a
./scripts/feeds install -a
#I copy my package into ./package/ at this point
make defconfig
make menuconfigThe problem now is that the package does not show up in the menu.
When I try the search (type / and enter the search term), then it shows up.
But still, it is not listed in the menu or mentioned in the .config file.
I deleted ./tmp/ and did "make defconfig" - no change.
Is there anything I can try?
Here is the Makefile of the package:
include $(TOPDIR)/rules.mk
PKG_NAME:=foobar
PKG_VERSION:=1.0
PKG_RELEASE:=1
PKG_LICENSE:=GPL-3.0
include $(INCLUDE_DIR)/package.mk
define Package/foobar
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread +libssp
TITLE:=Open Foo
URL:=https://github.com/foobar/foobar
SUBMENU:=VPN
endef
define Package/foobar/description
foobar
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
$(CP) ./src/* $(PKG_BUILD_DIR)/
endef
define Package/foobar/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/foobar $(1)/usr/bin/
endef
$(eval $(call BuildPackage,foobar))