Skip to content

Instantly share code, notes, and snippets.

@celly
Last active November 30, 2015 19:28
Show Gist options
  • Save celly/96da66d8c885cfcfb56e to your computer and use it in GitHub Desktop.
Save celly/96da66d8c885cfcfb56e to your computer and use it in GitHub Desktop.
My Edison Cheat sheet.

I accidently ran an 'opkg upgrade' and it destroyed my intel edison. If you still have wifi, or a console, these are the steps needed to restore it:

mkdir /update
mkfs.vfat -F32 -I /dev/mmcblk0p9
mount -t vfat /dev/mmcblk0p9 /update/
cd /update
wget http://downloadmirror.intel.com/25384/eng/edison-iotdk-image-280915.zip
unzip edison-iotdk-image-280915.zip -d .
rm edison-iotdk-image-280915.zip
reboot ota

opkg repos with good up to date packages: AlexT's: http://alextgalileo.altervista.org/edison-package-repo-configuration-instructions.html

 ===/etc/opkg/base-feeds.conf contents below===
src/gz all http://repo.opkg.net/edison/repo/all
src/gz edison http://repo.opkg.net/edison/repo/edison
src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32

===end of /etc/opkg/base-feeds.conf contents===

Steps from: https://gist.github.com/skvark/794217634c5024da9052

File system stuck in Readonly on yocto after initial startup generating errors like:

EXT4-fs (mmcblk0p8): Couldn't remount RDWR because of unprocessed orphan inode list. Please umount/remount instead

umount /dev/mmcblk0p8
e2fsck /dev/mmcblk0p8
reboot

via: https://communities.intel.com/message/269101

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment