View Single Post
Old 03-29-2018, 12:21 PM   #82
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by nicolas161 View Post
GeoffR, I use an ARM (armv7l) Chromebook, and in order to run your script I had to compile your patch32lsb for my architecture. I thought that maybe you would like to have the binary, so here it is.
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
GeoffR is offline   Reply With Quote