#541: Compilar Maloader para ejecutar algunos comandos MacOSA en el cliente OpenGnSys.

git-svn-id: https://opengnsys.es/svn/branches/version1.0@3485 a21b9725-9963-47de-94b9-378ad31fedc9
remotes/github/master
ramon 2013-01-17 12:02:01 +00:00
parent dfbf4fa825
commit d7e9bb6650
1 changed files with 19 additions and 0 deletions

View File

@ -56,6 +56,25 @@ cp -va sgdisk gdisk fixparts cgdisk /sbin
cd ..
rm -fr gptfdisk-0.8.5*
# Mach-O loader for Linux
echo "maloader"
wget https://github.com/shinh/maloader/archive/master.zip
unzip master.zip
cd maloader-master
perl -pi -le 'print "#include <unistd.h>" if $. == 45' ld-mac.cc
if [ "$(arch)" == "x86_64" ]; then
ln -fs /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /lib/libcrypto.so 2>/dev/null
make release
else
ln -fs /lib/i386-linux-gnu/libcrypto.so.1.0.0 /lib/libcrypto.so 2>/dev/null
make clean
make all BITS=32
fi
cp -va ld-mac /usr/bin
cp -va libmac.so /usr/lib
cd ..
rm -fr master.zip maloader-master
popd
export LANGUAGE=$OLDLANGUAGE
export LC_ALL=$OLDLC_ALL