Displaying 20 results from an estimated 20000 matches similar to: "ipconfig"
2005 May 22
1
[patch 00/12] ipconfig and nfsmount compatibility with glibc
Hi,
The following set of patches is intended mostly to improve
ipconfig and nfsmount compatibility with glibc.
The context: I'm working on yaird, an alternative to mkinitrd,
and currently implementing nfs root file systems.  This is based
on ipconfig and nfsmount from klibc, with a rewritten version of kinit.
Users should be able to build the package with vanilla glibc,
since klibc is not
2003 May 05
0
kinit now handles both ipconfig and nfsroot
I just checked in changes to kinit, such that it is now a single 29KB
executable that replaces the kernel's ipconfig and nfsroot code.
The kinit code isn't very elegant, but I figured it was better to save
space than to fully generalise it so that it could be extended in a sort
of modular fashion.  If someone wants modularity, I figure they can
spend the few extra KB and run the
2010 Mar 28
1
[git pull v3] dash, sh4, ipconfig, dprintf, fstype, README's
hello hpa!
added on top of queue ext4 fix, that Ubuntu is carrying from cjwatson.
Got missed out in previous pull requests. Btrfs recognition in fstype.
the patch queue contains sync with latest dash, sh4 fix by Debian porters,
dprintf usage in ipconfig, kinit and nfsmount instead of buggy DEBUG
macro. ipconfig memcpy usage to avoid strict aliasing warnings.
Some interesting README's got
2005 Jan 05
1
[PATCH] kinit/nfsmount.c path from bootp
kinit/nfsmount.c:mount_nfs_root() should use the bootpath specified by
bootp/dhcp.  If the "nfsroot" option is specified then it overrides the
boot server bootpath and a message indicating the override is printed.
--- klibc-0.194/kinit/nfsroot.c.orig	2005-01-05 04:13:47.043897880 -0700
+++ klibc-0.194/kinit/nfsroot.c	2005-01-05 04:13:09.316633296 -0700
@@ -66,34 +66,21 @@
 	const int
2006 Jan 29
1
klibc-1.2.1: kinit works...
I just pushed out klibc-1.2.1; it actually has a working kinit.  There 
are still pieces missing, but at least it works for ipconfig+nfsroot, 
which has been my test configuration.
There is code to handle initrd already in kinit, but it hasn't been 
tested and so is almost certainly broken; I think the code to load a 
ramdisk from a floppy or other block device is not yet there.
	-hpa
2006 Jan 26
1
nfs root filesystem problem
Hi ,
 	I am doing some tests with klibc 1.1.16. I would like to have my 
root file system on an nfs export , but the /etc folder it to be mounted 
from a different nfs export.
 	I am using 2.6.15.1 with initrd ramdisk initramfs nfsroot etc 
compiled in. My pxelinux.cfg looks like this:
default opteron
label opteron
kernel gentoo/vmlinuz-opteron
append  initrd=gentoo/initramfs.img ip=dhcp
2006 Jun 22
2
[patch] ipconfig add dhcp file preseeding support
From: Geert Stappers <stappers at debian.org>
To make klibc-ipconfig transmit the DHCP vendor class "d-i"
and get the DHCP preseeding filename in a text file, it needs the
attached patch.
belows patch allows ipconfig to be used in Debian installer once
the hostname is sent too, see
http://blog.andrew.net.au/2006/05/17#d-i_dhcp_hacking
Signed-off-by: maximilian attems <maks at
2010 Apr 26
1
valgrind ipconfig work
this is just on the common path, need to checkout others too,
but a start:
commit 5501109f6597f2bbed17a264b247c36220362dfb
Author: maximilian attems <max at stro.at>
Date:   Mon Apr 26 08:07:51 2010 +0200
    [klibc] ipconfig: Fix valgrind errors
    
    valgrind was rightfully complaining on ipconfig eth0:
    ERROR SUMMARY: 5 errors from 4 contexts (suppressed: 0 from 0)
    
    all
2010 Mar 16
4
ipconfig: DHCP fixes
Hi,
Here are two fixes for ipconfig/dhcp, the second of them being required for my
dhcp3 server to accept ipconfig's requests.
Thanks,
Louis
Louis Rilling (2):
      ipconfig: Fix missing dhcp_end field
      ipconfig: Fix null ciaddr on DHCPREQUEST during SELECTING state
 usr/kinit/ipconfig/dhcp_proto.c |    4 ++--
 usr/kinit/ipconfig/packet.c     |    2 +-
 2 files changed, 3
