mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
Improve config for nCFTP
This commit is contained in:
parent
0e170adfa4
commit
b7001fb637
@ -7,14 +7,37 @@ config BR2_PACKAGE_NCFTP
|
|||||||
|
|
||||||
http://www.ncftp.com/ncftp/
|
http://www.ncftp.com/ncftp/
|
||||||
|
|
||||||
config BR2_PACKAGE_NCFTP_UTILS
|
menu "ncFTP tools selection"
|
||||||
bool "install utils (ncftpput, ncftpget, ncftpls)"
|
depends BR2_PACKAGE_NCFTP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NCFTP_GET
|
||||||
|
bool "NcFTPGet - command-line utility program"
|
||||||
|
default y
|
||||||
|
depends BR2_PACKAGE_NCFTP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NCFTP_PUT
|
||||||
|
bool "NcFTPPut - command-line utility program"
|
||||||
|
default y
|
||||||
|
depends BR2_PACKAGE_NCFTP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NCFTP_LS
|
||||||
|
bool "NcFTPLs - command-line utility program"
|
||||||
|
default y
|
||||||
|
depends BR2_PACKAGE_NCFTP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NCFTP_BATCH
|
||||||
|
bool "NcFTPBatch - background FTP program for individual users"
|
||||||
|
default y
|
||||||
|
depends BR2_PACKAGE_NCFTP
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NCFTP_SPOOLER
|
||||||
|
bool "NcFTPSpooler - spooler - not working properly"
|
||||||
default n
|
default n
|
||||||
depends on BR2_PACKAGE_NCFTP
|
depends BR2_PACKAGE_NCFTP
|
||||||
help
|
|
||||||
This will also install:
|
config BR2_PACKAGE_NCFTP_BOOKMARKS
|
||||||
- NcFTPGet - command-line utility program
|
bool "NcFTPBookmarks - not working properly"
|
||||||
- NcFTPPut - command-line utility program
|
default n
|
||||||
- NcFTPLs - command-line utility program
|
depends BR2_PACKAGE_NCFTP
|
||||||
- NcFTPBatch - background FTP program for individual users
|
|
||||||
- NcFTPSpooler - background batch FTP service for systems
|
endmenu
|
||||||
|
@ -10,8 +10,29 @@ NCFTP_DIR:=$(BUILD_DIR)/ncftp-$(NCFTP_VERSION)
|
|||||||
|
|
||||||
NCFTP_TARGET_BINS:=ncftp
|
NCFTP_TARGET_BINS:=ncftp
|
||||||
|
|
||||||
ifeq ($(strip $(BR2_PACKAGE_NCFTP_UTILS)),y)
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_GET)),y)
|
||||||
NCFTP_TARGET_BINS+=ncftpbatch ncftpbookmarks ncftpget ncftpls ncftpput
|
NCFTP_TARGET_BINS+=ncftpget
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_PUT)),y)
|
||||||
|
NCFTP_TARGET_BINS+=ncftpput
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_LS)),y)
|
||||||
|
NCFTP_TARGET_BINS+=ncftpls
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_BATCH)),y)
|
||||||
|
NCFTP_TARGET_BINS+=ncftpbatch
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_SPOOLER)),y)
|
||||||
|
#Someone needs to figure out what to do...
|
||||||
|
NCFTP_TARGET_BINS+=
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_PACKAGE_NCFTP_BOOKMARKS)),y)
|
||||||
|
NCFTP_TARGET_BINS+=ncftpbookmarks
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ncftp-source: $(DL_DIR)/$(NCFTP_SOURCE)
|
ncftp-source: $(DL_DIR)/$(NCFTP_SOURCE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user