Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Missing Modules After Compiling Kernel Post 303036396 by Azrael on Tuesday 25th of June 2019 01:24:04 AM
Old 06-25-2019
After my first post I tried this guide too. I followed the steps word for word, but the kernel produced was not bootable saying the image was not found.

I did try the 'make modules' command with the steps in the first link I used. That generated a few more modules after booting back in, but not nearly what I need.

I'm not opposed to trying a static kernel, but it seems every link I find is missing steps, outdated or just garbage. If someone could just point me to steps that actually work, that's probably what I need.
 

10 More Discussions You Might Find Interesting

1. SuSE

How do I load kernel modules so BestCrypt will work

I'm using SuSE 9.2 Pro and trying to use a program call BestCrypt. I get it installed and type bctool and it says "Kernel modules not loaded". If you need to know anymore about it you can find it at http://www.jetico.com/linux/bcrypt-help/index.htm linux:/home/chris/Desktop/Xtheater-0.9.2 #... (6 Replies)
Discussion started by: CTroxtell21
6 Replies

2. HP-UX

Information about kernel modules

Hi all, what do kernel modules libaudit, klog and strlog do? Specifically I want to determine if it was possible for us to determine if kernel level auditing is enabled at all? regards (0 Replies)
Discussion started by: slash_blog
0 Replies

3. Solaris

cc not found error in compiling perl modules

:rolleyes:make cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xdepend -DVERSION="2.121\" -DXS_VERSION=\"2.121\" -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE Dumper.c make: cc: Command not found make: *** Error 127 cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8... (0 Replies)
Discussion started by: priyophan
0 Replies

4. UNIX for Advanced & Expert Users

Kernel Modules Not geting built

I installed in VM the Mandriva Linux with 2.6.27 kernel. But presently when I fire make the modules .ko does not get built. I get the following output on firing command in the kernel module folder. $ make Building first_driver.c ... make: Entering directory... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

5. Programming

Debugging Linux Kernel Modules

I am aware of debugging linux applications using gdb and ddd. Now I have written a simple kernel module having init_module, exit _module and some functions for tasklets and workqueues. I want to debug these kernel modules like I used to debug applications setting breakpoints etc. How can I debug... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

6. Emergency UNIX and Linux Support

Linux: passing parameters to kernel modules

Hi, I need to set qlogic qla2xxx parameters in /etc/modprobe.conf (Oracle Linux Server release 5.7, almost equal to RedHat 5.7) two questions: how can I pass this parameters to the module while it is loaded (fibre channel luns are in use), if possible at all and how can I check the... (3 Replies)
Discussion started by: funksen
3 Replies

7. Web Development

<Apache>error when compiling CPP modules

