search for: try_load

Displaying 3 results from an estimated 3 matches for "try_load".

Did you mean: drv_load
2011 Mar 27
1
[PATCH] MAC Address Ranges
...char *config_file; char *last; int tries = 8; + int mac_tries = 16; + char *last_mac; get_prefix(); if (DHCPMagic & 0x02) { @@ -1101,8 +1103,16 @@ static int pxe_load_config(void) /* Try loading by MAC address */ strcpy(config_file, MAC_str); - if (try_load(ConfigName)) - return 0; + last_mac = &config_file[20]; + + while (mac_tries) { + *last_mac = '\0'; + if (try_load(ConfigName)) { + return 0; + } + last_mac--; + mac_tries--; + } /* Nope, try hexadecimal IP prefixes...
2011 Dec 29
6
tftp with pxelinux.0 from syslinux 4.10-pre17
Hello everybody, setting up a netboot server for a really huge network I decided to go with what will be syslinux 4.10 to get support for http transfers. The setup works on my notebook, booting another notebook directly connected. However it fails with a more complex setup: A virtual machine on the second notebook bridged to the ethernet device does not boot, systems from other networks with a
2005 Dec 13
7
MARK: targinfosize 8 != 4
Hello all, I got this problem while trying to shape traffic with iptables MARK and HTB. MARK: targinfosize 8 != 4 --set-mark gives "invalid argument" error message. Kernel version is 2.4.29 (some patches from patch o matic applied) Iptables version 1.3.4 Intel x86 architecture. I saw this problem discussed in a few places, but the discussions didn''t come to a conclusion