summaryrefslogtreecommitdiffstats
path: root/rescue/devices.pl
Commit message (Expand)AuthorAgeFilesLines
* create /dev/md* devices in rescuePascal Rigaux2004-10-141-0/+1
* init doesn't like anymore that /etc/initctl is already hereGuillaume Cottenceau2003-01-071-1/+0
* add st devicesGuillaume Cottenceau2002-09-231-0/+1
* typo in update kernel by /meStew Benedict2001-10-161-0/+1
* cleanup, speedup, use mknod for devicesPascal Rigaux2001-08-291-0/+52
ation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include "util.h" /*======================================================================*/ char * xstrdup(const char *s) { char *n = strdup(s); if (!n) { error("Out of memory"); exit(1); } return n; }