--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Many thanks,
Trefor
So, what you need to do is to partition the sdcard to be something that u-boot can boot from and then either copy a regular kernel image from the net or from your beaglebone eMMC into the sdcard. It's not hard to do, and I did exactly that to get this all to work so I could use a 32G card, but it's a bit of a pain since I had to do all of this on a mac. Let me know if you need to know how to do this, but this message is already long enough :-)
I have a 32GB card and would like to use it for my root filesystem, would you happen to have a writeup of this process?
-- Shae
I just plugged in a USB Thumb drive and it appeared and ready to format. Looks easier than trying to deal with the microsdcard
Rich
--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
For more options, visit http://beagleboard.org/discuss
---
You received this message because you are subscribed to the Google Groups "BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email to beagleboard...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
> Would not a proper solution, however, be to patch the kernel such that card insert/eject events were recognized? what would need done to accomplish such detection?
It should be possible to use mknod to create the device files needed to mount the sdcard.
Would someone who has an accessible sdcard kindly do a "ls -l /dev/mmc*" and let us know what the major and minor device #'s are for the sdcard?
You received this message because you are subscribed to a topic in the Google Groups "BeagleBoard" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/beagleboard/MKApMsH3Q7M/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to beagleboard...@googlegroups.com.
This page by Armin76 explains it quite well, and even provides a shell script to set up an sd card to be used as external storage (basically, when the SD card is inserted, it shows up as mmc0, which is what uBoot tries to boot from, so you have to give it some instructions in a uEnv.txt to tell it to boot from the internal memory instead)
http://dev.gentoo.org/~armin76/arm/beagleboneblack/install_emmc.xml#expand
mmcdev=1 bootpart=1:2 mmcroot=/dev/mmcblk1p2 ro
mmcdev=1 bootpart=1:2 mmcroot=/dev/mmcblk1p2 ro
That needs to be in a uEnv.txt file on the SD card.
Grr, sorry for the multiposts kind of mufti tasking here. Sorry guys / Gals.mmcdev=1 bootpart=1:2 mmcroot=/dev/mmcblk1p2 roThat needs to be in a uEnv.txt file on the SD card.
To make sure I'm understanding correctly, you need to run the mkcard.sh script on this page right? In order to format the microSD to have the correct format?
There seems to be a gap of information here. It sounds like I can take any old microSD and just put that text file in it and plug it into the BBB and the BBB will boot. I've tried several variations and I keep getting stuck at 3 solid LED'sTommy
--
Anyone who hasn't found this solution yet check out the circuit co. solution here. Piece of advice. I suggest using terminal editors such as nano to add uEnv.txt to the volume. I was able to format the disk with an SD to USB adapter in Mac OSX and add uEnv.txt in terminal. I tried TextEdit first but it added some formatting that is not desirable and didn't let the BBB boot.
--
mmcroot=/dev/bbcblk1p2 ro should be mmcroot=/dev/mmcblk1p2 ro
Unfortunately, this success just exposed a bunch of other problems that I'm sure that I'm hitting just because of my inexperience. Right now, my system won't boot (the lights are on but PuTTY can't see the system) WITH my SD card in at power-on. Everything works fine if I boot from the
When I get to your linemount /dev/sda1 /mnt/cardI get the responsemount point /mnt/card does not exist
Bob
=-=-=-=-=-=-=-=-=-=-=-