2000-03-05 03:53:27 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-03-14 08:10:51 +05:30
|
|
|
* freeramdisk and fdflush implementations for busybox
|
2000-03-05 03:53:27 +05:30
|
|
|
*
|
|
|
|
* Copyright (C) 2000 and written by Emanuele Caratti <wiz@iol.it>
|
2003-07-15 02:51:08 +05:30
|
|
|
* Adjusted a bit by Erik Andersen <andersen@codepoet.org>
|
2006-03-14 08:10:51 +05:30
|
|
|
* Unified with fdflush by Tito Ragusa <farmatito@tiscali.it>
|
2000-03-05 03:53:27 +05:30
|
|
|
*
|
2006-09-22 08:22:41 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
2000-03-05 03:53:27 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2006-03-19 04:32:45 +05:30
|
|
|
/* From <linux/fd.h> */
|
|
|
|
#define FDFLUSH _IO(2,0x4b)
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int freeramdisk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-15 01:36:44 +05:30
|
|
|
int freeramdisk_main(int argc, char **argv)
|
2000-03-05 03:53:27 +05:30
|
|
|
{
|
2003-05-08 18:39:28 +05:30
|
|
|
int fd;
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2006-03-14 08:10:51 +05:30
|
|
|
if (argc != 2) bb_show_usage();
|
2000-03-05 03:53:27 +05:30
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
fd = xopen(argv[1], O_RDWR);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2006-03-14 08:10:51 +05:30
|
|
|
// Act like freeramdisk, fdflush, or both depending on configuration.
|
2007-07-15 03:37:14 +05:30
|
|
|
ioctl_or_perror_and_die(fd, (ENABLE_FREERAMDISK && applet_name[1]=='r')
|
|
|
|
|| !ENABLE_FDFLUSH ? BLKFLSBUF : FDFLUSH, NULL, "%s", argv[1]);
|
2005-09-08 08:41:58 +05:30
|
|
|
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) close(fd);
|
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-03-05 03:53:27 +05:30
|
|
|
}
|