Skip to content

Commit 13b1fa7

Browse files
committed
Rename vendors to boards directory
1 parent cb33e8d commit 13b1fa7

File tree

22 files changed

+33
-33
lines changed

22 files changed

+33
-33
lines changed

CMakeLists.txt

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -117,24 +117,24 @@ set(IPCTOOL_SRC
117117
src/cjson/cJSON.h
118118
src/cjson/cYAML.c
119119
src/cjson/cYAML.h
120-
src/vendors/anjoy.c
121-
src/vendors/anjoy.h
122-
src/vendors/buildroot.c
123-
src/vendors/buildroot.h
124-
src/vendors/common.c
125-
src/vendors/common.h
126-
src/vendors/hankvision.c
127-
src/vendors/hankvision.h
128-
src/vendors/linux.c
129-
src/vendors/linux.h
130-
src/vendors/openwrt.c
131-
src/vendors/openwrt.h
132-
src/vendors/ruision.c
133-
src/vendors/ruision.h
134-
src/vendors/xm.c
135-
src/vendors/xm.h
136-
src/vendors/sstar.c
137-
src/vendors/sstar.h
120+
src/boards/anjoy.c
121+
src/boards/anjoy.h
122+
src/boards/buildroot.c
123+
src/boards/buildroot.h
124+
src/boards/common.c
125+
src/boards/common.h
126+
src/boards/hankvision.c
127+
src/boards/hankvision.h
128+
src/boards/linux.c
129+
src/boards/linux.h
130+
src/boards/openwrt.c
131+
src/boards/openwrt.h
132+
src/boards/ruision.c
133+
src/boards/ruision.h
134+
src/boards/xm.c
135+
src/boards/xm.h
136+
src/boards/sstar.c
137+
src/boards/sstar.h
138138
${VERSION_SRC})
139139

140140
add_library(ipchw STATIC ${COMMON_LIB_SRC})

src/backup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <unistd.h>
2525

2626
#include "backup.h"
27+
#include "boards/common.h"
28+
#include "boards/xm.h"
2729
#include "chipid.h"
2830
#include "cjson/cJSON.h"
2931
#include "dns.h"
@@ -34,8 +36,6 @@
3436
#include "sha1.h"
3537
#include "tools.h"
3638
#include "uboot.h"
37-
#include "vendors/common.h"
38-
#include "vendors/xm.h"
3939

4040
#define UDP_LOCK_PORT 1025
4141

File renamed without changes.
File renamed without changes.
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
#include "reginfo.h"
88
#include "tools.h"
99

10-
#include "vendors/anjoy.h"
11-
#include "vendors/buildroot.h"
12-
#include "vendors/hankvision.h"
13-
#include "vendors/openwrt.h"
14-
#include "vendors/ruision.h"
15-
#include "vendors/sstar.h"
16-
#include "vendors/xm.h"
10+
#include "boards/anjoy.h"
11+
#include "boards/buildroot.h"
12+
#include "boards/hankvision.h"
13+
#include "boards/openwrt.h"
14+
#include "boards/ruision.h"
15+
#include "boards/sstar.h"
16+
#include "boards/xm.h"
1717

1818
typedef struct {
1919
bool (*detector_fn)(void);

0 commit comments

Comments
 (0)