3 Copyright 2005, Broadcom Corporation
6 THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
7 KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
8 SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
9 FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
17 #include <sys/ioctl.h>
18 #include <sys/mount.h>
23 #include <sys/reboot.h>
26 #include <sys/types.h>
32 #define SHELL "/bin/sh"
46 static int fatalsigs
[] = {
57 static int initsigs
[] = {
66 static char *defenv
[] = {
69 "PATH=/usr/bin:/bin:/usr/sbin:/sbin",
75 static int noconsole
= 0;
76 static volatile int state
= INIT
;
77 static volatile int signaled
= -1;
80 /* Set terminal settings to reasonable defaults */
81 static void set_term(int fd
)
87 /* set control chars */
88 tty
.c_cc
[VINTR
] = 3; /* C-c */
89 tty
.c_cc
[VQUIT
] = 28; /* C-\ */
90 tty
.c_cc
[VERASE
] = 127; /* C-? */
91 tty
.c_cc
[VKILL
] = 21; /* C-u */
92 tty
.c_cc
[VEOF
] = 4; /* C-d */
93 tty
.c_cc
[VSTART
] = 17; /* C-q */
94 tty
.c_cc
[VSTOP
] = 19; /* C-s */
95 tty
.c_cc
[VSUSP
] = 26; /* C-z */
97 /* use line dicipline 0 */
100 /* Make it be sane */
101 tty
.c_cflag
&= CBAUD
|CBAUDEX
|CSIZE
|CSTOPB
|PARENB
|PARODD
;
102 tty
.c_cflag
|= CREAD
|HUPCL
|CLOCAL
;
106 tty
.c_iflag
= ICRNL
| IXON
| IXOFF
;
109 tty
.c_oflag
= OPOST
| ONLCR
;
113 ISIG
| ICANON
| ECHO
| ECHOE
| ECHOK
| ECHOCTL
| ECHOKE
| IEXTEN
;
115 tcsetattr(fd
, TCSANOW
, &tty
);
118 static int console_init(void)
123 ioctl(0, TIOCNOTTY
, 0);
130 if ((fd
= open(_PATH_CONSOLE
, O_RDWR
)) < 0) {
131 /* Avoid debug messages is redirected to socket packet if no exist a UART chip, added by honor, 2003-12-04 */
132 open("/dev/null", O_RDONLY
);
133 open("/dev/null", O_WRONLY
);
134 open("/dev/null", O_WRONLY
);
135 perror(_PATH_CONSOLE
);
142 ioctl(0, TIOCSCTTY
, 1);
143 tcsetpgrp(0, getpgrp());
150 * Waits for a file descriptor to change status or unblocked signal
151 * @param fd file descriptor
152 * @param timeout seconds to wait before timing out or 0 for no timeout
153 * @return 1 if descriptor changed status or 0 if timed out or -1 on error
155 static int waitfor(int fd
, int timeout
)
158 struct timeval tv
= { timeout
, 0 };
162 return select(fd
+ 1, &rfds
, NULL
, NULL
, (timeout
> 0) ? &tv
: NULL
);
165 static pid_t
run_shell(int timeout
, int nowait
)
170 /* Wait for user input */
171 if (waitfor(STDIN_FILENO
, timeout
) <= 0) return 0;
173 switch (pid
= fork()) {
178 /* Reset signal handlers set for parent process */
179 for (sig
= 0; sig
< (_NSIG
-1); sig
++)
180 signal(sig
, SIG_DFL
);
184 printf("\n\nTomato %s\n\n", tomato_version
);
186 /* Now run it. The new program will take over this PID,
187 * so nothing further in init.c should be run. */
188 execve(SHELL
, (char *[]) { SHELL
, NULL
}, defenv
);
190 /* We're still here? Some error happened. */
198 waitpid(pid
, NULL
, 0);
204 static void shutdn(int rb
)
210 _dprintf("shutdn rb=%d\n", rb
);
213 for (i
= 0; i
< sizeof(fatalsigs
) / sizeof(fatalsigs
[0]); i
++)
214 sigaddset(&ss
, fatalsigs
[i
]);
215 for (i
= 0; i
< sizeof(initsigs
) / sizeof(initsigs
[0]); i
++)
216 sigaddset(&ss
, initsigs
[i
]);
217 sigaddset(&ss
, SIGCHLD
);
218 sigprocmask(SIG_BLOCK
, &ss
, NULL
);
220 for (i
= 30; i
> 0; --i
) {
221 if (((act
= check_action()) == ACT_IDLE
) || (act
== ACT_REBOOT
)) break;
222 cprintf("Busy with %d. Waiting before shutdown... %d\n", act
, i
);
225 set_action(ACT_REBOOT
);
237 umount("/jffs"); // may hang if not
243 for (i
= 4; i
> 0; --i
) {
254 reboot(rb
? RB_AUTOBOOT
: RB_HALT_SYSTEM
);
261 static void handle_fatalsigs(int sig
)
263 _dprintf("fatal sig=%d\n", sig
);
267 void handle_reap(int sig
)
269 while (waitpid(-1, NULL
, WNOHANG
) > 0) {
274 static void handle_initsigs(int sig
)
276 // TRACE_PT("sig=%d state=%d, signaled=%d\n", sig, state, signaled);
300 static int check_nv(const char *name
, const char *value
)
303 if (!nvram_match("manual_boot_nv", "1")) {
304 if (((p
= nvram_get(name
)) == NULL
) || (strcmp(p
, value
) != 0)) {
305 // cprintf("Error: Critical variable %s is invalid. Resetting.\n", name);
306 nvram_set(name
, value
);
313 static void check_bootnv(void)
324 dirty
|= check_nv("vlan0hwname", "et0");
325 dirty
|= check_nv("vlan1hwname", "et0");
326 dirty
|= check_nv("vlan0ports", "0 5*");
327 dirty
|= check_nv("vlan1ports", "1 5");
330 dirty
|= check_nv("sdram_init", "0x0009"); // 32MB; defaults: 0x000b, 0x0009
331 dirty
|= check_nv("vlan1ports", "0 5"); // default: 0 5u
334 /* fix WL500W mac adresses for WAN port */
335 if (nvram_match("et1macaddr", "00:90:4c:a1:00:2d"))
336 dirty
|= check_nv("et1macaddr", nvram_get("et0macaddr"));
339 dirty
|= check_nv("vlan1ports", "0 5"); // default: 0 5u
341 case MODEL_WL500GPv2
:
342 if (nvram_match("vlan1ports", "4 5u"))
343 dirty
|= check_nv("vlan1ports", "4 5");
344 else if (nvram_match("vlan1ports", "0 5u")) // 520GU?
345 dirty
|= check_nv("vlan1ports", "0 5");
348 dirty
|= check_nv("vlan1ports", "0 5");
351 dirty
|= check_nv("vlan1hwname", "et0");
352 dirty
|= check_nv("vlan1ports", "0 5");
356 dirty
|= check_nv("boardflags", "0x00000710"); // needed to enable USB
357 dirty
|= check_nv("vlan1ports", "4 3 2 1 8*");
358 dirty
|= check_nv("vlan2ports", "0 8");
359 dirty
|= check_nv("ledbh0", "7");
362 dirty
|= check_nv("vlan1ports", "4 5");
365 dirty
|= check_nv("vlan0ports", "3 2 1 0 5*");
366 dirty
|= check_nv("vlan1ports", "4 5");
369 dirty
|= check_nv("vlan2hwname", "et0");
370 dirty
|= check_nv("vlan1ports", "4 3 2 1 8*");
371 dirty
|= check_nv("vlan2ports", "0 8");
373 case MODEL_WRT160Nv3
:
374 if (nvram_match("clkdivsf", "4")) {
375 // fix lan port numbering on CSE41, CSE51
376 dirty
|= check_nv("vlan1ports", "4 3 2 1 5*");
382 if (strncmp(nvram_safe_get("pmon_ver"), "CFE", 3) != 0) return;
384 hardware
= check_hw_type();
385 if (!nvram_get("boardtype") ||
386 !nvram_get("boardnum") ||
387 !nvram_get("boardflags") ||
388 !nvram_get("clkfreq") ||
389 !nvram_get("os_flash_addr") ||
390 !nvram_get("dl_ram_addr") ||
391 !nvram_get("os_ram_addr") ||
392 !nvram_get("scratch") ||
393 !nvram_get("et0macaddr") ||
394 ((hardware
!= HW_BCM4704_BCM5325F
) && (!nvram_get("vlan0ports") || !nvram_get("vlan0hwname")))) {
395 cprintf("Unable to find critical settings, erasing NVRAM\n");
400 dirty
|= check_nv("aa0", "3");
401 dirty
|= check_nv("wl0gpio0", "136");
402 dirty
|= check_nv("wl0gpio2", "0");
403 dirty
|= check_nv("wl0gpio3", "0");
404 dirty
|= check_nv("cctl", "0");
405 dirty
|= check_nv("ccode", "0");
409 /* Lower the DDR ram drive strength , the value will be stable for all boards
410 Latency 3 is more stable for all ddr 20050420 by honor */
411 dirty
|= check_nv("sdram_init", "0x010b");
412 dirty
|= check_nv("sdram_config", "0x0062");
413 if (!nvram_match("debug_clkfix", "0")) {
414 dirty
|= check_nv("clkfreq", "216");
417 nvram_set("sdram_ncdl", "0x0");
419 dirty
|= check_nv("pa0itssit", "62");
420 dirty
|= check_nv("pa0b0", "0x15eb");
421 dirty
|= check_nv("pa0b1", "0xfa82");
422 dirty
|= check_nv("pa0b2", "0xfe66");
423 //dirty |= check_nv("pa0maxpwr", "0x4e");
425 case HW_BCM5352E
: // G v4, GS v3, v4
426 dirty
|= check_nv("sdram_init", "0x010b");
427 dirty
|= check_nv("sdram_config", "0x0062");
429 nvram_set("sdram_ncdl", "0x0");
431 dirty
|= check_nv("pa0itssit", "62");
432 dirty
|= check_nv("pa0b0", "0x168b");
433 dirty
|= check_nv("pa0b1", "0xfabf");
434 dirty
|= check_nv("pa0b2", "0xfeaf");
435 //dirty |= check_nv("pa0maxpwr", "0x4e");
436 dirty
|= check_nv("vlan0ports", "3 2 1 0 5*");
439 dirty
|= check_nv("pa0itssit", "62");
440 dirty
|= check_nv("pa0b0", "0x1326");
441 dirty
|= check_nv("pa0b1", "0xFB51");
442 dirty
|= check_nv("pa0b2", "0xFE87");
443 //dirty |= check_nv("pa0maxpwr", "0x4e");
445 case HW_BCM4704_BCM5325F
:
449 dirty
|= check_nv("pa0itssit", "62");
450 dirty
|= check_nv("pa0b0", "0x170c");
451 dirty
|= check_nv("pa0b1", "0xfa24");
452 dirty
|= check_nv("pa0b2", "0xfe70");
453 //dirty |= check_nv("pa0maxpwr", "0x48");
462 REBOOT
: // do a simple reboot
469 static int init_nvram(void)
471 unsigned long features
;
480 sprintf(s
, "%d", model
);
481 nvram_set("t_model", s
);
489 name
= "WRT54G/GS/GL";
490 switch (check_hw_type()) {
492 nvram_set("gpio2", "adm_eecs");
493 nvram_set("gpio3", "adm_eesk");
494 nvram_unset("gpio4");
495 nvram_set("gpio5", "adm_eedi");
496 nvram_set("gpio6", "adm_rc");
499 nvram_unset("gpio2");
500 nvram_unset("gpio3");
501 nvram_unset("gpio4");
502 nvram_unset("gpio5");
503 nvram_unset("gpio6");
506 nvram_set("opo", "0x0008");
507 nvram_set("ag0", "0x02");
510 nvram_set("gpio2", "ses_led");
511 nvram_set("gpio3", "ses_led2");
512 nvram_set("gpio4", "ses_button");
513 features
= SUP_SES
| SUP_WHAM_LED
;
520 if (!nvram_match("t_fix1", (char *)name
)) {
521 nvram_set("vlan_enable", "1");
522 nvram_set("lan_ifnames", "vlan0 eth1");
523 nvram_set("gpio2", "ses_button");
524 nvram_set("reset_gpio", "7");
527 nvram_set("pa0itssit", "62");
528 nvram_set("pa0b0", "0x1542");
529 nvram_set("pa0b1", "0xfacb");
530 nvram_set("pa0b2", "0xfec7");
531 //nvram_set("pa0maxpwr", "0x4c");
534 case MODEL_WRTSL54GS
:
537 features
= SUP_SES
| SUP_WHAM_LED
;
542 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
545 case MODEL_WZRRSG54HP
:
548 features
= SUP_SES
| SUP_AOSS_LED
| SUP_HPAMP
;
550 case MODEL_WZRRSG54HP
:
551 name
= "WZR-RS-G54HP";
558 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
| SUP_HPAMP
;
562 bf
= strtoul(nvram_safe_get("boardflags"), NULL
, 0);
568 if (nvram_match("wlx_hpamp", "")) {
569 if (nvram_get_int("wl_txpwr") > 10) nvram_set("wl_txpwr", "10");
570 nvram_set("wlx_hpamp", "1");
571 nvram_set("wlx_hperx", "0");
575 if (nvram_match("wlx_hpamp", "0")) {
581 if (nvram_match("wlx_hperx", "0")) {
588 sprintf(s
, "0x%lX", n
);
589 nvram_set("boardflags", s
);
593 syslog(LOG_WARNING
, "Unexpected: boardflag=%lX", bf
);
600 nvram_set("wl0gpio0", "130");
605 features
= SUP_SES
| SUP_AOSS_LED
;
607 case MODEL_WHR2A54G54
:
609 name
= "WHR2-A54G54";
610 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
615 features
= SUP_SES
| SUP_AOSS_LED
;
620 features
= SUP_SES
| SUP_AOSS_LED
;
625 features
= SUP_SES
| SUP_AOSS_LED
;
635 features
= SUP_SES
| SUP_AOSS_LED
;
644 features
= SUP_NONVE
;
648 name
= "WR850G v2/v3";
649 features
= SUP_NONVE
;
655 if (!nvram_match("t_fix1", (char *)name
)) {
656 nvram_set("t_fix1", name
);
657 nvram_set("lan_ifnames", "vlan0 eth1 eth2 eth3"); // set to "vlan0 eth2" by DD-WRT; default: vlan0 eth1
658 // !!TB - WLAN LED fix
659 nvram_set("wl0gpio0", "136");
665 features
= SUP_SES
| SUP_80211N
;
667 if (!nvram_get("wl0gpio0") || nvram_match("wl0gpio0", "2"))
668 nvram_set("wl0gpio0", "0x88");
691 if (!nvram_match("t_fix1", (char *)name
)) {
692 nvram_set("t_fix1", name
);
693 nvram_set("lan_ifnames", "vlan0 eth1 eth2");
694 nvram_set("wl_ifname", "eth1");
695 nvram_set("wan_ifname", "none");
700 name
= "TrueMobile 2300";
709 #ifndef WL_BSS_INFO_VERSION
710 #error WL_BSS_INFO_VERSION
712 #if WL_BSS_INFO_VERSION >= 108
718 nvram_set("opo", "12");
724 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
;
726 nvram_set("opo", "0x0008");
727 nvram_set("ag0", "0x0C");
733 features
= SUP_SES
| SUP_80211N
;
734 if (!nvram_match("t_fix1", (char *)name
)) {
735 nvram_set("lan_ifnames", "vlan0 eth1");
736 nvram_set("wan_ifnameX", "vlan1");
737 nvram_set("wl_ifname", "eth1");
738 nvram_set("t_fix1", name
);
744 features
= SUP_SES
| SUP_BRAU
| SUP_80211N
;
745 if (!nvram_match("t_fix1", (char *)name
)) {
746 nvram_set("lan_ifnames", "vlan0 eth1");
747 nvram_set("wan_ifnameX", "vlan1");
748 nvram_set("wl_ifname", "eth1");
749 nvram_set("t_fix1", name
);
755 features
= SUP_SES
| SUP_80211N
| SUP_1000ET
;
756 if (!nvram_match("t_fix1", (char *)name
)) {
757 nvram_set("lan_ifnames", "vlan1 eth1");
758 nvram_set("wan_ifnameX", "vlan2");
759 nvram_set("wl_ifname", "eth1");
760 nvram_set("vlan_enable", "1");
761 nvram_set("t_fix1", name
);
766 name
= "WNR3500L/U/v2";
767 features
= SUP_SES
| SUP_AOSS_LED
| SUP_80211N
| SUP_1000ET
;
768 if (!nvram_match("t_fix1", (char *)name
)) {
769 nvram_set("sromrev", "3");
770 nvram_set("lan_ifnames", "vlan1 eth1");
771 nvram_set("wan_ifnameX", "vlan2");
772 nvram_set("wl_ifname", "eth1");
773 nvram_set("portprio_support", "0");
774 nvram_set("t_fix1", name
);
777 case MODEL_WRT160Nv3
:
780 features
= SUP_SES
| SUP_80211N
| SUP_WHAM_LED
;
781 if (!nvram_match("t_fix1", (char *)name
)) {
782 nvram_set("lan_ifnames", "vlan1 eth1");
783 nvram_set("wan_ifnameX", "vlan2");
784 nvram_set("wl_ifname", "eth1");
785 nvram_set("t_fix1", name
);
788 #endif // CONFIG_BCMWL5
789 case MODEL_WL500GPv2
:
791 name
= "WL-500gP v2";
793 if (!nvram_match("t_fix1", (char *)name
)) {
794 nvram_set("t_fix1", name
);
797 if (nvram_match("wl0gpio1", "0x02"))
798 nvram_set("wl0gpio1", "0x88");
804 if (!nvram_match("t_fix1", (char *)name
)) {
805 nvram_set("t_fix1", name
);
807 nvram_set("wl0gpio0", "0");
808 nvram_set("wl0gpio1", "136");
809 nvram_set("wl0gpio2", "0");
810 nvram_set("wl0gpio3", "0");
817 if (nvram_match("wl0gpio0", "255"))
819 nvram_set("wl0gpio0", "8");
820 nvram_set("wl0gpio1", "0");
821 nvram_set("wl0gpio2", "0");
822 nvram_set("wl0gpio3", "0");
824 if (!nvram_match("t_fix1", (char *)name
)) {
825 nvram_set("t_fix1", name
);
826 nvram_unset( "vlan2ports" );
827 nvram_unset( "vlan2hwname" );
828 nvram_set("wandevs", "vlan1");
829 nvram_set("wan_ifname", "vlan1");
830 nvram_set("wan_ifnames", "vlan1");
831 nvram_set("wan0_ifname", "vlan1");
832 nvram_set("wan0_ifnames", "vlan1");
835 #endif // WL_BSS_INFO_VERSION >= 108
840 features
= SUP_SES
| SUP_AOSS_LED
| SUP_BRAU
| SUP_80211N
;
845 features
= SUP_SES
| SUP_80211N
;
851 sprintf(s
, "%s %s", mfr
, name
);
854 snprintf(s
, sizeof(s
), "%s %d/%s/%s/%s/%s", mfr
, check_hw_type(),
855 nvram_safe_get("boardtype"), nvram_safe_get("boardnum"), nvram_safe_get("boardrev"), nvram_safe_get("boardflags"));
858 nvram_set("t_model_name", s
);
860 nvram_set("pa0maxpwr", "251"); // allow Tx power up tp 251 mW, needed for ND only
862 sprintf(s
, "0x%lX", features
);
863 nvram_set("t_features", s
);
868 note: set wan_ifnameX if wan_ifname needs to be overriden
871 if (nvram_is_empty("wan_ifnameX")) {
873 nvram_set("wan_ifnameX", ((strtoul(nvram_safe_get("boardflags"), NULL
, 0) & BFL_ENETVLAN
) ||
874 (check_hw_type() == HW_BCM4712
)) ? "vlan1" : "eth1");
876 p
= nvram_safe_get("wan_ifname");
877 if ((*p
== 0) || (nvram_match("wl_ifname", p
))) {
878 p
= ((strtoul(nvram_safe_get("boardflags"), NULL
, 0) & BFL_ENETVLAN
) ||
879 (check_hw_type() == HW_BCM4712
)) ? "vlan1" : "eth1";
881 nvram_set("wan_ifnameX", p
);
886 nvram_set("wl_hwaddr", ""); // when disabling wireless, we must get null wireless mac ??
887 //!!TB - do not force country code here to allow nvram override
888 //nvram_set("wl_country", "JP");
889 //nvram_set("wl_country_code", "JP");
890 nvram_set("wan_get_dns", "");
891 nvram_set("wan_get_domain", "");
892 nvram_set("pppoe_pid0", "");
893 nvram_set("action_service", "");
894 nvram_set("jffs2_format", "0");
895 nvram_set("rrules_radio", "-1");
896 nvram_unset("https_crt_gen");
897 if (nvram_get_int("http_id_gen") == 1) nvram_unset("http_id");
899 nvram_unset("sch_rboot_last");
900 nvram_unset("sch_rcon_last");
901 nvram_unset("sch_c1_last");
902 nvram_unset("sch_c2_last");
903 nvram_unset("sch_c3_last");
905 nvram_set("brau_state", "");
906 if ((features
& SUP_BRAU
) == 0) nvram_set("script_brau", "");
907 if ((features
& SUP_SES
) == 0) nvram_set("sesx_script", "");
909 if ((features
& SUP_1000ET
) == 0) nvram_set("jumbo_frame_enable", "0");
911 if (nvram_match("wl_net_mode", "disabled")) {
912 nvram_set("wl_radio", "0");
913 nvram_set("wl_net_mode", "mixed");
919 /* Get the special files from nvram and copy them to disc.
920 * These were files saved with "nvram setfile2nvram <filename>".
921 * Better hope that they were saved with full pathname.
923 static void load_files_from_nvram(void)
926 char buf
[NVRAM_SPACE
];
928 if (nvram_getall(buf
, sizeof(buf
)) != 0)
931 for (name
= buf
; *name
; name
+= strlen(name
) + 1) {
932 if (strncmp(name
, "FILE:", 5) == 0) { /* This special name marks a file to get. */
933 if ((cp
= strchr(name
, '=')) == NULL
)
936 syslog(LOG_INFO
, "Loading file '%s' from nvram", name
+ 5);
937 nvram_nvram2file(name
, name
+ 5);
942 static void sysinit(void)
944 static const time_t tm
= 0;
953 mount("proc", "/proc", "proc", 0, NULL
);
954 mount("tmpfs", "/tmp", "tmpfs", 0, NULL
);
957 mount("devfs", "/dev", "tmpfs", MS_MGC_VAL
| MS_NOATIME
, NULL
);
958 mknod("/dev/null", S_IFCHR
| 0666, makedev(1, 3));
959 mknod("/dev/console", S_IFCHR
| 0600, makedev(5, 1));
960 mount("sysfs", "/sys", "sysfs", MS_MGC_VAL
, NULL
);
961 mkdir("/dev/shm", 0777);
962 mkdir("/dev/pts", 0777);
963 mount("devpts", "/dev/pts", "devpts", MS_MGC_VAL
, NULL
);
966 if (console_init()) noconsole
= 1;
970 static const char *mkd
[] = {
971 "/tmp/etc", "/tmp/var", "/tmp/home", "/tmp/mnt",
972 "/tmp/share", // !!TB
973 "/var/log", "/var/run", "/var/tmp", "/var/lib", "/var/lib/misc",
974 "/var/spool", "/var/spool/cron", "/var/spool/cron/crontabs",
975 "/tmp/var/wwwext", "/tmp/var/wwwext/cgi-bin", // !!TB - CGI support
979 for (i
= 0; mkd
[i
]; ++i
) {
982 mkdir("/var/lock", 0777);
983 mkdir("/var/tmp/dhcp", 0777);
984 mkdir("/home/root", 0700);
986 f_write("/etc/hosts", NULL
, 0, 0, 0644); // blank
987 f_write("/etc/fstab", NULL
, 0, 0, 0644); // !!TB - blank
988 simple_unlock("cron");
989 simple_unlock("firewall");
990 simple_unlock("restrictions");
993 if ((d
= opendir("/rom/etc")) != NULL
) {
994 while ((de
= readdir(d
)) != NULL
) {
995 if (de
->d_name
[0] == '.') continue;
996 snprintf(s
, sizeof(s
), "%s/%s", "/rom/etc", de
->d_name
);
997 snprintf(t
, sizeof(t
), "%s/%s", "/etc", de
->d_name
);
1002 symlink("/proc/mounts", "/etc/mtab");
1004 #ifdef TCONFIG_SAMBASRV
1005 if ((d
= opendir("/usr/codepages")) != NULL
) {
1006 while ((de
= readdir(d
)) != NULL
) {
1007 if (de
->d_name
[0] == '.') continue;
1008 snprintf(s
, sizeof(s
), "/usr/codepages/%s", de
->d_name
);
1009 snprintf(t
, sizeof(t
), "/usr/share/%s", de
->d_name
);
1017 eval("hotplug2", "--coldplug");
1021 set_action(ACT_IDLE
);
1023 for (i
= 0; defenv
[i
]; ++i
) {
1028 printf("\n\nHit ENTER for console...\n\n");
1034 for (i
= 0; i
< sizeof(fatalsigs
) / sizeof(fatalsigs
[0]); i
++) {
1035 signal(fatalsigs
[i
], handle_fatalsigs
);
1037 for (i
= 0; i
< sizeof(initsigs
) / sizeof(initsigs
[0]); i
++) {
1038 signal(initsigs
[i
], handle_initsigs
);
1040 signal(SIGCHLD
, handle_reap
);
1042 switch (model
= get_model()) {
1043 case MODEL_WR850GV1
:
1044 case MODEL_WR850GV2
:
1045 // need to cleanup some variables...
1046 if ((nvram_get("t_model") == NULL
) && (nvram_get("MyFirmwareVersion") != NULL
)) {
1047 nvram_unset("MyFirmwareVersion");
1048 nvram_set("restore_defaults", "1");
1053 hardware
= check_hw_type();
1054 #if WL_BSS_INFO_VERSION >= 108
1057 if ((hardware
== HW_BCM4702
) && (model
!= MODEL_WR850GV1
)) {
1066 #ifdef CONFIG_BCMWL5
1071 modprobe("tomato_ct");
1075 system("nvram defaults --initcheck");
1078 // set the packet size
1079 if (nvram_get_int("jumbo_frame_enable")) {
1080 // only set the size here - 'enable' flag is set by the driver
1081 // eval("et", "robowr", "0x40", "0x01", "0x1F"); // (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4)
1082 eval("et", "robowr", "0x40", "0x05", nvram_safe_get("jumbo_frame_size"));
1085 klogctl(8, NULL
, nvram_get_int("console_loglevel"));
1088 set_host_domain_name();
1096 i
= nvram_get_int("sesx_led");
1097 led(LED_AMBER
, (i
& 1) != 0);
1098 led(LED_WHITE
, (i
& 2) != 0);
1099 led(LED_AOSS
, (i
& 4) != 0);
1100 led(LED_BRIDGE
, (i
& 8) != 0);
1104 int init_main(int argc
, char *argv
[])
1106 pid_t shell_pid
= 0;
1113 #if defined(DEBUG_NOISY)
1114 nvram_set("debug_logeval", "1");
1115 nvram_set("debug_cprintf", "1");
1116 nvram_set("debug_cprintf_file", "1");
1117 nvram_set("debug_ddns", "1");
1121 // TRACE_PT("main loop state=%d\n", state);
1133 unlink("/var/notice/sysup");
1135 run_nvscript("script_shut", NULL
, 10);
1143 // !!TB - USB Support
1144 remove_storage_main((state
== REBOOT
) || (state
== HALT
));
1147 if ((state
== REBOOT
) || (state
== HALT
)) {
1148 shutdn(state
== REBOOT
);
1151 if (state
== STOP
) {
1156 // RESTART falls through
1159 SET_LED(RELEASE_WAN_CONTROL
);
1162 load_files_from_nvram();
1165 fd
= file_lock("usb"); // hold off automount processing
1168 run_nvscript("script_init", NULL
, 2);
1170 file_unlock(fd
); // allow to process usb hotplug events
1173 * On RESTART some partitions can stay mounted if they are busy at the moment.
1174 * In that case USB drivers won't unload, and hotplug won't kick off again to
1175 * remount those drives that actually got unmounted. Make sure to remount ALL
1176 * partitions here by simulating hotplug event.
1178 if (state
== RESTART
) add_remove_usbhost("-1", 1);
1187 #ifdef CONFIG_BCMWL5
1188 if (nvram_match("wds_enable", "1")) {
1189 /* Restart NAS one more time - for some reason without
1190 * this the new driver doesn't always bring WDS up.
1197 syslog(LOG_INFO
, "Tomato %s", tomato_version
);
1198 syslog(LOG_INFO
, "%s", nvram_safe_get("t_model_name"));
1201 notice_set("sysup", "");
1208 while (signaled
== -1) {
1210 if ((!noconsole
) && ((!shell_pid
) || (kill(shell_pid
, 0) != 0))) {
1211 shell_pid
= run_shell(0, 1);
1224 int reboothalt_main(int argc
, char *argv
[])
1226 int reboot
= (strstr(argv
[0], "reboot") != NULL
);
1227 puts(reboot
? "Rebooting..." : "Shutting down...");
1230 kill(1, reboot
? SIGTERM
: SIGQUIT
);
1232 /* In the case we're hung, we'll get stuck and never actually reboot.
1233 * The only way out is to pull power.
1234 * So after 10 seconds, forcibly crash & restart.
1237 f_write("/proc/sysrq-trigger", "s", 1, 0 , 0); /* sync disks */
1239 puts("Still running... Doing machine reset.");
1241 f_write("/proc/sysrq-trigger", "s", 1, 0 , 0); /* sync disks */
1243 f_write("/proc/sysrq-trigger", "b", 1, 0 , 0); /* machine reset */