aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/freeramdisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/pending/freeramdisk.c')
-rw-r--r--toys/pending/freeramdisk.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/toys/pending/freeramdisk.c b/toys/pending/freeramdisk.c
deleted file mode 100644
index 2af2d504..00000000
--- a/toys/pending/freeramdisk.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* freeramdisk.c - Free all memory allocated to ramdisk
- *
- * Copyright 2014 Vivek Kumar Bhagat <vivek.bhagat89@gmail.com>
- *
- * No Standard
-
-USE_FREERAMDISK(NEWTOY(freeramdisk, "<1>1", TOYFLAG_SBIN|TOYFLAG_NEEDROOT))
-
-config FREERAMDISK
- bool "freeramdisk"
- default n
- help
- usage: freeramdisk [RAM device]
-
- Free all memory allocated to specified ramdisk
-*/
-
-#include "toys.h"
-
-void freeramdisk_main(void)
-{
- int fd;
-
- fd = xopen(toys.optargs[0], O_RDWR);
- xioctl(fd, BLKFLSBUF, toys.optargs[0]);
- if (CFG_TOYBOX_FREE) xclose(fd);
-}