source: MondoRescue/trunk/mindi/rootfs/sbin/MyInsmod@ 322

Last change on this file since 322 was 30, checked in by bcornec, 19 years ago

Id property added on files to allow for better conf. management

  • Property svn:keywords set to Id
File size: 210 bytes
Line 
1#!/bin/sh
2
3res=99
4for i in insmod.static insmod busybox ; do
5 if [ "$i" = "busybox" ] ; then
6 $i insmod $*
7 else
8 $i $*
9 fi
10 res=$?
11 [ "$res" -eq "0" ] && exit $res
12done
13exit $res
Note: See TracBrowser for help on using the repository browser.