aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--udev-lfs/Makefile.lfs11
-rw-r--r--udev-lfs/cfg.h7
2 files changed, 12 insertions, 6 deletions
diff --git a/udev-lfs/Makefile.lfs b/udev-lfs/Makefile.lfs
index 9bce8cf2a..0c7a10f24 100644
--- a/udev-lfs/Makefile.lfs
+++ b/udev-lfs/Makefile.lfs
@@ -4,7 +4,7 @@
# vim: tabstop=3
SHELL=/bin/bash
-VERSION=188
+VERSION=190
ifeq ($(V),)
VB = @
@@ -94,7 +94,8 @@ UDEVD_SRCS = udev-ctrl.c \
udev-builtin-kmod.c \
udev-builtin-uaccess.c \
udev-builtin-usb_id.c \
- udev-builtin-input_id.c
+ udev-builtin-input_id.c \
+ udev-builtin-btrfs.c
UDEVD_OBJS := $(addprefix build/, $(UDEVD_SRCS:.c=.o))
@@ -119,7 +120,8 @@ UDEV_ADMIN_SRCS = udevadm.c \
udev-builtin-kmod.c \
udev-builtin-uaccess.c \
udev-builtin-usb_id.c \
- udev-builtin-input_id.c
+ udev-builtin-input_id.c \
+ udev-builtin-btrfs.c
UDEV_ADMIN_OBJS := $(addprefix build/, $(UDEV_ADMIN_SRCS:.c=.o))
@@ -204,8 +206,7 @@ build/udevd: build/$(COMMON_LIB) build/udevd.o
build/udevadm: $(UDEV_ADMIN_OBJS)
@echo LINK $@
- $(VB)gcc $(UDEV_ADMIN_OBJS) -o $@ $(LDFLAGS2) build/$(COMMON_LIB) \
- build/udev-local.a
+ $(VB)gcc $(UDEV_ADMIN_OBJS) -o $@ $(LDFLAGS2) build/$(COMMON_LIB)
$(VB)strip --strip-unneeded $@
build/accelerometer: build/accelerometer.o build/$(COMMON_LIB)
diff --git a/udev-lfs/cfg.h b/udev-lfs/cfg.h
index 473a2d89f..695c90b53 100644
--- a/udev-lfs/cfg.h
+++ b/udev-lfs/cfg.h
@@ -39,6 +39,11 @@
/* Enable GNU extensions on systems that have them. */
# define _GNU_SOURCE 1
+
/* Version number of package */
-#define VERSION "188"
+#define VERSION "190"
+#define HAVE_DECL_PIVOT_ROOT 0
+#define HAVE_DECL_GETTID 0
+#define HAVE_NAME_TO_HANDLE_AT 1
+#define HAVE___SECURE_GETENV 1