mirror of
https://github.com/openwrt/packages.git
synced 2025-01-31 01:22:13 +00:00
aa150031b9
fatresize is a small tool using libparted to resize FAT type partitions. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
8 lines
135 B
Bash
8 lines
135 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"fatresize")
|
|
test $(/sbin/fatresize -h | grep '^Please report bugs to mouse@ya.ru' | wc -l) -gt 0
|
|
;;
|
|
esac
|