Displaying 20 results from an estimated 5000 matches similar to: "Kernel build help"
2005 Aug 23
1
xenU
Hi,
When building an xenU guest kernel do you need to make ARCH=xen ?? as I am
trying to build a kernel that includes a patch for abi-sco that has parts
build against i386 and I believe that this is causing the build not to work.
Any ideas welcome.
Thanks
Mark
Mark Olliver BSc (Hons) MBCS
Thermeon Europe Ltd
e-Card www.thermeoneurope.com/e-Card/mpo
Email mpo@thermeoneurope.com
Web
2004 Apr 22
7
smallest phone
Folks,
I'm looking for a SIP or IAX phone for field techs to take with them
when out on service calls. The regular desktop phones are just way too
big. Is there anything like the size of a full-sized cell phone? Or
smaller, not I doubt that...
Tim
--
2005 Jun 06
4
DMA not enabled in Xen Kernel?
I installed Xen using the binary release on debian sarge and got it to boot
no problem but when I check if dma is enabled with ''hdparm /dev/hda'' it''s
not.
I can''t enable it either with ''hdparm -d1 /dev/hda''. Says operation not
permited. Using my debian default kernel dma works just fine.
How can I enable dma with the Xen Kernel?
Thanks!
2000 May 15
1
ipmasqadm port forwarding ipportfw (HOWTO)
Hi All,
born out of frustration with conflicting info on the net, I thought I'd
share a simple guide to set up the port forwarding side of masquerading...
this presumes you already have basic ipchains setup and simple masquerading
of internal machines installed.
PORT FORWARDING USING IPMASQADM.
Ipmasqadm supercedes the ipportfw feature.
1 - Upgrade to Kernel 2.2.12-20 if not already
2005 Jun 14
1
SUCCESS! Help rebuilding kernel get mount error on reboot
John,
Was there a reason for the (2) make oldconfigs? just curious
This all worked
rpm -i kernel.XXX.src.rpm
cd /usr/src/redhat/SPECS
rpmbuild -bp --target i686 kernel.XXX.spec
cd /usr/src/redhat/BUILD/kernel-2.6.9/linux-2.6.9
make mrproper
cp /boot/config-2.6.9-11.EL .config
make oldconfig
2007 Apr 26
1
recompile kernel 2.6.20.7 (so I get updated forcedeth driver)
I installed 2.6.20.7
copied /boot/config{something} to .config
make oldconfig
make oldconfig
make menuconfig - turned on drivers -> Sata -> nvidia
make bzImage
make modules
make modules_install
make install
rebooted.
Seems like the issue I had with forcedeth (nvidia) bad MAC address is gone.
However, the iptables gives errors.
Where in the menu tree do I enable what iptables needs???
I
2005 Nov 17
3
Custom kernel RPM/SRPM
Hi,
I've built customs kernels from the SRPMs with the following:
rpmbuild -bp --target=i686 /path/to/spec
cd /usr/src
ln -s /usr/src/redhat/BUILD/kernel-x.y.z/linux-x.y.z linux
cd linux
make oldconfig
make menuconfig
make all
make modules
make modules_install
And it works just fine. The problem now is that I think installing
that way isn't
2012 Jul 25
9
Regression in kernel 3.5 as Dom0 regarding PCI Passthrough?!
Hi!
i notice a serious regression with 3.5 as Dom0 kernel (3.4 was rock
stable):
1st: only the GPU PCI Passthrough works, the PCI USB Controller is not
recognized within the DomU (HVM Win7 64)
Dom0 cmdline is:
ro root=LABEL=dom0root
xen-pciback.hide=(08:00.0)(08:00.1)(00:1d.0)(00:1d.1)(00:1d.2)(00:1d.7)
security=apparmor noirqdebug nouveau.msi=1
Only 8:00.0 and 8:00.1 get passed through
2005 Apr 11
2
Upgrading to 2.6.11
What would be the proper steps to upgrade to 2.6.11 on centos 4.0
This is what I think...
tar -zxvf linux-2.6.11.6.bz2
cd linux-2.6.11.6
make oldconfig - enter for all choies presented
vi .config - change 8250_NR_UARTS to
36 to support 4 - 8 port rs232 cards
make bzImage
2009 Jan 15
21
4 disk raidz1 with 3 disks...
Hello,
I was hoping that this would work:
http://blogs.sun.com/zhangfan/entry/how_to_turn_a_mirror
I have 4x(1TB) disks, one of which is filled with 800GB of data (that I
cant delete/backup somewhere else)
> root at FSK-Backup:~# zpool create -f ambry raidz1 c4t0d0 c5t0d0 c5t1d0
> /dev/lofi/1
> root at FSK-Backup:~# zpool list
> NAME SIZE USED AVAIL CAP HEALTH ALTROOT
2020 Jul 25
2
[PATCH] klcc: Remove the need for bash
Currently, in the entire klibc bash is only used to identify the path of
the perl binary. It is doing so using the bash built-in 'type' function,
which is POSIX compliant according to [0], but the option -c is not.
By using `command -v` instead, we achieve the same result, in a POSIX
compliant manor [1], potentially removing the unneeded bash dependency.
0
2010 Aug 12
13
[PATCH] GSoC 2010 - Memory hotplug support for Xen guests - third fully working version
Hi,
Here is the third version of memory hotplug support
for Xen guests patch. This one cleanly applies to
git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git
repository, xen/memory-hotplug head.
On Fri, Aug 06, 2010 at 04:03:18PM +0400, Vasiliy G Tolstov wrote:
[...]
> Testing on sles 11 sp1 and opensuse 11.3. On results - send e-mail..
Thx.
On Fri, Aug 06, 2010 at 12:34:08PM
2005 Mar 17
4
Caller ID on E&M Wink
I am an Asterisk newby, and I cannot seem to get Caller ID information
from our T1 line. When calls appear at the phones, they say the call
came from "asterisk" and unknown number.
I know how Caller ID information is passed on an analog phone line
(between the rings) but with a T1 line, I don't know technically how it
is done.
I don't see the caller's number in the
2020 Sep 09
2
[PATCH] klcc: Remove the need for bash
Hey Greg,
On 08-09-2020 22:07, Thorsten Glaser wrote:
> Greg Thelen dixit:
>
>> This doesn't work with older versions of make. ?make 4.2.1 seems common
>> now and does not support $(shell command).
>>
>> $ cat Makefile
>> $(info take1: $(shell command -v ls))
>> $(info take2: $(shell bash -c 'type -p ls'))
>>
>> all:
>>
2010 Jun 01
2
Error: when updating the latestt kernel 2.6.34 in centos 5.5
Hi,
I encounter a error when installing the latest kernel 2.6.34 in centos.
Steps:
1. download source code.
2.tar -xvf 2.6.34.tar.gz
3.use the .config file of current system in /boot directory.
4.make ,make modules_install, make install,
5.reboot.
6.error:: accur.
Reading all physical volumes. This may take a while ...
Activating logical volumes
Volume group "VolGroup00" not found
2009 Oct 08
2
lattice: passing multiple lty values to the key/legend
hi all,
It's not clear to me how (or if) I can pass multiple values for lty to a key in xyplot?
I've tried: lines=list(lty=1:3), to no avail.
Do I need to use something other than auto.key?
(Deepayan, if you're out there, I have your book and must admit the answer isn't jumping out at me.)
thanks in advance!
Michael Folkes
example code:
#____________________________
2013 Sep 09
1
Hmisc binconf function value interpretation during narrow confidence intervals
Hello all,
I've been using binconf (package Hmisc) at a range of alpha values and
noticed that using the 'Wilson' method when alpha is larger (i.e. narrow
CI), results in the upper value being smaller than the lower value. The
'exact' and 'asymptotic' methods give results in the realm I'd expect.
But the help file suggests:
"Following Agresti and Coull, the
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
2018 May 25
2
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
On Fri, 25 May 2018 16:11:47 -0700
"Samudrala, Sridhar" <sridhar.samudrala at intel.com> wrote:
> On 5/25/2018 3:34 PM, Stephen Hemminger wrote:
> > On Thu, 24 May 2018 09:55:14 -0700
> > Sridhar Samudrala <sridhar.samudrala at intel.com> wrote:
> >
> >> --- a/drivers/net/hyperv/Kconfig
> >> +++ b/drivers/net/hyperv/Kconfig
>
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
2018 May 25
2
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
On Fri, 25 May 2018 16:11:47 -0700
"Samudrala, Sridhar" <sridhar.samudrala at intel.com> wrote:
> On 5/25/2018 3:34 PM, Stephen Hemminger wrote:
> > On Thu, 24 May 2018 09:55:14 -0700
> > Sridhar Samudrala <sridhar.samudrala at intel.com> wrote:
> >
> >> --- a/drivers/net/hyperv/Kconfig
> >> +++ b/drivers/net/hyperv/Kconfig
>
2006 Apr 07
2
Chances of 4.3+ version with latest kernel
All,
I had a terrible time installing 4.2 on an ASUS NFORCE x86_64 motherboard.
I did manage to get it working... Also the compaq V4000 laptop same issues.
I thought I would try 4.3 and see if it was better... Seems to be the
same really.
All the "fixes" the kernel needs were not included in the 4.3 kernel.
What are the changes of a 4.3+ version that runs a 2.6.16 kernel? I know