32 lines
877 B
Diff
32 lines
877 B
Diff
diff -ru ocfs2-tools-0.99.2.orig/vendor/common/o2cb.init ocfs2-tools-0.99.2/vendor/common/o2cb.init
|
|
--- ocfs2-tools-0.99.2.orig/vendor/common/o2cb.init 2005-03-20 20:57:01.000000000 +0100
|
|
+++ ocfs2-tools-0.99.2/vendor/common/o2cb.init 2005-03-30 15:01:43.836820411 +0200
|
|
@@ -6,8 +6,8 @@
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: o2cb
|
|
-# Required-Start: $network
|
|
-# Should-Start:
|
|
+# Required-Start: $network $syslog $named
|
|
+# Should-Start: sshd iscsi
|
|
# Required-Stop:
|
|
# Default-Start: 2 3 5
|
|
# Default-Stop:
|
|
|
|
--- ocfs2-tools-0.99.2.orig/debugfs.ocfs2/Makefile
|
|
+++ ocfs2-tools-0.99.2.orig/debugfs.ocfs2/Makefile
|
|
@@ -12,10 +12,11 @@
|
|
INCLUDES += $(GLIB_CFLAGS)
|
|
|
|
ifdef OCFS2_DEBUG
|
|
-CFLAGS = -Wall -O -ggdb
|
|
+OPTS = -O -ggdb
|
|
else
|
|
-CFLAGS = -Wall -O2
|
|
+OPTS = -O2
|
|
endif
|
|
+CFLAGS=-Wall $(OPTS)
|
|
|
|
CFILES = main.c commands.c dump.c utils.c journal.c find_inode_paths.c dump_fs_locks.c
|
|
|