diff options
| author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-16 10:32:42 +0000 | 
|---|---|---|
| committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-16 10:32:42 +0000 | 
| commit | 382045e5f16c5820fabb829c82b0b86a7efaf88f (patch) | |
| tree | d1b9244b6dde7607e9ae4b07b4e32fa69e0e475d | |
| parent | e7c233e67e59de139afd7b25fc590513a5563ddd (diff) | |
Package wpa-passphrase (#1275)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8788 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/wpa_supplicant/Makefile | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/package/wpa_supplicant/Makefile b/package/wpa_supplicant/Makefile index 644814556..a90196868 100644 --- a/package/wpa_supplicant/Makefile +++ b/package/wpa_supplicant/Makefile @@ -27,7 +27,6 @@ define Package/wpa-supplicant    URL:=http://hostap.epitest.fi/wpa_supplicant/  endef -  define Package/wpa-cli    SECTION:=net    CATEGORY:=Network @@ -36,6 +35,13 @@ define Package/wpa-cli    DESCRIPTION:=  endef +define Package/wpa-passphrase +  SECTION:=net +  CATEGORY:=Network +  DEPENDS:=wpa-supplicant +  TITLE:=Set WPA passphrase for a SSID +  DESCRIPTION:= +endef  define Build/Configure  	cp ./files/config.$(ARCH) $(PKG_BUILD_DIR)/.config @@ -65,5 +71,11 @@ define Package/wpa-cli/install  	$(CP) $(PKG_BUILD_DIR)/wpa_cli $(1)/usr/sbin/  endef +define Package/wpa-passphrase/install +	$(INSTALL_DIR) $(1)/usr/sbin +	$(INSTALL_BIN) $(PKG_BUILD_DIR)/wpa_passphrase $(1)/usr/sbin/ +endef +  $(eval $(call BuildPackage,wpa-supplicant))  $(eval $(call BuildPackage,wpa-cli)) +$(eval $(call BuildPackage,wpa-passphrase)) | 
