[source] kobs-ng: add header for integer definitions

LEDE Commits lede-commits at lists.infradead.org
Thu Nov 16 13:57:53 PST 2017


mkresin pushed a commit to source.git, branch master:
https://git.lede-project.org/a479c79818cb9fe3913128f94340aebdfb732111

commit a479c79818cb9fe3913128f94340aebdfb732111
Author: Simon Wunderlich <sw at simonwunderlich.de>
AuthorDate: Thu Nov 9 18:06:49 2017 +0100

    kobs-ng: add header for integer definitions
    
    My compilation failed because of missing uint.* definitions:
    
    In file included from mtd.h:33:0,
                     from bootstream.c:35:
    BootControlBlocks.h:58:2: error: unknown type name 'uint8_t'
      uint8_t m_u8DataSetup;
      ^
    BootControlBlocks.h:59:2: error: unknown type name 'uint8_t'
      uint8_t m_u8DataHold;
      ^
    BootControlBlocks.h:60:2: error: unknown type name 'uint8_t'
      uint8_t m_u8AddressSetup;
      ^
    BootControlBlocks.h:61:2: error: unknown type name 'uint8_t'
      uint8_t m_u8DSAMPLE_TIME;
    
    Adding the header file fixes the problem.
    
    Signed-off-by: Simon Wunderlich <sw at simonwunderlich.de>
    [fold changes into 001-compile.patch]
    Signed-off-by: Mathias Kresin <dev at kresin.me>
---
 package/boot/kobs-ng/patches/001-compile.patch | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/boot/kobs-ng/patches/001-compile.patch b/package/boot/kobs-ng/patches/001-compile.patch
index 67da93a..8648dc8 100644
--- a/package/boot/kobs-ng/patches/001-compile.patch
+++ b/package/boot/kobs-ng/patches/001-compile.patch
@@ -10,13 +10,14 @@
  #include <errno.h>
 --- a/src/mtd.h
 +++ b/src/mtd.h
-@@ -25,8 +25,10 @@
+@@ -25,8 +25,11 @@
  #ifndef MTD_H
  #define MTD_H
  
 +#define _GNU_SOURCE
  #include <mtd/mtd-user.h>
  #include <endian.h>
++#include <stdint.h>
 +#include <fcntl.h>
  
  #include "BootControlBlocks.h"



More information about the lede-commits mailing list