1d39e33d46
fstrim applet is a port from util-linux. "Trimming" your NAND/eMMC storage will restore the write performance back to normal after having slow down issues on sequential write and random write due to usage over time. Good reading on subject: http://forum.xda-developers.com/showthread.php?t=1971852 (with long options and CLEAN_UP turned on) function old new delta .rodata 148494 148791 +297 fstrim_main - 283 +283 fstrim_sfx - 128 +128 packed_usage 28826 28903 +77 applet_main 2760 2768 +8 applet_names 2343 2350 +7 applet_nameofs 690 692 +2 ------------------------------------------------------------------------------ (add/remove: 3/0 grow/shrink: 5/0 up/down: 802/0) Total: 802 bytes Signed-off-by: Malek Degachi <malek-degachi@laposte.net> Cc: Eugene San (eugenesan) <eugenesan@gmail.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
48 lines
1.8 KiB
Plaintext
48 lines
1.8 KiB
Plaintext
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
|
|
|
lib-y:=
|
|
|
|
INSERT
|
|
lib-$(CONFIG_ACPID) += acpid.o
|
|
lib-$(CONFIG_BLKID) += blkid.o
|
|
lib-$(CONFIG_DMESG) += dmesg.o
|
|
lib-$(CONFIG_FBSET) += fbset.o
|
|
lib-$(CONFIG_FDFLUSH) += freeramdisk.o
|
|
lib-$(CONFIG_FDFORMAT) += fdformat.o
|
|
lib-$(CONFIG_FDISK) += fdisk.o
|
|
lib-$(CONFIG_FINDFS) += findfs.o
|
|
lib-$(CONFIG_FLOCK) += flock.o
|
|
lib-$(CONFIG_FREERAMDISK) += freeramdisk.o
|
|
lib-$(CONFIG_FSCK_MINIX) += fsck_minix.o
|
|
lib-$(CONFIG_FSTRIM) += fstrim.o
|
|
lib-$(CONFIG_GETOPT) += getopt.o
|
|
lib-$(CONFIG_HEXDUMP) += hexdump.o
|
|
lib-$(CONFIG_HWCLOCK) += hwclock.o
|
|
lib-$(CONFIG_IPCRM) += ipcrm.o
|
|
lib-$(CONFIG_IPCS) += ipcs.o
|
|
lib-$(CONFIG_LOSETUP) += losetup.o
|
|
lib-$(CONFIG_LSPCI) += lspci.o
|
|
lib-$(CONFIG_LSUSB) += lsusb.o
|
|
lib-$(CONFIG_MKFS_EXT2) += mkfs_ext2.o
|
|
lib-$(CONFIG_MKFS_MINIX) += mkfs_minix.o
|
|
lib-$(CONFIG_MKFS_REISER) += mkfs_reiser.o
|
|
lib-$(CONFIG_MKFS_VFAT) += mkfs_vfat.o
|
|
lib-$(CONFIG_MKSWAP) += mkswap.o
|
|
lib-$(CONFIG_MORE) += more.o
|
|
lib-$(CONFIG_MOUNT) += mount.o
|
|
lib-$(CONFIG_PIVOT_ROOT) += pivot_root.o
|
|
lib-$(CONFIG_RDATE) += rdate.o
|
|
lib-$(CONFIG_RDEV) += rdev.o
|
|
lib-$(CONFIG_READPROFILE) += readprofile.o
|
|
lib-$(CONFIG_RTCWAKE) += rtcwake.o
|
|
lib-$(CONFIG_SCRIPT) += script.o
|
|
lib-$(CONFIG_SCRIPTREPLAY) += scriptreplay.o
|
|
lib-$(CONFIG_SETARCH) += setarch.o
|
|
lib-$(CONFIG_SWAPONOFF) += swaponoff.o
|
|
lib-$(CONFIG_SWITCH_ROOT) += switch_root.o
|
|
lib-$(CONFIG_UMOUNT) += umount.o
|