1/* This file is included into rc/rc.c */
2/* donot add code unless required */
3
4
5#ifndef _RCS5_H_
6#define _RCS5_H_
7	struct nvram_tuple robo[] = {
8		{ "lan_ifname", "br0", 0 },
9		{ "lan_ifnames", "eth0 eth1", 0 },
10		{ "wan_ifname", "eth0", 0 },
11		{ "wan_ifnames", "eth0", 0 },
12		{ 0, 0, 0 }
13	};
14
15extern void rc1_start();
16extern void rc1_stop();
17extern void rc7_start();
18extern void rc7_stop();
19extern extra_restore_defaults();
20
21#define RC1_START() 	rc1_start();
22
23#define RC1_STOP() 	rc1_stop();
24
25#define RC7_START() 	rc7_start();
26#define RC7_STOP()	rc7_stop();
27
28#define LINUX_OVERRIDES() if (bcm_is_robo() ) \
29			linux_overrides = robo;
30
31#define EXTRA_RESTORE_DEFAULTS()	extra_restore_defaults()
32
33#endif /* _RCS5_H_ */
34