Displaying 3 results from an estimated 3 matches for "fb6640a".
Did you mean:
  f866b0a
  
2009 Apr 07
2
[PATCH] ipconfig: send hostname in DHCP request
...trcpy(dev->hostname, template->hostname);
+	if (template->reqhostname[0] != '\0')
+		strcpy(dev->reqhostname, template->reqhostname);
 	dev->caps &= template->caps;
 
 	bringup_device(dev);
diff --git a/usr/kinit/ipconfig/netdev.h b/usr/kinit/ipconfig/netdev.h
index fb6640a..a25a544 100644
--- a/usr/kinit/ipconfig/netdev.h
+++ b/usr/kinit/ipconfig/netdev.h
@@ -35,6 +35,7 @@ struct netdev {
 	uint32_t ip_gateway;	/* my gateway           */
 	uint32_t ip_nameserver[2];	/* two nameservers      */
 	uint32_t serverid;		/* dhcp serverid        */
+	char reqhostname[SYS_NML...
2008 Sep 05
0
initial mntent.h, mount features, ipconfig fixes
...byes long and several NFS mount options.
    fixes http://bugs.debian.org/497800
    
    Reported-by: "Christopher Huhn, GSI" <C.Huhn at gsi.de>
    Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/kinit/ipconfig/netdev.h b/usr/kinit/ipconfig/netdev.h
index fb6640a..1091943 100644
--- a/usr/kinit/ipconfig/netdev.h
+++ b/usr/kinit/ipconfig/netdev.h
@@ -4,7 +4,7 @@
 #include <sys/utsname.h>
 #include <net/if.h>
 
-#define BPLEN		40
+#define BPLEN		256
 #define FNLEN		128			/* from DHCP  RFC 2131 */
 
 struct netdev {
commit 5c5809f953c2182d9bad3993...
2008 Sep 07
1
[git pull v2] initial mntent.h, mount features, ipconfig fixes
...byes long and several NFS mount options.
    fixes http://bugs.debian.org/497800
    
    Reported-by: "Christopher Huhn, GSI" <C.Huhn at gsi.de>
    Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/kinit/ipconfig/netdev.h b/usr/kinit/ipconfig/netdev.h
index fb6640a..1091943 100644
--- a/usr/kinit/ipconfig/netdev.h
+++ b/usr/kinit/ipconfig/netdev.h
@@ -4,7 +4,7 @@
 #include <sys/utsname.h>
 #include <net/if.h>
 
-#define BPLEN		40
+#define BPLEN		256
 #define FNLEN		128			/* from DHCP  RFC 2131 */
 
 struct netdev {
commit 6fa665bc70d5f87282a35185...