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@simonwunderlich.de>
[fold changes into 001-compile.patch]
Signed-off-by: Mathias Kresin <dev@kresin.me>
v19.07.3_mercusys_ac12_duma
Simon Wunderlich 7 years ago committed by Mathias Kresin
parent f922b0c191
commit a479c79818

@ -10,13 +10,14 @@
#include <errno.h> #include <errno.h>
--- a/src/mtd.h --- a/src/mtd.h
+++ b/src/mtd.h +++ b/src/mtd.h
@@ -25,8 +25,10 @@ @@ -25,8 +25,11 @@
#ifndef MTD_H #ifndef MTD_H
#define MTD_H #define MTD_H
+#define _GNU_SOURCE +#define _GNU_SOURCE
#include <mtd/mtd-user.h> #include <mtd/mtd-user.h>
#include <endian.h> #include <endian.h>
+#include <stdint.h>
+#include <fcntl.h> +#include <fcntl.h>
#include "BootControlBlocks.h" #include "BootControlBlocks.h"

Loading…
Cancel
Save