aboutsummaryrefslogtreecommitdiffstats
path: root/meta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'meta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in')
-rwxr-xr-xmeta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in b/meta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in
deleted file mode 100755
index 8897ee97..00000000
--- a/meta-mel-support/recipes-bsp/96boards-tools/96boards-tools/resize-helper.sh.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /bin/sh
-
-# ---------------------------------------------------------------------------------------------------------------------
-# SPDX-License-Identifier: GPL-2.0-or-later
-# ---------------------------------------------------------------------------------------------------------------------
-
-### BEGIN INIT INFO
-# Provides: Resize root filesystem to fit available disk space
-# Description: Start resize helper, then remove own init from runlevels,
-# as it is required only for first boot. run settle to provide partition
-# table details.
-### END INIT INFO
-
-DESC="resize helper"
-
-case $1 in
- start)
- echo "Starting $DESC"
- @bindir@/udevadm settle
- @sbindir@/resize-helper
- @sbindir@/update-rc.d remove resize-helper.sh
- ;;
- *)
- echo "Usage: @sysconfdir@/init.d/resize-helper.sh {start}" >&2
- exit 1
- ;;
-esac
-
-exit 0
-
-# vim:noet