entweder habe ich grundsätzlich etwas falsch verstanden, oder ich mach was falsch. Ich möchte einfach mein kompiliertes CDK booten, ohne das Image flashen zu müssen.
Ich habe mein gentoo System so augesetzt, daß ich nun 2 Netzwerkkarten habe (obwohl das wahrscheinlich überflüssig war, wird sich zeigen). Eine Karte für's LAN, die 2. rein für die dbox.
Die 2. Karte hat die IP 192.168.5.1. Auf dieser eth1 ist ein dhcpd konfiguriert:
Code: Alles auswählen
ddns-update-style none;
allow booting;
allow bootp;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.5.255;
option routers 192.168.5.1;
option domain-name-servers 192.168.5.1;
option domain-name "dbox";
subnet 192.168.5.0 netmask 255.255.255.0 {
}
host dbox {
hardware ethernet 00:50:9c:XX:XX:XX; # ist natürlich die richtige drin
fixed-address dbox;
allow bootp;
if exists vendor-class-identifier {
filename "kernel-cdk";
option root-path "/dbox2/cdkroot";
} else {
filename "u-boot";
}
}
NFS & TFTP daemons sind auch installiert, aber erstmal habe ich Probleme mit dhcp.
Nachdem ich den reboot auf der dbox ausgeführt habe, kommt dort diese fiese Meldung:
Code: Alles auswählen
debug: DDF: Calibrating delay loop... debug: DDF: 66.76 BogoMIPS
debug: BMon V1.3 mID 03
debug: feID 00 enxID 03
debug: fpID 52 dsID 01-f2.ff.4a.08.00.00-36
debug: HWrev 61 FPrev 0.23
debug: B/Ex/Fl(MB) 32/00/08
WATCHDOG reset enabled
dbox2:root> debug:
BOOTP/TFTP bootstrap loader (v0.3)
debug:
debug: Transmitting BOOTP request via broadcast
debug: Given up BOOTP/TFTP boot
boot net failed
Flash-FS bootstrap loader (v1.5)
Code: Alles auswählen
Jul 11 06:16:15 arkay eth1: network connection down
Jul 11 06:16:17 arkay eth1: network connection up using port A
Jul 11 06:16:17 arkay speed: 10
Jul 11 06:16:17 arkay autonegotiation: no
Jul 11 06:16:17 arkay duplex mode: half
Jul 11 06:16:17 arkay flowctrl: none
Jul 11 06:16:17 arkay irq moderation: disabled
Jul 11 06:16:17 arkay tcp offload: enabled
Jul 11 06:16:17 arkay scatter-gather: enabled
Jul 11 06:16:17 arkay tx-checksum: enabled
Jul 11 06:16:17 arkay rx-checksum: enabled
Jul 11 06:16:17 arkay rx-polling: enabled
Jul 11 06:16:38 arkay dhcpd: DHCPDISCOVER from 00:50:9c:3e:44:7e via eth1
Jul 11 06:16:38 arkay dhcpd: DHCPOFFER on 192.168.5.7 to 00:50:9c:3e:44:7e via eth1
Jul 11 06:16:38 arkay dhcpd: DHCPREQUEST for 192.168.5.7 (192.168.5.1) from 00:50:9c:3e:44:7e via eth1
Jul 11 06:16:38 arkay dhcpd: DHCPACK on 192.168.5.7 to 00:50:9c:3e:44:7e via eth1
Gruss,
Rainer