summaryrefslogtreecommitdiffstats
path: root/isys/otherinsmod.c
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-06-14 20:40:39 +0000
committerMatt Wilson <msw@redhat.com>2000-06-14 20:40:39 +0000
commit97567424883ebd6c00fd8fde6bd4c891950adcb2 (patch)
treee971f2a10729564a642de373b0b158122652a082 /isys/otherinsmod.c
parentcdc51ea3cf5b8120f0c8121b7e38facbacbb987d (diff)
downloadanaconda-97567424883ebd6c00fd8fde6bd4c891950adcb2.tar.gz
anaconda-97567424883ebd6c00fd8fde6bd4c891950adcb2.tar.xz
anaconda-97567424883ebd6c00fd8fde6bd4c891950adcb2.zip
insmod now handles insmod_64 for sparc64
Diffstat (limited to 'isys/otherinsmod.c')
-rw-r--r--isys/otherinsmod.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/isys/otherinsmod.c b/isys/otherinsmod.c
index 146c50113..c09798eee 100644
--- a/isys/otherinsmod.c
+++ b/isys/otherinsmod.c
@@ -12,7 +12,6 @@
/* hack */
int combined_insmod_main(int argc, char ** argv);
-int combined_insmod64_main(int argc, char ** argv);
int ourInsmodCommand(int argc, char ** argv) {
char * file;
@@ -88,12 +87,7 @@ int ourInsmodCommand(int argc, char ** argv) {
argv[0] = "insmod";
argv[1] = file;
-#ifdef __sparc__
- if (sparc64)
- rc = combined_insmod64_main(argc, argv);
- else
-#endif
- rc = combined_insmod_main(argc, argv);
+ rc = combined_insmod_main(argc, argv);
if (rmObj) unlink(file);