Hi, I am working on Linux Platform. I am just trying to port a CPP module to apache as a module. When I try to build the Apache , it throws an error as follows libtool: unrecognized option `-DLINUX=2' Later I did some search and changed the config_vars.mk file under the "build" directory of... (0 Replies)
Discussion started by: ashabb
0 Replies

8. UNIX for Dummies Questions & Answers

Linux kernel modules makefiles doubts

This query is regarding the makefiles of linux kernel modules. I saw at some sites on net it is suggesting to include the following path: KERNEL_SOURCE := /usr/src/linux... while at some places it is askibg to include /lib/modules path: KERNEL_SOURCE := /lib/modules/2.6.27-7-generic/build... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

9. Hardware

Linux Kernel Modules

Hey everyone. I have a question, doing an lsmod gives me a list of all the loaded modules for my system. But how did they know to load? my /etc/modules files is empty, so how did these modules know to load themselves on boot time? If I were to take this hard drive to another computer with a... (6 Replies)
Discussion started by: Lost in Cyberia
6 Replies

10. Linux

Disable loading kernel modules

Hi, I am running CentOS 6.5 and I want to remove auto loading 8021q and garp modules, but there are no configure files in /etc/modprobe.d define bot modules. I even added both module names to /etc/modprobe.d/blacklist.conf, both of them are still loaded after the reboot. How can I disable... (2 Replies)
Discussion started by: hce
2 Replies
HADDOCK(1)						  Haddock documentation generator						HADDOCK(1)

NAME
haddock - documentation tool for annotated Haskell source code SYNOPSIS
haddock [options] file... DESCRIPTION
This manual page documents briefly the haddock command. Extensive documentation is available in various other formats including DVI, Post- Script and HTML; see below. file is a filename containing a Haskell source module. All the modules specified on the command line will be processed together. When one module refers to an entity in another module being processed, the documentation will link directly to that entity. Entities that cannot be found, for example because they are in a module that is not being processed as part of the current batch, simply will not be hyperlinked in the generated documentation. haddock will emit warnings listing all the identifiers it could not resolve. The modules should not be mutually recursive, as haddock does not like swimming in circles. OPTIONS
The programs follow the usual GNU command line syntax, with long options starting with two dashes (`--'). A summary of options is included below. For a complete description, see the other documentation. -o DIR, --odir=DIR directory in which to put the output files -i FILE, --read-interface=FILE read an interface from FILE. -D FILE, --dump-interface=FILE dump an interface for these modules in FILE. -l DIR, --lib=DIR location of Haddock's auxiliary files -h, --html Generate documentation in HTML format. Several files will be generated into the current directory (or the specified directory if the -o option is given), including the following: index.html The top level page of the documentation: lists the modules available, using indentation to represent the hierarchy if the modules are hierarchical. haddock.css The stylesheet used by the generated HTML. Feel free to modify this to change the colors or layout, or even specify your own stylesheet using the --css option. module.html An HTML page for each module. doc-index.html, doc-index-XX.html The index, split into two (functions/constructors and types/classes, as per Haskell namespaces) and further split alphabeti- cally. --hoogle output for Hoogle --html-help=format produce index and table of contents in mshelp, mshelp2 or devhelp format (with -h) --source-base=URL Include links to the source files in the generated documentation, where URL is the base URL where the source files can be found. -s URL, --source-module=URL Include links to the source files in the generated documentation, where URL is a source code link for each module (using the %{FILE} or %{MODULE} vars). --source-entity=URL Include links to the source files in the generated documentation, where URL is a source code link for each entity (using the %{FILE}, %{MODULE} or %{NAME} vars). --comments-base=URL URL for a comments link on the contents and index pages. --comments-module=URL URL for a comments link for each module (using the %{MODULE} var). --comments-entity=URL URL for a comments link for each entity (using the %{FILE}, %{MODULE} or %{NAME} vars). --css=FILE Use the CSS FILE instead of the default stylesheet that comes with haddock for HTML output. It should specify certain classes: see the default stylesheet for details. -p FILE, --prologue=FILE Specify a file containing prologue text. -t TITLE, --title=TITLE Use TITLE as the page heading for each page in the documentation. This will normally be the name of the library being documented. The title should be a plain string (no markup please!). -k NAME, --package=NAME Specify the package name (optional). -n, --no-implicit-prelude do not assume Prelude is imported -d, --debug Enable extra debugging output. -?, --help Display help. -V, --version Display version. -v, --verbose Verbose status reporting. --use-contents=URL Use a separately-generated HTML contents page. --gen-contents Generate an HTML contents from specified interfaces. --use-index=URL Use a separately-generated HTML index. --gen-index Generate an HTML index from specified interfaces. --ignore-all-exports Behave as if all modules have the ignore-exports atribute --hide=MODULE Behave as if MODULE has the hide attribute. --use-package=PACKAGE The modules being processed depend on PACKAGE. FILES
/usr/bin/haddock /usr/share/haddock-2.6.1/html/plus.gif /usr/share/haddock-2.6.1/html/minus.gif /usr/share/haddock-2.6.1/html/haskell_icon.gif /usr/share/haddock-2.6.1/html/haddock.js /usr/share/haddock-2.6.1/html/haddock.css /usr/share/haddock-2.6.1/html/haddock-DEBUG.css SEE ALSO
/usr/share/doc/haddock/, the Haddock homepage (http://haskell.org/haddock/) <http://haskell.org/haddock/> COPYRIGHT
Haddock version 2.6.1 Copyright 2006-2010 Simon Marlow <simonmar@microsoft.com>, Dawid Waern <david.waern@gmail.com>. All rights reserved. AUTHOR
This manual page was written by Michael Weber <michaelw@debian.org> for the Debian GNU/Linux system (but may be used by others). Haddock, version 2.6.1 July 2010 HADDOCK(1)
All times are GMT -4. The time now is 03:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy