parent
11af372116
commit
5e8c8818ed
@ -0,0 +1,19 @@ |
||||
config interface loopback |
||||
option ifname lo |
||||
option proto static |
||||
option ipaddr 127.0.0.1 |
||||
option netmask 255.0.0.0 |
||||
|
||||
config interface eth |
||||
option ifname eth0 |
||||
|
||||
config interface lan |
||||
option ifname 'lan1 lan2 lan3 lan4' |
||||
option type bridge |
||||
option proto static |
||||
option ipaddr 192.168.1.1 |
||||
option netmask 255.255.255.0 |
||||
|
||||
config interface wan |
||||
option ifname eth1 |
||||
option proto dhcp |
@ -0,0 +1,22 @@ |
||||
/*
|
||||
* MikroTik RouterBOARD 750 support |
||||
* |
||||
* Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org> |
||||
* |
||||
* This program is free software; you can redistribute it and/or modify it |
||||
* under the terms of the GNU General Public License version 2 as published |
||||
* by the Free Software Foundation. |
||||
*/ |
||||
|
||||
#include <asm/mach-ar71xx/ar71xx.h> |
||||
|
||||
#include "machtype.h" |
||||
#include "dev-ap91-eth.h" |
||||
|
||||
static void __init rb750_setup(void) |
||||
{ |
||||
ap91_eth_init(NULL); |
||||
} |
||||
|
||||
MIPS_MACHINE(AR71XX_MACH_RB_750, "750i", "MikroTik RouterBOARD 750", |
||||
rb750_setup); |
Loading…
Reference in new issue