mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
a4ba76fd90
Just some minor clean ups like fixing whitespace and sorting things. I added (bash)/removed (libusb) white space in order to look like the other modules. I sorted the --enable/--disable/--with blocks so that common stuff looked similar which should aid in comparing modules. I also removed a couple of duplicate config options (--disable-fallback-curses & --disable-regex). Signed-off-by: Manuel Mendez <github@i.m.mmlb.dev> Signed-off-by: Thierry Laurion <insurgo@riseup.net>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
modules-$(CONFIG_UTIL_LINUX) += util-linux
|
|
|
|
util-linux_version := 2.29.2
|
|
util-linux_dir := util-linux-$(util-linux_version)
|
|
util-linux_tar := util-linux-$(util-linux_version).tar.xz
|
|
util-linux_url := https://www.kernel.org/pub/linux/utils/util-linux/v2.29/$(util-linux_tar)
|
|
util-linux_hash := accea4d678209f97f634f40a93b7e9fcad5915d1f4749f6c47bee6bf110fe8e3
|
|
|
|
util-linux_configure := \
|
|
$(CROSS_TOOLS) \
|
|
CFLAGS="-Os" \
|
|
./configure \
|
|
--host $(MUSL_ARCH)-elf-linux \
|
|
--prefix "/" \
|
|
--oldincludedir "$(INSTALL)/include" \
|
|
--disable-all-programs \
|
|
--disable-bash-completion \
|
|
--enable-agetty \
|
|
--enable-libblkid \
|
|
--enable-libuuid \
|
|
--without-ncurses \
|
|
--without-ncursesw \
|
|
--without-python \
|
|
--without-tinfo \
|
|
--without-udev \
|
|
|
|
|
|
util-linux_target := \
|
|
$(MAKE_JOBS) \
|
|
$(CROSS_TOOLS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
install && \
|
|
rm $(INSTALL)/lib/libblkid.la && \
|
|
rm $(INSTALL)/lib/libuuid.la
|
|
|
|
util-linux_libraries += \
|
|
.libs/libuuid.so.1 \
|
|
.libs/libblkid.so.1 \
|
|
|
|
util-linux_agetty-$(CONFIG_USE_AGETTY) := agetty
|
|
util-linux_output := $(util-linux_agetty-y)
|
|
|
|
util-linux_depends := $(musl_dep)
|