livebox:beagleboneporting

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
livebox:beagleboneporting [2014/02/12 21:16] – [dmesg log filled with hdmi messages?] mark_baldwinlivebox:beagleboneporting [2015/03/13 04:29] (current) – [Beagle bone notes] brett
Line 4: Line 4:
 Notes on porting the HAH for the beagle bone.  These notes really aren't for consumption by anybody but me as reminders for things I did whilst playing around on the Beagle Bone. Notes on porting the HAH for the beagle bone.  These notes really aren't for consumption by anybody but me as reminders for things I did whilst playing around on the Beagle Bone.
  
 +The Angstrom distribution was just too warty for my liking and I moved everything to UBUNTU which also allows the Raspberry PI and other embedded boards to also join the fun.
 +
 +<note>See [[/livebox/portable]]</note>
 ===== Validating the cross compiler works ===== ===== Validating the cross compiler works =====
  
Line 295: Line 298:
 in the log called with dmesg. It's not really a problem unless you are trying to debug but still annoying. in the log called with dmesg. It's not really a problem unless you are trying to debug but still annoying.
  
-To stop these edit the uEnv.txt file on the FAT partition+To stop these edit the uEnv.txt file on the FAT partition (not uEnv.txt in /boot) 
 + 
 +Mount the partition
 <code> <code>
 mount /dev/mmcblk0p1  /mnt/card mount /dev/mmcblk0p1  /mnt/card
Line 321: Line 326:
 shutdown -r now shutdown -r now
 </code> </code>
 +
 +===== backing up the BeagleBone Black eMMC =====
 +
 +After you have got the BBB up and running how you like it, backing up is always a good idea.
 +
 +You can of course back up the ini settings, plugboard scripts etc using the web GUI but I like to keep a backup of the entire eMMC.
 +
 +There are a few methods to be found on the 'net that require the use of a script on a microSD card. This is ideally the best way but requires
 +stopping the BBB (and if SWMBO is expecting things to happen, that's never good)
 +
 +So here is an option to use dd over ssh to backup to another PC (in my case a mac)
 +
 +on the BBB
 +<code>
 +sudo dd if=/dev/mmcblk0 bs=1M | ssh themac@192.168.0.X "dd of=/Users/themac/Desktop/BBB_Backup_date.img bs=1m"
 +</code>
 +
 +n.b. the block size is set on the BBB using bs=1M but on the mac HAS to be bs=1m (lowercase) (I'm not sure if this is the case :) on a pc)
 +
 +To restore. This needs to be done after booting from an SD card to free up the eMMC
 +The eMMC is then mmcblk1 not mmcblk0
 +<code>
 +ssh themac@192.168.0.X "dd of=/Users/themac/Desktop/BBB_Backup_date.img bs=1m” | sudo dd of=/dev/mmcblk1 bs=1M
 +</code>
 +
 +Then power down, remove the SD card and reboot.
  • livebox/beagleboneporting.1392239774.txt.gz
  • Last modified: 2014/02/12 21:16
  • by mark_baldwin