File: README

package info (click to toggle)
sd-mux-ctrl 0.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,748 kB
  • sloc: cpp: 653; xml: 24; sh: 21; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 749 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.4 - 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