Saturday, 8 November 2014
Tuesday, 4 November 2014
Monday, 22 September 2014
Android M in the talks
Source: http://www.androidau...erences-529004/
Wednesday, 17 September 2014
NEW Website !!!!
geektillithertz.com
Wednesday, 3 September 2014
Yocto For Raspberry-Pi Build Guide
The Yocto Project is a Linux Foundationworkgroup whose goal is to produce tools and processes that will enable the creation ofLinux distributions for embedded softwarethat are independent of the underlying architecture of the embedded software itself. The project was announced by the Linux Foundation in 2010.[1] In March 2011, the project aligned itself with OpenEmbedded, an existing framework with similar goals, with the result being The OpenEmbedded-Core Project.
The Yocto Project is an open source project whose focus is on improving the software development process for embedded Linuxdistributions. The Yocto Project provides interoperable tools, metadata, and processes that enable the rapid, repeatable development of Linux-based embedded systems.
Source: http://en.m.wikipedia.org/wiki/Yocto_Project
We are going to download a beta version of the Yocto Project compilation which I have tested and is known to be working on the Pi.
First navigate to the directory you want to store your Yocto Project files and run the following command:
This will clone the master version of the yocto project collection.
cd into the yoctoProject directory
Sunday, 24 August 2014
Chromium Os For RaspberryPi
but here is the catch i end up in a kernel panic during boot
if we can get pat this e can successfully run chromium os on the pi!!!
so if ANYBODY can pl. help it would be great!
GUIDE TO BUILD CHROMIUM OS
Saturday, 23 August 2014
Saturday, 28 June 2014
Thursday, 19 June 2014
piROBO Joystck RaspberryPi L298n
Thursday, 15 May 2014
Quake 3 Hardware Acceleration on Raspberry pi | Broadcom Annoncement
Sunday, 11 May 2014
Macintosh System 7 on RaspberryPi
Apple has proven itself from time to time, one such innovation was The Macintosh - first ever commercially available GUI computer !!
Successfully emulated on the Raspberry Pi using Mini Emacs ARM Port
Windows 1.01 on RaspberryPi
Windows 1.01 , an OS which commercially never came out too well, being emulated on the RaspberryPi.
This time i actually use Bochs emulator in place of Qemu as qemu caused the OS, for some reason, to hang right after boot !!!
Friday, 2 May 2014
Monday, 21 April 2014
PiFm | RaspberryPi Tutorial
Set-Up
- Basic RaspberryPi setup
- GPIO Ribbon OR a ~20cm wire connected to GPIO pin 4 ie. pin 7 on header 1.
- Tune an FM radio to 103.3Mhz
Installation:
- Git Clone The Repo
git clone git://github.com/Make-Magazine/PirateRadio - cd PirateRadio
- Build (not required but recommended)
g++ -o pifm pifm.c - FUN TIME
sudo ./pifm <mono.wav> <frequency>
ex. sudo ./pifm auido.wav 103.3
This is definitely illegal in most countries !!!
Thursday, 10 April 2014
Saturday, 5 April 2014
Kolibri Os on RaspberryPi
Sunday, 9 March 2014
Windows 95 On Raspberry Pi
This is Windows 95 running on Pi using Qemu
For tutorial follow this post by Dietmar.
Boot Animation On Raspberry Pi !!
Here's a solution to pimp it up!
- Copy & Paste
sudo apt-get install omxplayer - copy the boot video to /home/pi as boot.mp4
- create this init script with your editor in /etc/init.d/asplashscreen
sudo nano /etc/init.d/asplashscreen - Copy & Paste
#! /bin/sh
### BEGIN INIT INFO
# Provides: asplashscreen
# Required-Start:
# Required-Stop:
# Should-Start:
# Default-Start: S
# Default-Stop:
# Short-Description: Show custom splashscreen
# Description: Show custom splashscreen
### END INIT INFO
do_start () {
omxplayer /home/pi/boot.mp4 &
exit 0
}
case "$1" in
start|"")
do_start
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop)
# No-op
;;
status)
exit 0
;;
*)
echo "Usage: asplashscreen [start|stop]" >&2
exit 3
;;
esac
:
5)Copy and Paste
sudo chmod a+x /etc/init.d/asplashscreen
6)Copy and Paste
sudo insserv /etc/init.d/asplashscreen
Finally Reboot and Enjoy!!!