From 76822c8c08c3090902fade2582e0f3e15bde3729 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Fri, 8 Feb 2008 09:11:44 +0000 Subject: busybox cleanup: * remove some outdated / in-between versions * remove angstrom-only defconfig in bb 1.7.2 * make 1.7.2 the new default preference --- packages/busybox/busybox-1.5.0/dhcp-hostname.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 packages/busybox/busybox-1.5.0/dhcp-hostname.patch (limited to 'packages/busybox/busybox-1.5.0/dhcp-hostname.patch') diff --git a/packages/busybox/busybox-1.5.0/dhcp-hostname.patch b/packages/busybox/busybox-1.5.0/dhcp-hostname.patch deleted file mode 100644 index 8e7e68a4c9..0000000000 --- a/packages/busybox/busybox-1.5.0/dhcp-hostname.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- busybox-1.5.0/networking/udhcp/dhcpc.c~ 2007-03-22 15:21:23.000000000 -0500 -+++ busybox-1.5.0/networking/udhcp/dhcpc.c 2007-04-01 08:42:41.000000000 -0500 -@@ -136,6 +136,7 @@ - int retval; - int len; - int no_clientid = 0; -+ char hostbuf[256]; /* (default hostname patch) */ - fd_set rfds; - struct timeval tv; - struct dhcpMessage packet; -@@ -214,6 +215,9 @@ - client_config.background_if_no_lease = 1; - if (opt & OPT_h) - client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0); -+ else /* (default hostname patch) default hostname is our hostname as set */ -+ if (gethostname(hostbuf, sizeof(hostbuf)) == 0) -+ client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, hostbuf, 0); - if (opt & OPT_F) { - client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3); - /* Flags: 0000NEOS -- cgit v1.2.3