Browse Source

ubi_tools: add workaround for bad kernel headers. Closes 4838

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 12 years ago
parent
commit
7fe1e3f161
1 changed files with 4 additions and 0 deletions
  1. 4 0
      miscutils/ubi_tools.c

+ 4 - 0
miscutils/ubi_tools.c

@@ -60,6 +60,10 @@
 //kbuild:lib-$(CONFIG_UBIUPDATEVOL) += ubi_tools.o
 
 #include "libbb.h"
+/* Some versions of kernel have broken headers, need this hack */
+#ifndef __packed
+# define __packed __attribute__((packed))
+#endif
 #include <mtd/ubi-user.h>
 
 #define OPTION_M  (1 << 0)