Quote:
Originally Posted by GeoffR
Thanks for that, and sorry I didn't notice your post earlier.
If your executable is added to the tools/ subirectory, is it enough just to add this clause to the 4.7.10413.sh script to make it work on the Chromebook?
Code:
case `uname -s` in
Darwin)
PATCH32LSB_BIN=tools/patch32lsb-Darwin
;;
Linux)
case `uname -m` in
i?86)
PATCH32LSB_BIN=tools/patch32lsb-i386-Linux
;;
x86_64)
PATCH32LSB_BIN=tools/patch32lsb-x86_64-Linux
;;
armv7l)
PATCH32LSB_BIN=tools/patch32lsb-ARM-linux
;;
esac
;;
esac
|
Yes, I tried that and it works.