mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-30 05:19:22 +02:00
aa89f3049f
Signed-off-by: Xiangfu Liu <xiangfu.z@gmail.com>
22 lines
623 B
C
22 lines
623 B
C
/*
|
|
* Authors: Xiangfu Liu <xiangfu.z@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 3 of the License, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __INGENIC_CFG_H__
|
|
#define __INGENIC_CFG_H__
|
|
|
|
#include "usb_boot_defines.h"
|
|
|
|
#define CONFIG_FILE_PATH "/usr/share/xburst-tools/usbboot.cfg"
|
|
|
|
int hand_init_def(struct hand *hand);
|
|
int check_dump_cfg(struct hand *hand);
|
|
int parse_configure(struct hand *hand, char * file_path);
|
|
|
|
#endif /*__INGENIC_CFG_H__ */
|