mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
a4d7654b1e
This development branch builds a NERF firmware for the Dell R630 server. It does not use coreboot; instead it branches directly from the vendor's PEI core into Linux and the Heads runtime that is setup to be run as an EFI executable.
32 lines
836 B
Plaintext
32 lines
836 B
Plaintext
# dropbear is a tiny ssh client
|
|
modules-$(CONFIG_DROPBEAR) += dropbear
|
|
|
|
dropbear_version := 2016.74
|
|
dropbear_dir := dropbear-$(dropbear_version)
|
|
dropbear_tar := dropbear-$(dropbear_version).tar.bz2
|
|
dropbear_url := http://matt.ucc.asn.au/dropbear/releases/$(dropbear_tar)
|
|
dropbear_hash := 2720ea54ed009af812701bcc290a2a601d5c107d12993e5d92c0f5f81f718891
|
|
|
|
dropbear_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host i386-elf-linux \
|
|
--prefix "/" \
|
|
--disable-syslog \
|
|
--disable-lastlog \
|
|
--disable-utmp \
|
|
--disable-utmpx \
|
|
--disable-wtmp \
|
|
--disable-wtmpx \
|
|
|
|
dropbear_config :=
|
|
dropbear_output := ssh scp dropbear
|
|
dropbear_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
dbclient scp dropbear \
|
|
&& \
|
|
cp $(build)/$(dropbear_dir)/dbclient $(build)/$(dropbear_dir)/ssh
|
|
|
|
dropbear_depends := zlib $(musl_dep)
|