rpms/kexec-tools/devel manifest, 1.2, 1.3 mkdumprd2_functions, 1.1, 1.2

Neil Horman nhorman at fedoraproject.org
Wed May 20 15:13:31 UTC 2009


Author: nhorman

Update of /cvs/extras/rpms/kexec-tools/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25229

Modified Files:
	manifest mkdumprd2_functions 
Log Message:
Fixing an ldd error leak, adding some runtime scripts and udev


Index: manifest
===================================================================
RCS file: /cvs/extras/rpms/kexec-tools/devel/manifest,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- manifest	20 May 2009 00:34:41 -0000	1.2
+++ manifest	20 May 2009 15:13:00 -0000	1.3
@@ -11,7 +11,6 @@
 # 1) reg
 #    reg <source file> <dest path>
 #    A regular file copy from the source to the dst directory
-#
 # 2) creg
 #    creg <source file> <dest path>
 #    like reg, but only copy if the source file exists
@@ -47,6 +46,13 @@
 #################################################### 
 exec	populate_kdump_std_files
 
+
+#################################################### 
+# Pull in udev so that we can easily setup block 
+# devices for lvm and all that
+####################################################
+exec	populate_udev_files
+
 ####################################################
 # This is a rudimentary module population script
 # It looks at the currently loaded modules, copies them
@@ -57,12 +63,6 @@ exec	populate_kdump_std_files
 exec	generate_module_list
 
 ###################################################
-# If we have one, copy the critical disk list 
-# so we don't try to start lvm/mdraid to early
-###################################################
-creg	/etc/kdump-adv-conf/critical_disks	/etc
-
-###################################################
 # Lets get all our lvm and mdraid configs on board
 ###################################################
 creg	/etc/lvm/lvm.conf /etc/lvm
@@ -77,4 +77,4 @@ gen	awk	/etc/fstab	'/^[^#]/{print $1 " /
 # Grab the standard initscript to capture to the local
 # rootfs
 ###################################################
-ren	/usr/share/kexec-tools/kdumpinit.rootfs	/init
+#ren	/usr/share/kexec-tools/kdumpinit.rootfs	/init


Index: mkdumprd2_functions
===================================================================
RCS file: /cvs/extras/rpms/kexec-tools/devel/mkdumprd2_functions,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- mkdumprd2_functions	18 May 2009 01:16:40 -0000	1.1
+++ mkdumprd2_functions	20 May 2009 15:13:00 -0000	1.2
@@ -13,7 +13,7 @@ load_dependent_libs()
 	local BIN=$1
 	local LIB=""
 
-	ldd $BIN | grep -q "not a dynamic executable"
+	ldd $BIN 2>/dev/null | grep -q "not a dynamic executable"
 	if [ $? == 0 ]
 	then
 		#There are no dependencies, we're done




More information about the scm-commits mailing list