mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 06:36:34 +00:00
rsh-redone: enable rshd and rlogind
[Thomas: add dependency on linux-pam for rshd and rlogind, adjust commit message.] Signed-off-by Andreas Ehmanns <universeii@gmx.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
36ed6bec09
commit
b7e5163ea2
@ -16,15 +16,23 @@ if BR2_PACKAGE_RSH_REDONE
|
|||||||
config BR2_PACKAGE_RSH_REDONE_RLOGIN
|
config BR2_PACKAGE_RSH_REDONE_RLOGIN
|
||||||
bool "rlogin"
|
bool "rlogin"
|
||||||
|
|
||||||
# requires PAM
|
config BR2_PACKAGE_RSH_REDONE_RLOGIND
|
||||||
#config BR2_PACKAGE_RSH_REDONE_RLOGIND
|
bool "rlogind"
|
||||||
# bool "rlogind"
|
select BR2_PACKAGE_LINUX_PAM
|
||||||
|
depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
|
||||||
|
|
||||||
|
comment "rlogind needs a toolchain w/ wchar, locale"
|
||||||
|
depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR)
|
||||||
|
|
||||||
config BR2_PACKAGE_RSH_REDONE_RSH
|
config BR2_PACKAGE_RSH_REDONE_RSH
|
||||||
bool "rsh"
|
bool "rsh"
|
||||||
|
|
||||||
# requires PAM
|
config BR2_PACKAGE_RSH_REDONE_RSHD
|
||||||
#config BR2_PACKAGE_RSH_REDONE_RSHD
|
bool "rshd"
|
||||||
# bool "rshd"
|
select BR2_PACKAGE_LINUX_PAM
|
||||||
|
depends on BR2_ENABLE_LOCALE && BR2_USE_WCHAR
|
||||||
|
|
||||||
|
comment "rshd needs a toolchain w/ wchar, locale"
|
||||||
|
depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -13,8 +13,12 @@ rsh-redone-bin-$(BR2_PACKAGE_RSH_REDONE_RCP) += rcp
|
|||||||
rsh-redone-bin-$(BR2_PACKAGE_RSH_REDONE_RLOGIN) += rlogin
|
rsh-redone-bin-$(BR2_PACKAGE_RSH_REDONE_RLOGIN) += rlogin
|
||||||
rsh-redone-bin-$(BR2_PACKAGE_RSH_REDONE_RSH) += rsh
|
rsh-redone-bin-$(BR2_PACKAGE_RSH_REDONE_RSH) += rsh
|
||||||
rsh-redone-sbin-y =
|
rsh-redone-sbin-y =
|
||||||
rsh-redone-sbin-$(BR2_PACKAGE_RSH_REDONE_RLOGIND) += rlogind
|
rsh-redone-sbin-$(BR2_PACKAGE_RSH_REDONE_RLOGIND) += in.rlogind
|
||||||
rsh-redone-sbin-$(BR2_PACKAGE_RSH_REDONE_RSHD) += rshd
|
rsh-redone-sbin-$(BR2_PACKAGE_RSH_REDONE_RSHD) += in.rshd
|
||||||
|
|
||||||
|
ifneq ($(BR2_PACKAGE_RSH_REDONE_RSHD)$(BR2_PACKAGE_RSH_REDONE_RLOGIND),)
|
||||||
|
RSH_REDONE_DEPENDENCIES = linux-pam
|
||||||
|
endif
|
||||||
|
|
||||||
define RSH_REDONE_BUILD_CMDS
|
define RSH_REDONE_BUILD_CMDS
|
||||||
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) BIN="$(rsh-redone-bin-y)" SBIN="$(rsh-redone-sbin-y)"
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) BIN="$(rsh-redone-bin-y)" SBIN="$(rsh-redone-sbin-y)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user