mirror of
https://github.com/linux-msm/qdl.git
synced 2026-02-25 13:12:25 -08:00
Let the programmer search for files beyond the current folder. When --include is used , the programmmer will first look for files in the specified folder, and it will then fallback to looking at the current folder. Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
16 lines
288 B
C
16 lines
288 B
C
#ifndef __QDL_H__
|
|
#define __QDL_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "patch.h"
|
|
#include "program.h"
|
|
|
|
int firehose_run(int fd, const char *incdir);
|
|
int sahara_run(int fd, char *prog_mbn);
|
|
void print_hex_dump(const char *prefix, const void *buf, size_t len);
|
|
|
|
extern bool qdl_debug;
|
|
|
|
#endif
|