* "make install" error
@ 2013-08-30 5:17 Arun M Kumar
2013-08-30 6:53 ` Alexandru Juncu
2013-09-05 11:35 ` Srinivas Ganji
0 siblings, 2 replies; 3+ messages in thread
From: Arun M Kumar @ 2013-08-30 5:17 UTC (permalink / raw)
To: kernelnewbies
I am building Kernel 3.9.10
and i have given the following Commands during the Process
1. make mrproper
2. make defconfig
3. make oldconfig
4. make -j 8
5. make modules_install
6. make install
on the last step, i face the following error
-------------------------------------------------------------------------------
sh /home/temp/Linux_Build/linux-3.9.10/arch/x86/boot/install.sh 3.9.10
arch/x86/boot/bzImage \
System.map "/boot"
Kernel image: /boot/vmlinuz-3.9.10
Initrd image: /boot/initrd-3.9.10
Root device:
/dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part2
(/dev/sda2) (mounted on / as ext4)
Resume device:
/dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part1 (/dev/sda1)
find: `/lib/modules/3.9.10/kernel/drivers/scsi': No such file or directory
modprobe: Module xhci_hcd not found.
WARNING: no dependencies for kernel module 'xhci-hcd' found.
modprobe: Module hid_logitech_dj not found.
WARNING: no dependencies for kernel module 'hid-logitech-dj' found.
Features: acpi plymouth block usb resume.userspace resume.kernel
--------------------------------------------------------------------------------------
what could have gone wrong during the process ?
^ permalink raw reply [flat|nested] 3+ messages in thread
* "make install" error
2013-08-30 5:17 "make install" error Arun M Kumar
@ 2013-08-30 6:53 ` Alexandru Juncu
2013-09-05 11:35 ` Srinivas Ganji
1 sibling, 0 replies; 3+ messages in thread
From: Alexandru Juncu @ 2013-08-30 6:53 UTC (permalink / raw)
To: kernelnewbies
On 30 August 2013 08:17, Arun M Kumar <arunkr.linux@gmail.com> wrote:
> I am building Kernel 3.9.10
>
> and i have given the following Commands during the Process
>
>
> 1. make mrproper
>
> 2. make defconfig
>
> 3. make oldconfig
>
> 4. make -j 8
>
> 5. make modules_install
>
> 6. make install
>
>
> on the last step, i face the following error
>
> -------------------------------------------------------------------------------
>
> sh /home/temp/Linux_Build/linux-3.9.10/arch/x86/boot/install.sh 3.9.10
> arch/x86/boot/bzImage \
> System.map "/boot"
>
> Kernel image: /boot/vmlinuz-3.9.10
> Initrd image: /boot/initrd-3.9.10
> Root device:
> /dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part2
> (/dev/sda2) (mounted on / as ext4)
> Resume device:
> /dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part1 (/dev/sda1)
> find: `/lib/modules/3.9.10/kernel/drivers/scsi': No such file or directory
> modprobe: Module xhci_hcd not found.
> WARNING: no dependencies for kernel module 'xhci-hcd' found.
> modprobe: Module hid_logitech_dj not found.
> WARNING: no dependencies for kernel module 'hid-logitech-dj' found.
> Features: acpi plymouth block usb resume.userspace resume.kernel
>
> --------------------------------------------------------------------------------------
>
> what could have gone wrong during the process ?
It seems that the current current has a module for your hard drive.
But in the new kernel, you didn't have it compile. Go in make
menuconfig and select to compile it.
^ permalink raw reply [flat|nested] 3+ messages in thread
* "make install" error
2013-08-30 5:17 "make install" error Arun M Kumar
2013-08-30 6:53 ` Alexandru Juncu
@ 2013-09-05 11:35 ` Srinivas Ganji
1 sibling, 0 replies; 3+ messages in thread
From: Srinivas Ganji @ 2013-09-05 11:35 UTC (permalink / raw)
To: kernelnewbies
Arun,
I guess, you need to select the xhci_hcd module in make menuconfig for
building it as a module. Here are the steps to do it.
Device Drivers --->
[*] USB support --->
Make sure "Support for Host-side USB" is a dynamically loadable module by
moving the cursor to that item and hitting the 'm' key.
Choose to compile the xHCI (USB 3.0) host controller driver as a module by
hitting "m".
Turn off (hit "n") on the "USB selective suspend/resume and wakeup" option,
since that isn't supported by the driver yet.
Turn on debugging for the USB subsystem by hitting "y" on "USB verbose
debug messages" and "USB announce new devices".
Also turn on the "Debugging for the xHCI host controller" option.
Finally EXIT from all the sub sections and SAVE the CONFIG file.
I hope, this helps you.
Regards,
Srinivas G
On Fri, Aug 30, 2013 at 10:47 AM, Arun M Kumar <arunkr.linux@gmail.com>wrote:
> I am building Kernel 3.9.10
>
> and i have given the following Commands during the Process
>
>
> 1. make mrproper
>
> 2. make defconfig
>
> 3. make oldconfig
>
> 4. make -j 8
>
> 5. make modules_install
>
> 6. make install
>
>
> on the last step, i face the following error
>
>
> -------------------------------------------------------------------------------
>
> sh /home/temp/Linux_Build/linux-3.9.10/arch/x86/boot/install.sh 3.9.10
> arch/x86/boot/bzImage \
> System.map "/boot"
>
> Kernel image: /boot/vmlinuz-3.9.10
> Initrd image: /boot/initrd-3.9.10
> Root device:
> /dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part2
> (/dev/sda2) (mounted on / as ext4)
> Resume device:
> /dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JP1H5C-part1 (/dev/sda1)
> find: `/lib/modules/3.9.10/kernel/drivers/scsi': No such file or directory
> modprobe: Module xhci_hcd not found.
> WARNING: no dependencies for kernel module 'xhci-hcd' found.
> modprobe: Module hid_logitech_dj not found.
> WARNING: no dependencies for kernel module 'hid-logitech-dj' found.
> Features: acpi plymouth block usb resume.userspace resume.kernel
>
>
> --------------------------------------------------------------------------------------
>
> what could have gone wrong during the process ?
>
>
> _______________________________________________
> Kernelnewbies mailing list
> Kernelnewbies at kernelnewbies.org
> http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20130905/210e50de/attachment-0001.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-05 11:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-30 5:17 "make install" error Arun M Kumar
2013-08-30 6:53 ` Alexandru Juncu
2013-09-05 11:35 ` Srinivas Ganji
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).