On Friday 26 December 2003 16:40, Ori Idan wrote:
>>I downloaded Kernel 2.6.0 from kernel.org
>>I used make gconfig to make my configuration, starting from scratch, not
>>using any previous .config file.

(looks like a problem with your .config -- please save it for later)

Since you don't have previous .config, it is better to start with:
    make defconfig

Only after sucsessful compilation, change specific settings, than you'll
know what CONFIG_* combination caused the problem.

>>such as:
>>drivers/built-in.o(.text+0x48f37): In function `ide_match_hwif':
>>: undefined reference to `ide_hwifs'
>>or:
>>drivers/built-in.o(.text+0x49740): In function `ide_setup_pci_controller':
>>: undefined reference to `noautodma'

Since most of your errors relate to IDE, it may help you to focus on related
CONFIG_*. Here is a short list from my kernel-2.6.0:

  $ grep -v '^#' .config | grep _IDE
  CONFIG_IDE=y
  CONFIG_BLK_DEV_IDE=y
  CONFIG_BLK_DEV_IDEDISK=y
  CONFIG_IDEDISK_MULTI_MODE=y
  CONFIG_BLK_DEV_IDECD=y
  CONFIG_BLK_DEV_IDEPCI=y
  CONFIG_IDEPCI_SHARE_IRQ=y
  CONFIG_BLK_DEV_IDEDMA_PCI=y
  CONFIG_IDEDMA_PCI_AUTO=y
  CONFIG_BLK_DEV_IDEDMA=y
  CONFIG_IDEDMA_AUTO=y

If you eventually find what caused this compile to fail, please report
how it was solved, since it may indicate a bug in kbuild.

Bye,

-- 
Oron Peled                             Voice/Fax: +972-4-8228492
[EMAIL PROTECTED]                  http://www.actcom.co.il/~oron

"A billion flies _can_ be wrong - I'd rather eat lamb chops than shit."
        -- Linus Torvalds on lkml


=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to