change #include "image.h" to <target/image.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "image.h" the following form should be used. #include <target/image.h> The exception is from .c files in the same directory.__archive__
parent
0241b1e105
commit
7da02a8330
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include "flash.h"
|
||||
#include "common.h"
|
||||
#include "image.h"
|
||||
#include <target/image.h>
|
||||
#include <helper/time_support.h>
|
||||
|
||||
static int flash_write_unlock(struct target *target, struct image *image, uint32_t *written, int erase, bool unlock);
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "flash.h"
|
||||
#include <target/embeddedice.h>
|
||||
#include "image.h"
|
||||
#include <target/image.h>
|
||||
#include <target/algorithm.h>
|
||||
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#endif
|
||||
|
||||
#include "flash.h"
|
||||
#include "image.h"
|
||||
#include <target/image.h>
|
||||
#include "../hello.h"
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
#include "image.h"
|
||||
#include <target/image.h>
|
||||
#include "flash.h"
|
||||
#include <helper/binarybuffer.h>
|
||||
#include <target/armv4_5.h>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "server.h"
|
||||
#include "flash.h"
|
||||
#include "gdb_server.h"
|
||||
#include "image.h"
|
||||
#include <target/image.h>
|
||||
#include <jtag/jtag.h>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue