From 556e8184ea07f5171e8d3710854de38e9367b163 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Sat, 9 Feb 2008 17:28:36 +0200 Subject: [PATCH] Fixed udev to build always a static libvolume_id for now Note: This should be considered a temprorary solution as long as we have our legacy initrd implementation! --- filesystem/udev/udev.conf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/filesystem/udev/udev.conf b/filesystem/udev/udev.conf index 06923abe5..7eb4022ba 100644 --- a/filesystem/udev/udev.conf +++ b/filesystem/udev/udev.conf @@ -1,11 +1,11 @@ # --- SDE-COPYRIGHT-NOTE-BEGIN --- # This copyright note is auto-generated by ./scripts/Create-CopyPatch. -# +# # Filename: package/.../udev/udev.conf -# Copyright (C) 2007 The OpenSDE Project -# +# Copyright (C) 2007 - 2008 The OpenSDE Project +# # More information can be found in the files COPYING and README. -# +# # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; version 2 of the License. A copy of the @@ -74,10 +74,11 @@ var_append makeopt ' ' "LD=$CC" var_append makeopt ' ' 'DEBUG=true' -if [ "$SDECFG_STATIC" == "1" ]; then +# FIXME: For now we have to build it static by default because of our initrd! +#if [ "$SDECFG_STATIC" == "1" ]; then var_append makeopt ' ' "VOLUME_ID_STATIC=true" var_append patchfiles ' ' "$confdir/no_libvolume_id_so.diff" -fi +#fi # list of extra helpers to build and install hook_add postpatch 5 "export extras=\$( ls -1d extras/* | grep -v '\.sh' | tr '\n' ' ' )"