This commit is contained in:
Trammell hudson 2018-02-26 16:33:34 -05:00
commit 7283a5397a
No known key found for this signature in database
GPG Key ID: 687A5005935B1533
3 changed files with 56 additions and 0 deletions

View File

@ -328,6 +328,7 @@ bin_modules-$(CONFIG_LVM2) += lvm2
bin_modules-$(CONFIG_XEN) += xen
bin_modules-$(CONFIG_DROPBEAR) += dropbear
bin_modules-$(CONFIG_FLASHTOOLS) += flashtools
bin_modules-$(CONFIG_NEWT) += newt
$(foreach m, $(bin_modules-y), \
$(call map,initrd_bin_add,$(call bins,$m)) \
@ -458,6 +459,8 @@ module_dirs := \
$(util-linux_dir) \
$(zlib_dir) \
$(kernel-headers_dir) \
$(slang_dir) \
$(newt_dir) \
modules.clean:
for dir in $(module_dirs) \

24
modules/newt Normal file
View File

@ -0,0 +1,24 @@
modules-$(CONFIG_NEWT) += newt
newt_depends := popt slang $(musl_dep)
newt_version := 0.52.20
newt_dir := newt-$(newt_version)
newt_tar := newt-$(newt_version).tar.gz
newt_url := https://releases.pagure.org/newt/$(newt_tar)
newt_hash := 8d66ba6beffc3f786d4ccfee9d2b43d93484680ef8db9397a4fb70b5adbb6dbc
newt_target := \
$(MAKE_JOBS) \
$(CROSS_TOOLS) \
newt_output := \
whiptail \
newt_libraries := \
libnewt.so.0.52 \
newt_configure := ./autogen.sh; ./configure \
$(CROSS_TOOLS) \
--prefix "/" \
--host i386-elf-linux \

29
modules/slang Normal file
View File

@ -0,0 +1,29 @@
modules-$(CONFIG_SLANG) += slang
slang_version := 2.3.1a
slang_dir := slang-$(slang_version)
slang_tar := slang-$(slang_version).tar.bz2
slang_url := https://www.jedsoft.org/releases/slang/$(slang_tar)
slang_hash := 54f0c3007fde918039c058965dffdfd6c5aec0bad0f4227192cc486021f08c36
slang_configure := ./configure \
$(CROSS_TOOLS) \
--prefix "/" \
--host i386-elf-linux \
--with-png=no \
--with-pcre=no \
--with-onig=no \
&& mkdir src/elfobjs
slang_target := \
$(MAKE_JOBS) \
$(CROSS_TOOLS) \
&& $(MAKE) \
-C "$(build)/$(slang_dir)" \
$(CROSS_TOOLS) \
DESTDIR="$(INSTALL)" \
install
slang_libraries := src/elfobjs/libslang.so.2
slang_depends := $(musl_dep)