diff options
Diffstat (limited to 'package/freescale-imx/imx-uuc')
| -rw-r--r-- | package/freescale-imx/imx-uuc/Config.in | 23 | ||||
| -rw-r--r-- | package/freescale-imx/imx-uuc/S80imx-uuc | 27 | ||||
| -rw-r--r-- | package/freescale-imx/imx-uuc/imx-uuc.hash | 2 | ||||
| -rw-r--r-- | package/freescale-imx/imx-uuc/imx-uuc.mk | 41 | ||||
| -rw-r--r-- | package/freescale-imx/imx-uuc/imx-uuc.service | 11 | 
5 files changed, 0 insertions, 104 deletions
diff --git a/package/freescale-imx/imx-uuc/Config.in b/package/freescale-imx/imx-uuc/Config.in deleted file mode 100644 index 0e257bde17..0000000000 --- a/package/freescale-imx/imx-uuc/Config.in +++ /dev/null @@ -1,23 +0,0 @@ -config BR2_PACKAGE_IMX_UUC -	bool "imx-uuc" -	depends on BR2_TOOLCHAIN_HAS_THREADS -	depends on BR2_arm # Only relevant for i.MX -	depends on BR2_USE_MMU # fork() -	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 # usb_functionfs_descs_head_v2 -	select BR2_PACKAGE_HOST_DOSFSTOOLS -	help -	  This package provides the Universal Adapter user-space -	  utility that is used to receive commands from the -	  Manufacturing Tool using the Freescale UTP Protocol. - -	  It requires a Freescale/NXP kernel whose configuration -	  contains the CONFIG_FSL_UTP option. - -	  This package is provided by Freescale/NXP as-is and doesn't -	  have an upstream. - -comment "imx-uuc needs a toolchain w/ threads, headers >= 3.18" -	depends on BR2_arm -	depends on BR2_USE_MMU -	depends on !BR2_TOOLCHAIN_HAS_THREADS || \ -		!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 diff --git a/package/freescale-imx/imx-uuc/S80imx-uuc b/package/freescale-imx/imx-uuc/S80imx-uuc deleted file mode 100644 index 9a92c98383..0000000000 --- a/package/freescale-imx/imx-uuc/S80imx-uuc +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -NAME=uuc -DAEMON=/usr/bin/$NAME - -case "$1" in -    start) -	printf "Starting $NAME: " -	start-stop-daemon -S -q -b -m -p /var/run/${NAME}.pid -x $DAEMON -	[ $? = 0 ] && echo "OK" || echo "FAIL" -	;; -    stop) -	printf "Stopping $NAME: " -	start-stop-daemon -K -q -p /var/run/${NAME}.pid -	[ $? = 0 ] && echo "OK" || echo "FAIL" -	;; -    restart|reload) -	$0 stop -	sleep 1 -	$0 start -	;; -    *) -	echo "Usage: $0 {start|stop|restart}" -	exit 1 -esac - -exit $? diff --git a/package/freescale-imx/imx-uuc/imx-uuc.hash b/package/freescale-imx/imx-uuc/imx-uuc.hash deleted file mode 100644 index 623bd27644..0000000000 --- a/package/freescale-imx/imx-uuc/imx-uuc.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally computed -sha256 ac4960b9dc53cfd09709951c4bf1f774567ff0918d0b216b480e1f7df8c6ee48  imx-uuc-79e9798eee9cd972d92ed2b18f170de856d153c9.tar.gz diff --git a/package/freescale-imx/imx-uuc/imx-uuc.mk b/package/freescale-imx/imx-uuc/imx-uuc.mk deleted file mode 100644 index 52d2b7c7a3..0000000000 --- a/package/freescale-imx/imx-uuc/imx-uuc.mk +++ /dev/null @@ -1,41 +0,0 @@ -################################################################################ -# -# imx-uuc -# -################################################################################ - -IMX_UUC_VERSION = 79e9798eee9cd972d92ed2b18f170de856d153c9 -IMX_UUC_SITE = $(call github,NXPmicro,imx-uuc,$(IMX_UUC_VERSION)) -IMX_UUC_LICENSE = GPL-2.0+ -IMX_UUC_LICENSE_FILES = COPYING - -# mkfs.vfat is needed to create a FAT partition used by g_mass_storage -# so Windows do not offer to format the device when connected to the PC. -IMX_UUC_DEPENDENCIES = host-dosfstools - -define IMX_UUC_BUILD_CMDS -	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC=$(TARGET_CC) -endef - -define IMX_UUC_INSTALL_TARGET_CMDS -	$(INSTALL) -D -m 755 $(@D)/uuc $(TARGET_DIR)/usr/bin/uuc -	$(INSTALL) -D -m 755 $(@D)/sdimage $(TARGET_DIR)/usr/bin/sdimage -	$(INSTALL) -D -m 755 $(@D)/ufb $(TARGET_DIR)/usr/bin/ufb -	dd if=/dev/zero of=$(TARGET_DIR)/fat bs=1M count=1 -	$(HOST_DIR)/sbin/mkfs.vfat $(TARGET_DIR)/fat -endef - -define IMX_UUC_INSTALL_INIT_SYSV -	$(INSTALL) -D -m 0755 package/freescale-imx/imx-uuc/S80imx-uuc \ -		$(TARGET_DIR)/etc/init.d/S80imx-uuc -endef - -define IMX_UUC_INSTALL_INIT_SYSTEMD -	$(INSTALL) -D -m 0644 package/freescale-imx/imx-uuc/imx-uuc.service \ -		$(TARGET_DIR)/usr/lib/systemd/system/imx-uuc.service -	mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ -	ln -fs ../../../../usr/lib/systemd/system/imx-uuc.service \ -		$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/imx-uuc.service -endef - -$(eval $(generic-package)) diff --git a/package/freescale-imx/imx-uuc/imx-uuc.service b/package/freescale-imx/imx-uuc/imx-uuc.service deleted file mode 100644 index fae7fc64dd..0000000000 --- a/package/freescale-imx/imx-uuc/imx-uuc.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=i.MX Universal UTP Communication Service -After=systemd-modules-load.service - -[Service] -Type=simple -ExecStart=/usr/bin/uuc - -[Install] -WantedBy=multi-user.target -  | 

