Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: chromeos-base/usb-server/files/install-usbsrv

Issue 5446002: Remove unused usb-server ebuild (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/chromiumos-overlay.git@master
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos-base/usb-server/files/LICENSE.incentivespro ('k') | chromeos-base/usb-server/files/usbsrv » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos-base/usb-server/files/install-usbsrv
diff --git a/chromeos-base/usb-server/files/install-usbsrv b/chromeos-base/usb-server/files/install-usbsrv
deleted file mode 100755
index 9e1b16893b7be9a0332c36a52cb2cd076920a127..0000000000000000000000000000000000000000
--- a/chromeos-base/usb-server/files/install-usbsrv
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-#
-# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-#
-# We use the tusbd USB-over-IP stack from www.incentivespro.com to do
-# test configuration of some hardware. Their userland is
-# free-as-in-beer and we don't have redistribution rights, so we ask
-# people who need it to download and install it on the target machine
-# with this script.
-
-set -e
-set -u
-
-TARGETDIR="$(dirname "$0")"
-
-tmpdir=$(mktemp -d)
-
-cd ${tmpdir}
-wget http://incentivespro.com/usb-server.tar.gz
-
-echo Verifying download...
-
-# NB: sha256sum input must be hexhexhex<SPC><SPC>filename. echo
-# supplies one, we supply the other.
-echo "31b022ce88e77f31f40ea4821d864e6099e70ee451937c978d6979e2ca6c84fe"\
- " usb-server.tar.gz" \
- | sha256sum -c
-
-echo Verified
-
-# Don't want to delete temp directory until verification passes (so we can
-# debug)
-trap "rm -rf ${tmpdir}; exit 1" 1 2 13 15
-
-tar -xzf usb-server.tar.gz
-
-cd usb-server
-sudo cp usbsrv ${TARGETDIR}/usbsrv.real
-sudo cp usbsrvd ${TARGETDIR}
-# Don't need usbsrvd-cl
-
-cd /
-echo USB server installation successful
-rm -rf ${tmpdir}
« no previous file with comments | « chromeos-base/usb-server/files/LICENSE.incentivespro ('k') | chromeos-base/usb-server/files/usbsrv » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698