2011 Jun 08
1
[PATCH] Don't try to guess the nameserver in ipconfig.
klibcs ipconfig tries to guess the nameserver if no nameserver is
provided. This may happen due to misconfigured dhcp or the use of
the ip= parameter.
This patch removes the guessing from ipconfig as it is not possible for
any other script to determine if the provided nameserver is valid or
a guessed one. If the old behavior is really needed this could be easily
implemented in an external script.
2010 Aug 25
0
[patch] ipconfig fixes + run-init nit
hello,
Preparing my first klibc maintainenace release. :)
My plan is to have the patches cook in klibc-queue and once 
everythings is fine deploy them in the main klibc repo.
Please test/review belows patches.
I plan to release the current queue really soon for klibc 1.5.20
due to the urgent ipconfig fixes. For now you find my patch queue on:
2011 Jul 18
2
ipconfig:About the length of 'options' field of DHCP packet
Hi,
I had the problem that 'ipconfig' as DHCP client in Debian-squeeze could not get
DHCP Offer reply from the built-in DHCP server of the cheap route that I have.
The name of the router  is 'MegaBitGear TE4571E' which 
I got at contract of ADSL Internet access service in 2009.
The router is not too old and can reply to other 
DHCP clients like ISC-dhclient, WindowsXP and Vista.
2011 Mar 27
4
ipconfig problem if multiple devices are up
Hi,
it seems that ipconfig has a problem if multiple devices are up and
connected to the same network. It seems that it uses the wrong
socket/device index to compare it to incoming packet. To be more
precise, the packet gets discarded in do_pkt_recv as the ifindex from
state differs always from the incoming packet
To reproduce create two tap devices:
$ sudo tunctl -u uli -t tap0                  
2025 Feb 15
1
[PATCH] ipconfig: align reads of ext for sparc64
Sparc64 will busfault when reading data from exts
if they are not type aligned.
A similar issue was fixed in dhcpcd here:
https://github.com/NetworkConfiguration/dhcpcd/issues/430
https://github.com/ColinMcInnes/dhcpcd/commit/07a5fdd7d34b072e52c316877d14c6d2581cb379
Signed-off-by: Jesse Taube <mr.bossman075 at gmail.com>
---
 usr/kinit/ipconfig/dhcp_proto.c | 7 +++++--
 1 file changed, 5
2008 Jun 14
2
PATCH: ipconfig may discard useful packets
Thank you Maximilian, this was much easier!
I still have problems with my email setup, I haven't found the time to
migrate my mailbox from Windows yet. And gmail (webmail) doesn't allow
many customizations, so I'm also uploading the patch to
http://users.sch.gr/alkisg/temp/0001-Signed-off-by.patch
I'm sending a patch regarding the discard_packet() function, please
consider it for
2010 Apr 16
0
[git pull v4] dash, sh4, ipconfig, dprintf, fstype, README's
hello hpa,
pulled in latest dash containing your jobcontrol patch and fixed
faccessat() in klibc on the way. the build of this needs lmkl fix:
http://marc.info/?l=linux-kernel&m=127138736217956&w=2
patch queue otherwise similar to previous pull request, please pull:
git pull git://git.debian.org/users/maks/klibc.git maks
Aleksey Cheusov (1):
      [klibc] [BUILD] Fixed build on NetBSD
2012 Jul 31
1
Request: Infiniband Support in ipconfig
When attempting to boot a system using Infiniband interfaces, ipconfig does not recognize Infiniband NICs as having valid MAC addresses, so they are silently ignored.  As I would like to be able to netboot using Infiniband, I have patched ipconfig to support Infiniband interfaces.
Fortunately, it's a pretty simple and straightforward patch.  Below is the patch for your consideration.
---
2008 May 24
3
ipconfig and boot filename option
Hi,
ipconfig is used in ltsp (thin clients) initramfs. Some of the users
have to have 2 dhcp servers in ltsp environments, so they hit on this
problem:
The first dhcp request is from the pxe rom boot code. This code
ignores any dhcp offers that don't have a filename field. So they
always get the correct address, from the ltsp server.
The second dhcp request (in initramfs) is done by
2003 Nov 29
1
[PATCH] ash not make -j safe, make spotless updates
some files depend on nodes.h, but there is no dependency for that fact.
olaf@mandarine:~/klibc-0.87> grep -Er 'include.*nodes.h' ash/ | sed 's-^[^/]\+/\([^.]*\).*-\1.o-' | xargs echo OBJ_NODES =
OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o
make spotless doesnt work reliable, the patch adds a few more targets.
Is
2008 Feb 22
1
ipconfig bug with multiple interfaces
Hello,
if ipconfig is run as ipconfig :::::: (i.e. long spec with all fields empty) 
and the computer has multiple network interfaces and only one of them is 
connected to dhcp managed network, ipconfig ends up in an infinite loop (see 
the log bellow).
The following patch solved this for me. According to README, if the <device> 
in the long spec is empty, the first interface should be