summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAdam Malinowski <a.malinowsk2@partner.samsung.com>2016-03-18 10:53:37 +0100
committerAdam Malinowski <a.malinowsk2@partner.samsung.com>2016-04-26 17:43:05 +0200
commit500583e5998cc6951d8901a70c571cae94b1e2dd (patch)
tree473eeb6fbb37b395d85416f2dcacc553460a3c6b /README
parentf43fc1cf03a9f3a908af2c14d45d6eeb8af3c668 (diff)
downloadsd-mux-500583e5998cc6951d8901a70c571cae94b1e2dd.tar.gz
sd-mux-500583e5998cc6951d8901a70c571cae94b1e2dd.tar.bz2
sd-mux-500583e5998cc6951d8901a70c571cae94b1e2dd.zip
Add project skeleton
Add all needed files for building the project. Change-Id: I70e5d7a3c8aff62cc499beafd60ea2ed4d6a84f6
Diffstat (limited to 'README')
-rw-r--r--README28
1 files changed, 28 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..9ea9c40
--- /dev/null
+++ b/README
@@ -0,0 +1,28 @@
+sd-mux stands for Secure Digital Multiplexer.
+
+This is SD card switcher (multiplexer) designed to help automatic testing.
+
+This project is sd-mux controller - binary for controlling sd-mux device.
+
+Requirements:
+ 1. libftdi1 1.2 - development library
+ 2. popt - development library
+ 3. cmake - binary tool
+
+Build:
+ - enter into project directory
+ - create 'build' directory
+ - enter into "build" directory
+ - run 'cmake ..'
+ - run 'make'
+
+Install:
+ - enter into 'build' directory
+ - run 'sudo make install' to install binary into '/usr/local/bin' (the default one) directory
+
+Note:
+If you want to install files into different directory then add argument to cmake command:
+ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+Then again run:
+ make
+ make install