2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
/*
|
|
|
|
* public domain -- Dave 'Kill a Cop' Cinege <dcinege@psychosis.com>
|
|
|
|
*
|
|
|
|
* makedevs
|
|
|
|
* Make ranges of device files quickly.
|
|
|
|
* known bugs: can't deal with alpha ranges
|
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include "internal.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static const char makedevs_usage[] =
|
2000-05-13 01:11:47 +05:30
|
|
|
"makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
|
|
|
"\nCreates a range of block or character special files\n\n"
|
2000-04-15 22:04:54 +05:30
|
|
|
"TYPEs include:\n"
|
|
|
|
"\tb:\tMake a block (buffered) device.\n"
|
|
|
|
"\tc or u:\tMake a character (un-buffered) device.\n"
|
|
|
|
"\tp:\tMake a named pipe. MAJOR and MINOR are ignored for named pipes.\n\n"
|
|
|
|
"FIRST specifies the number appended to NAME to create the first device.\n"
|
|
|
|
"LAST specifies the number of the last item that should be created.\n"
|
|
|
|
"If 's' is the last argument, the base device is created as well.\n\n"
|
|
|
|
"For example:\n"
|
|
|
|
"\tmakedevs /dev/ttyS c 4 66 2 63 -> ttyS2-ttyS63\n"
|
2000-05-13 01:11:47 +05:30
|
|
|
"\tmakedevs /dev/hda b 3 0 0 8 s -> hda,hda1-hda8\n"
|
|
|
|
#endif
|
|
|
|
;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int makedevs_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
const char *basedev = argv[1];
|
|
|
|
const char *type = argv[2];
|
|
|
|
int major = atoi(argv[3]);
|
|
|
|
int Sminor = atoi(argv[4]);
|
|
|
|
int S = atoi(argv[5]);
|
|
|
|
int E = atoi(argv[6]);
|
|
|
|
int sbase = argc == 8 ? 1 : 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
mode_t mode = 0;
|
|
|
|
dev_t dev = 0;
|
|
|
|
char devname[255];
|
|
|
|
char buf[255];
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
if (argc < 7 || *argv[1]=='-')
|
|
|
|
usage(makedevs_usage);
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
switch (type[0]) {
|
2000-02-09 01:28:47 +05:30
|
|
|
case 'c':
|
|
|
|
mode = S_IFCHR;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
mode = S_IFBLK;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
mode = S_IFIFO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(makedevs_usage);
|
|
|
|
}
|
|
|
|
mode |= 0660;
|
|
|
|
|
|
|
|
while (S <= E) {
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
if (type[0] != 'f')
|
|
|
|
dev = (major << 8) | Sminor;
|
|
|
|
strcpy(devname, basedev);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
if (sbase == 0) {
|
2000-02-09 01:28:47 +05:30
|
|
|
sprintf(buf, "%d", S);
|
1999-10-05 21:54:54 +05:30
|
|
|
strcat(devname, buf);
|
|
|
|
} else {
|
|
|
|
sbase = 0;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
if (mknod(devname, mode, dev))
|
|
|
|
printf("Failed to create: %s\n", devname);
|
|
|
|
|
|
|
|
S++;
|
|
|
|
Sminor++;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
return 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
And this is what this program replaces. The shell is too slow!
|
|
|
|
|
|
|
|
makedev () {
|
|
|
|
local basedev=$1; local S=$2; local E=$3
|
|
|
|
local major=$4; local Sminor=$5; local type=$6
|
|
|
|
local sbase=$7
|
|
|
|
|
|
|
|
if [ ! "$sbase" = "" ]; then
|
|
|
|
mknod "$basedev" $type $major $Sminor
|
|
|
|
S=`expr $S + 1`
|
|
|
|
Sminor=`expr $Sminor + 1`
|
|
|
|
fi
|
|
|
|
|
|
|
|
while [ $S -le $E ]; do
|
|
|
|
mknod "$basedev$S" $type $major $Sminor
|
|
|
|
S=`expr $S + 1`
|
|
|
|
Sminor=`expr $Sminor + 1`
|
|
|
|
done
|
|
|
|
}
|
|
|
|
*/
|