소스 검색

Fixing hashlet

Bob Mottram 11 년 전
부모
커밋
1c66f0510e
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      beaglebone.txt

+ 3
- 3
beaglebone.txt 파일 보기

660
 Install the hashlet [[./images/hashlet_installed.jpg][like this]] on the BBB, then install some dependencies.
660
 Install the hashlet [[./images/hashlet_installed.jpg][like this]] on the BBB, then install some dependencies.
661
 
661
 
662
 #+BEGIN_SRC: bash
662
 #+BEGIN_SRC: bash
663
-apt-get install git build-essential libgcrypt11-dev texinfo
663
+apt-get install git automake libtool bison flex build-essential libgcrypt11-dev texinfo
664
 #+END_SRC
664
 #+END_SRC
665
 
665
 
666
 Download the source code.
666
 Download the source code.
668
 #+BEGIN_SRC: bash
668
 #+BEGIN_SRC: bash
669
 mkdir ~/build
669
 mkdir ~/build
670
 cd ~/build
670
 cd ~/build
671
-git clone https://github.com/bashrc/hashlet.git
671
+git clone https://github.com/cryptotronix/hashlet
672
 #+END_SRC
672
 #+END_SRC
673
 
673
 
674
 Now install the driver.
674
 Now install the driver.
721
 
721
 
722
 while :
722
 while :
723
 do
723
 do
724
-hashlet --bus=/dev/i2c-${I2CBUS} --Bytes ${BYTES} random-bytes > ${DEVICE}
724
+/usr/local/bin/hashlet --bus=/dev/i2c-${I2CBUS} random ${BYTES} > ${DEVICE}
725
 done
725
 done
726
 #+END_SRC
726
 #+END_SRC
727
 
727