summaryrefslogtreecommitdiff
path: root/recipes-core
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2014-02-03 14:15:06 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2014-02-04 10:59:00 +0100
commit1e8ca77472a1576f2f252b10e64c179a86f620cb (patch)
treef2040781c743b6522707e3fb7b99d8a1b2ab52f4 /recipes-core
parenta7ae43dce8901dd564df329e63f37b2b182dfc5e (diff)
util-linux: add fstrim
Add the fstrim utility to Colibri T30 image. The utility allows to send trim commands to the underlaying flash translation layer, which allows too free not used flash sectors and those improve wear- leveling
Diffstat (limited to 'recipes-core')
-rw-r--r--recipes-core/util-linux/util-linux_2.22.2.bbappend12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes-core/util-linux/util-linux_2.22.2.bbappend b/recipes-core/util-linux/util-linux_2.22.2.bbappend
new file mode 100644
index 0000000..d3f8ca2
--- /dev/null
+++ b/recipes-core/util-linux/util-linux_2.22.2.bbappend
@@ -0,0 +1,12 @@
+#backport from master, util-linux: Add fstrim utility, commit ee3599472d7c5ccbf259312c7622b982941b6b1e
+
+PRINC := "${@int(PRINC) + 2}"
+
+PACKAGES =+ "util-linux-fstrim"
+FILES_util-linux-fstrim = "${base_sbindir}/fstrim"
+
+do_install_append () {
+ if [ -f "${D}${sbindir}/fstrim" ]; then
+ mv "${D}${sbindir}/fstrim" "${D}${base_sbindir}/fstrim"
+ fi
+}