
Linux From Scratch - Version 7.0
224
Create a new file /etc/modprobe.d/usb.conf by running the following:
install -v -m755 -d /etc/modprobe.d
cat > /etc/modprobe.d/usb.conf << "EOF"
# Begin /etc/modprobe.d/usb.conf
install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
# End /etc/modprobe.d/usb.conf
EOF
8.3.3. Contents of Linux
Installed files: config-3.1, vmlinux-3.1-lfs-7.0-3.1, and System.map-3.1
Installed directories: /lib/modules, /usr/share/doc/linux-3.1
Short Descriptions
config-3.1 Contains all the configuration selections for the kernel
vmlinux-3.1-lfs-7.0 The engine of the Linux system. When turning on the computer, the kernel is the first
part of the operating system that gets loaded. It detects and initializes all components
of the computer's hardware, then makes these components available as a tree of files
to the software and turns a single CPU into a multitasking machine capable of running
scores of programs seemingly at the same time
System.map-3.1 A list of addresses and symbols; it maps the entry points and addresses of all the
functions and data structures in the kernel
Comentarios a estos manuales