mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 17:43:10 +02:00
move natsemi module into the kernel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2997 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ecb4afc3b8
commit
5e32cd34ed
@ -515,8 +515,7 @@ config BR2_PACKAGE_KMOD_NET_HERMES_PLX
|
|||||||
config BR2_PACKAGE_KMOD_NET_NATSEMI
|
config BR2_PACKAGE_KMOD_NET_NATSEMI
|
||||||
prompt "kmod-net-natsemi.................. National Semiconductor DP8381x series PCI Ethernet kernel support"
|
prompt "kmod-net-natsemi.................. National Semiconductor DP8381x series PCI Ethernet kernel support"
|
||||||
tristate
|
tristate
|
||||||
depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86 || BR2_LINUX_2_6_ARUBA
|
depends BR2_LINUX_2_4_X86 || BR2_LINUX_2_6_X86
|
||||||
default y if BR2_LINUX_2_6_ARUBA
|
|
||||||
default m
|
default m
|
||||||
help
|
help
|
||||||
This driver is for the National Semiconductor DP83810 series,
|
This driver is for the National Semiconductor DP83810 series,
|
||||||
|
@ -757,7 +757,7 @@ CONFIG_NET_PCI=y
|
|||||||
# CONFIG_EEPRO100 is not set
|
# CONFIG_EEPRO100 is not set
|
||||||
# CONFIG_E100 is not set
|
# CONFIG_E100 is not set
|
||||||
# CONFIG_FEALNX is not set
|
# CONFIG_FEALNX is not set
|
||||||
CONFIG_NATSEMI=m
|
CONFIG_NATSEMI=y
|
||||||
# CONFIG_NE2K_PCI is not set
|
# CONFIG_NE2K_PCI is not set
|
||||||
# CONFIG_8139CP is not set
|
# CONFIG_8139CP is not set
|
||||||
# CONFIG_8139TOO is not set
|
# CONFIG_8139TOO is not set
|
||||||
|
@ -15,31 +15,18 @@ ifeq ($(IB),)
|
|||||||
$(KDIR)/vmlinux.lzma: $(KDIR)/vmlinux
|
$(KDIR)/vmlinux.lzma: $(KDIR)/vmlinux
|
||||||
cat $^ | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $@ || (rm -f $@ && false)
|
cat $^ | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $@ || (rm -f $@ && false)
|
||||||
|
|
||||||
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).ari: $(KDIR)/vmlinux.lzma
|
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari: $(KDIR)/vmlinux.lzma
|
||||||
install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).ari
|
install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(FS),jffs2-8MB)
|
|
||||||
TRXALIGN:=-a 0x20000
|
|
||||||
endif
|
|
||||||
ifeq ($(FS),jffs2-4MB)
|
|
||||||
TRXALIGN:=-a 0x10000
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(KERNEL),2.6)
|
ifeq ($(KERNEL),2.6)
|
||||||
FSNAME:=$(patsubst jffs2-%,jffs2,$(FS))
|
FSNAME:=$(patsubst jffs2-%,jffs2,$(FS))
|
||||||
|
|
||||||
ifeq ($(FS),jffs2-4MB)
|
ifeq ($(FS),jffs2-4MB)
|
||||||
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FSNAME).ari: $(KDIR)/loader.elf
|
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari: $(KDIR)/loader.elf
|
||||||
./addVersion -n ArubaOS $(KDIR)/loader.elf $@ version
|
./addVersion -n ArubaOS $(KDIR)/loader.elf $@ version
|
||||||
|
|
||||||
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FSNAME).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FSNAME).ari $(KDIR)/root.$(FS)
|
install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari
|
||||||
@dd if=$< of=$@.tmp bs=655360 conv=sync
|
|
||||||
@cat $(KDIR)/root.$(FS) >> $@.tmp
|
|
||||||
@dd if=$@.tmp of=$@ bs=3604480 conv=sync
|
|
||||||
@rm -f $@.tmp
|
|
||||||
|
|
||||||
install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FSNAME).bin
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
. /etc/functions.sh
|
|
||||||
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
|
|
||||||
case "$1" in
|
|
||||||
start|restart)
|
|
||||||
ifup lan
|
|
||||||
ifup wan
|
|
||||||
ifup wifi
|
|
||||||
wifi up
|
|
||||||
|
|
||||||
for route in $(nvram get static_route); do {
|
|
||||||
eval "set $(echo $route | sed 's/:/ /g')"
|
|
||||||
$DEBUG route add -net $1 netmask $2 gw $3 metric $4 dev $5
|
|
||||||
} done
|
|
||||||
;;
|
|
||||||
esac
|
|
Loading…
Reference in New Issue
Block a user