1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 08:29:41 +02:00

Rename config.h to app_config.h, as old name conflicts with autoconf.

This commit is contained in:
Peter Zotov 2011-04-07 14:11:22 +04:00
parent 8b4338fc90
commit 04ed523633
6 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include "config.h" #include "app_config.h"
#include "debug.h" #include "debug.h"
char **cfg_environ = NULL; char **cfg_environ = NULL;

View File

@ -27,7 +27,7 @@
#include "ingenic.h" #include "ingenic.h"
#include "usbdev.h" #include "usbdev.h"
#include "debug.h" #include "debug.h"
#include "config.h" #include "app_config.h"
#define HANDLE ingenic_handle_t *handle = hndl #define HANDLE ingenic_handle_t *handle = hndl
#define BUILDTYPE(cmdset, id) (((cmdset) << 16) | (0x##id & 0xFFFF)) #define BUILDTYPE(cmdset, id) (((cmdset) << 16) | (0x##id & 0xFFFF))

View File

@ -24,7 +24,7 @@
#include <errno.h> #include <errno.h>
#include "shell.h" #include "shell.h"
#include "config.h" #include "app_config.h"
#include "ingenic.h" #include "ingenic.h"
static int builtin_help(shell_context_t *ctx, int argc, char *argv[]); static int builtin_help(shell_context_t *ctx, int argc, char *argv[]);

View File

@ -23,7 +23,7 @@
#include <errno.h> #include <errno.h>
#include "shell.h" #include "shell.h"
#include "config.h" #include "app_config.h"
#include "ingenic.h" #include "ingenic.h"
static int spl_memtest(shell_context_t *ctx, int argc, char *argv[]); static int spl_memtest(shell_context_t *ctx, int argc, char *argv[]);

View File

@ -21,9 +21,9 @@
#include <stdlib.h> #include <stdlib.h>
#include "shell.h" #include "shell.h"
#include "config.h" #include "app_config.h"
#include "ingenic.h" #include "ingenic.h"
#include "config.h" #include <config.h>
static int usbboot_boot(shell_context_t *ctx, int argc, char *argv[]); static int usbboot_boot(shell_context_t *ctx, int argc, char *argv[]);
static int usbboot_load(shell_context_t *ctx, int argc, char *argv[]); static int usbboot_load(shell_context_t *ctx, int argc, char *argv[]);