2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-13 21:12:06 +00:00
|
|
|
/*
|
|
|
|
* Mini fdflush implementation for busybox
|
|
|
|
*
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
|
1999-10-13 21:12:06 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
#include "internal.h"
|
1999-10-13 21:12:06 +00:00
|
|
|
#include <stdio.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2000-07-08 18:55:24 +00:00
|
|
|
/* From <linux/fd.h> */
|
|
|
|
#define FDFLUSH _IO(2,0x4b)
|
1999-10-05 16:24:54 +00:00
|
|
|
|
1999-10-13 21:12:06 +00:00
|
|
|
extern int fdflush_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int value;
|
|
|
|
int fd;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-04-13 18:49:43 +00:00
|
|
|
if (argc <= 1 || **(++argv) == '-') {
|
2000-05-12 19:41:47 +00:00
|
|
|
usage("fdflush DEVICE\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
|
|
|
"\nForces floppy disk drive to detect disk change\n"
|
|
|
|
#endif
|
|
|
|
);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
fd = open(*argv, 0);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror(*argv);
|
|
|
|
exit(FALSE);
|
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
value = ioctl(fd, FDFLUSH, 0);
|
2000-03-23 01:09:18 +00:00
|
|
|
/* Don't bother closing. Exit does
|
|
|
|
* that, so we can save a few bytes */
|
|
|
|
/* close(fd); */
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
if (value) {
|
|
|
|
perror(*argv);
|
|
|
|
exit(FALSE);
|
|
|
|
}
|
2000-06-19 17:25:40 +00:00
|
|
|
return(TRUE);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|