Unverified Commit 2b16817f by devttys0 Committed by GitHub

Merge pull request #399 from ffontaine/master

deps.sh: use new upstream cramfs-tools
parents c2d7e480 0d3a51eb
...@@ -103,16 +103,14 @@ function install_cramfstools ...@@ -103,16 +103,14 @@ function install_cramfstools
INSTALL_LOCATION=/usr/local/bin INSTALL_LOCATION=/usr/local/bin
# https://github.com/torvalds/linux/blob/master/fs/cramfs/README#L106 # https://github.com/torvalds/linux/blob/master/fs/cramfs/README#L106
wget https://downloads.sourceforge.net/project/cramfs/cramfs/1.1/cramfs-1.1.tar.gz?ts=$TIME -O cramfs-1.1.tar.gz git clone https://github.com/npitre/cramfs-tools
tar xf cramfs-1.1.tar.gz
# There is no "make install" # There is no "make install"
(cd cramfs-1.1 \ (cd cramfs-tools \
&& make \ && make \
&& $SUDO install mkcramfs $INSTALL_LOCATION \ && $SUDO install mkcramfs $INSTALL_LOCATION \
&& $SUDO install cramfsck $INSTALL_LOCATION) && $SUDO install cramfsck $INSTALL_LOCATION)
rm cramfs-1.1.tar.gz rm -rf cramfs-tools
rm -rf cramfs-1.1
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment