diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-14 21:29:10 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-14 21:29:10 +0000 |
commit | 9a778ced3d3a06f22879dd4b71d264e09a370b0b (patch) | |
tree | 2f7112ea4e31d08d9394274136ac737a3cbc224d /loader2/modstubs.h | |
parent | 7b7ad890423bf12fe2c5c4d3b706ca79e162a7a2 (diff) | |
download | anaconda-9a778ced3d3a06f22879dd4b71d264e09a370b0b.tar.gz anaconda-9a778ced3d3a06f22879dd4b71d264e09a370b0b.tar.xz anaconda-9a778ced3d3a06f22879dd4b71d264e09a370b0b.zip |
let's start on 2.6...
try to write some module loading code
modules are .ko, not .o
Diffstat (limited to 'loader2/modstubs.h')
-rw-r--r-- | loader2/modstubs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/loader2/modstubs.h b/loader2/modstubs.h index 0ea68bd12..cd80b600d 100644 --- a/loader2/modstubs.h +++ b/loader2/modstubs.h @@ -2,10 +2,8 @@ #define H_MODSTUBS int ourInsmodCommand(int argc, char ** argv); +int ourRmmodCommand(int argc, char ** argv); int rmmod(char * modName); int insmod(char * modName, char * path, char ** args); -/* hack */ -int combined_insmod_main(int argc, char ** argv); - #endif |