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

Last change on this file since 903 was 903, checked in by Bruno Cornec, 17 years ago

merge -r862:888 $SVN_M/branches/stable

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