initial commit of current OpenBSC state

diff --git a/include/openbsc/debug.h b/include/openbsc/debug.h
new file mode 100644
index 0000000..c1db120
--- /dev/null
+++ b/include/openbsc/debug.h
@@ -0,0 +1,15 @@
+#ifndef _DEBUG_H
+#define _DEBUG_H
+
+#define DRLL		0x0001
+#define DCC		0x0002
+#define DMM		0x0004
+#define DRR		0x0008
+
+#ifdef DEBUG
+#define DEBUGP(ss, args, ...)	debugp(ss, args, ...)
+#else
+#define DEBUGP(xss, args, ...) 
+#endif
+
+#endif /* _DEBUG_H */