34 lines
952 B
Diff
34 lines
952 B
Diff
Index: ocfs2-tools/vendor/common/o2cb.init
|
|
===================================================================
|
|
--- ocfs2-tools.orig/vendor/common/o2cb.init
|
|
+++ ocfs2-tools/vendor/common/o2cb.init
|
|
@@ -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:
|
|
Index: ocfs2-tools/debugfs.ocfs2/Makefile
|
|
===================================================================
|
|
--- ocfs2-tools.orig/debugfs.ocfs2/Makefile
|
|
+++ ocfs2-tools/debugfs.ocfs2/Makefile
|
|
@@ -12,10 +12,11 @@ INCLUDES = -Iinclude -I$(TOPDIR)/libocfs
|
|
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_block_inode.c find_inode_paths.c dump_fs_locks.c
|
|
|