2005-10-29 09:01:33 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# dropbear
|
|
|
|
#
|
|
|
|
#############################################################
|
2008-11-14 09:47:04 +01:00
|
|
|
DROPBEAR_VERSION:=0.52
|
2007-07-11 16:06:06 +02:00
|
|
|
DROPBEAR_SOURCE:=dropbear-$(DROPBEAR_VERSION).tar.gz
|
2005-10-29 09:01:33 +02:00
|
|
|
DROPBEAR_SITE:=http://matt.ucc.asn.au/dropbear/releases/
|
2007-07-11 16:06:06 +02:00
|
|
|
DROPBEAR_DIR:=$(BUILD_DIR)/dropbear-$(DROPBEAR_VERSION)
|
2006-10-01 17:17:52 +02:00
|
|
|
DROPBEAR_CAT:=$(ZCAT)
|
2005-10-29 09:01:33 +02:00
|
|
|
DROPBEAR_BINARY:=dropbearmulti
|
|
|
|
DROPBEAR_TARGET_BINARY:=usr/sbin/dropbear
|
|
|
|
|
|
|
|
$(DL_DIR)/$(DROPBEAR_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(DROPBEAR_SITE)/$(DROPBEAR_SOURCE)
|
|
|
|
|
|
|
|
dropbear-source: $(DL_DIR)/$(DROPBEAR_SOURCE)
|
|
|
|
|
|
|
|
$(DROPBEAR_DIR)/.unpacked: $(DL_DIR)/$(DROPBEAR_SOURCE)
|
|
|
|
$(DROPBEAR_CAT) $(DL_DIR)/$(DROPBEAR_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
|
|
toolchain/patch-kernel.sh $(DROPBEAR_DIR) package/dropbear/ dropbear\*.patch
|
|
|
|
$(SED) 's,^/\* #define DROPBEAR_MULTI.*,#define DROPBEAR_MULTI,g' $(DROPBEAR_DIR)/options.h
|
2008-06-30 15:35:14 +02:00
|
|
|
$(SED) 's,^#define XAUTH_COMMAND.*/xauth,#define XAUTH_COMMAND "/usr/bin/xauth,g' $(DROPBEAR_DIR)/options.h
|
2007-03-07 15:32:22 +01:00
|
|
|
$(CONFIG_UPDATE) $(DROPBEAR_DIR)
|
2007-08-11 20:43:58 +02:00
|
|
|
touch $@
|
2005-10-29 09:01:33 +02:00
|
|
|
|
|
|
|
$(DROPBEAR_DIR)/.configured: $(DROPBEAR_DIR)/.unpacked
|
|
|
|
(cd $(DROPBEAR_DIR); rm -rf config.cache; \
|
|
|
|
autoconf; \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2007-06-27 14:01:27 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
2005-10-29 09:01:33 +02:00
|
|
|
./configure \
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
$(DISABLE_NLS) \
|
2006-01-24 16:53:15 +01:00
|
|
|
--with-shared \
|
2007-08-21 21:20:18 +02:00
|
|
|
)
|
2007-08-11 20:43:58 +02:00
|
|
|
touch $@
|
2005-10-29 09:01:33 +02:00
|
|
|
|
|
|
|
$(DROPBEAR_DIR)/$(DROPBEAR_BINARY): $(DROPBEAR_DIR)/.configured
|
2008-11-14 12:06:01 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) LD=$(TARGET_CC) \
|
2005-10-29 09:01:33 +02:00
|
|
|
PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" \
|
|
|
|
MULTI=1 SCPPROGRESS=1 -C $(DROPBEAR_DIR)
|
|
|
|
|
|
|
|
$(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY): $(DROPBEAR_DIR)/$(DROPBEAR_BINARY)
|
2007-08-11 20:43:58 +02:00
|
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/sbin
|
|
|
|
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/bin
|
|
|
|
$(INSTALL) -m 755 $(DROPBEAR_DIR)/$(DROPBEAR_BINARY) \
|
2005-10-29 09:01:33 +02:00
|
|
|
$(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
2007-10-01 18:15:31 +02:00
|
|
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
2005-10-29 09:01:33 +02:00
|
|
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/scp
|
|
|
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/ssh
|
|
|
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dbclient
|
|
|
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearkey
|
|
|
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearconvert
|
2007-09-19 16:11:28 +02:00
|
|
|
mkdir -p $(TARGET_DIR)/etc/init.d
|
2008-04-09 09:35:12 +02:00
|
|
|
$(INSTALL) -m 755 package/dropbear/S50dropbear $(TARGET_DIR)/etc/init.d/S50dropbear
|
2005-10-29 09:01:33 +02:00
|
|
|
|
|
|
|
dropbear: uclibc zlib $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
|
|
|
|
|
|
|
dropbear-clean:
|
|
|
|
-$(MAKE) -C $(DROPBEAR_DIR) clean
|
2008-03-27 16:42:42 +01:00
|
|
|
rm -f $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/{scp,ssh,dbclient,dropbearkey,dropbearconvert}
|
|
|
|
rm -f $(TARGET_DIR)/etc/init.d/S50dropbear
|
2005-10-29 09:01:33 +02:00
|
|
|
|
|
|
|
dropbear-dirclean:
|
|
|
|
rm -rf $(DROPBEAR_DIR)
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_DROPBEAR),y)
|
2005-10-29 09:01:33 +02:00
|
|
|
TARGETS+=dropbear
|
|
|
|
endif
|