Description: don't fail if /dev/kmsg isn't set up
 It's not crucial, and containers can be set up with ro root which will
 prevent it from working anywa.
 Note - this is already in the github staging tree.
Author: Serge Hallyn <serge.hallyn@ubuntu.com>
Forwarded: no

Index: lxc-0.8.0~rc1/src/lxc/conf.c
===================================================================
--- lxc-0.8.0~rc1.orig/src/lxc/conf.c	2013-01-08 10:25:34.376389708 -0600
+++ lxc-0.8.0~rc1/src/lxc/conf.c	2013-01-08 10:25:34.368389710 -0600
@@ -2232,10 +2232,8 @@
 		return -1;
 	}
 
-	if (setup_kmsg(&lxc_conf->rootfs, &lxc_conf->console)) {
+	if (setup_kmsg(&lxc_conf->rootfs, &lxc_conf->console)) // don't fail
 		ERROR("failed to setup kmsg for '%s'", name);
-		return -1;
-	}
 
 	if (setup_tty(&lxc_conf->rootfs, &lxc_conf->tty_info, lxc_conf->ttydir)) {
 		ERROR("failed to setup the ttys for '%s'", name);
