From a764ff2e68cd9ca7fb76ceec34cb6e4a1a906446 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Fri, 21 Sep 2012 17:39:39 +0000 Subject: [PATCH] Update udev-lfs for sytemd-190 git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9997 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- udev-lfs/Makefile.lfs | 11 ++++++----- udev-lfs/cfg.h | 9 +++++++-- 2 files changed, 13 insertions(+), 7 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" +/* Version number of package */ +#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