mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ON RASPBERRY
 | |
| --------------
 | |
| sudo apt-get install libprotobuf-dev libQt4-dev rsync
 | |
| 
 | |
| ON HOST
 | |
| ---------
 | |
| export RASPI=192.168.1.17
 | |
| export RASCROSS_DIR="$HOME/raspberrypi"
 | |
| export HYPERION_DIR="$HOME/hyperion"
 | |
| 
 | |
| sudo apt-get install git rsync cmake ia32-libs protobuf-compiler
 | |
| 
 | |
| mkdir -p "$RASCROSS_DIR/rootfs"
 | |
| git clone git://github.com/raspberrypi/tools.git "$RASCROSS_DIR/tools"
 | |
| 
 | |
| git clone https://github.com/raspberrypi/firmware.git "$RASCROSS_DIR/firmware"
 | |
| ln -s "$RASCROSS_DIR/firmware/opt" "$RASCROSS_DIR/rootfs/opt"
 | |
| 
 | |
| rsync -rl --delete-after --safe-links pi@$RASPI:/{lib,usr} "$RASCROSS_DIR/rootfs"
 | |
| 
 | |
| git clone https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
 | |
| mkdir "$HYPERION_DIR/build"
 | |
| cmake -DCMAKE_TOOLCHAIN_FILE="$HYPERION_DIR/Toolchain-RaspberryPi.cmake" --build "$HYPERION_DIR/build" "$HYPERION_DIR"
 | |
| 
 | |
| 
 | |
| 
 | |
| ------------------------------------------------------------------------------
 | |
| These instructions are based on the guide given by:
 | |
| http://airwiki.ws.dei.polimi.it/index.php/Cross-compiling_for_the_RaspberryPi
 |