* core-image-sato-directdisk @ 2012-01-20 0:51 James Abernathy 2012-01-20 14:16 ` core-image-sato-directdisk autif khan 0 siblings, 1 reply; 7+ messages in thread From: James Abernathy @ 2012-01-20 0:51 UTC (permalink / raw) To: yocto [-- Attachment #1: Type: text/plain, Size: 426 bytes --] The README.hardware file in the poky directory talks about creating images on 2 types of disk for the Atom based PCs like the n450. The one I've successfully tested is the core-image-sato on a USB key. I have no luck with the directdisk method because the image recipe doesn't exist for core-image-minimal-directdisk or core-image-sato-directdisk. Is there a way to put Yocto on the hard drive on a Atom PC? Jim A [-- Attachment #2: Type: text/html, Size: 503 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 0:51 core-image-sato-directdisk James Abernathy @ 2012-01-20 14:16 ` autif khan 2012-01-20 16:13 ` core-image-sato-directdisk Jim Abernathy 0 siblings, 1 reply; 7+ messages in thread From: autif khan @ 2012-01-20 14:16 UTC (permalink / raw) To: James Abernathy; +Cc: yocto I have been using core-image-sato and core-image-sato-sdk on the hard disk on Intel Atom (crownbay in my case). I perform the following broad steps: 1) have a suitable partition on the disk - say partition #3 2) this partition will show up as sde3 on my host machine and sda3 on the atom 3) mkfs.ext3 /dev/sde3 4) mount /dev/sde3 /mnt/target 5) mount -o loop tmp/deploy/images/core-image-sato-sdk.ext3 /mnt/target-text3 6) cp -a /mnt/target-ext3/* /mnt/target 7) grub-install --recheck --root-directory=/mnt/target /dev/sde If grub install passed, I copy the following to /mnt/target/boot/grub/grub.cfg set default="0" set timeout="30" menuentry 'Yocto SDK' { insmod part_msdos insmod ext2 set root='(hd0,msdos3)' linux /boot/bzImage root=/dev/sda3 } Thats it - this boots for me. Eventually, when I move to some other media, I will have to investigate other bootloaders - like syslinux. All the best, do tell if this works. On Thu, Jan 19, 2012 at 7:51 PM, James Abernathy <jfabernathy@gmail.com> wrote: > The README.hardware file in the poky directory talks about creating images > on 2 types of disk for the Atom based PCs like the n450. The one I've > successfully tested is the core-image-sato on a USB key. I have no luck > with the directdisk method because the image recipe doesn't exist for > core-image-minimal-directdisk or core-image-sato-directdisk. > > Is there a way to put Yocto on the hard drive on a Atom PC? > > Jim A > > > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 14:16 ` core-image-sato-directdisk autif khan @ 2012-01-20 16:13 ` Jim Abernathy 2012-01-20 16:54 ` core-image-sato-directdisk autif khan 0 siblings, 1 reply; 7+ messages in thread From: Jim Abernathy @ 2012-01-20 16:13 UTC (permalink / raw) To: autif khan; +Cc: yocto On 01/20/2012 09:16 AM, autif khan wrote: > I have been using core-image-sato and core-image-sato-sdk on the hard > disk on Intel Atom (crownbay in my case). > > I perform the following broad steps: > > 1) have a suitable partition on the disk - say partition #3 > 2) this partition will show up as sde3 on my host machine and sda3 on the atom > 3) mkfs.ext3 /dev/sde3 > 4) mount /dev/sde3 /mnt/target > 5) mount -o loop tmp/deploy/images/core-image-sato-sdk.ext3 /mnt/target-text3 > 6) cp -a /mnt/target-ext3/* /mnt/target > 7) grub-install --recheck --root-directory=/mnt/target /dev/sde > > If grub install passed, I copy the following to /mnt/target/boot/grub/grub.cfg > > set default="0" > set timeout="30" > > menuentry 'Yocto SDK' { > insmod part_msdos > insmod ext2 > set root='(hd0,msdos3)' > linux /boot/bzImage root=/dev/sda3 > } > > > Thats it - this boots for me. > > Eventually, when I move to some other media, I will have to > investigate other bootloaders - like syslinux. > > All the best, do tell if this works. This worked fine for me. one typo in step (5) ext3 and not text3, but these are good instructions. How do we get them put into the README.hardware instead of the directdisk section that doesn't work anymore. Did you file a bug on this? Thanks, Jim Abernathy > > On Thu, Jan 19, 2012 at 7:51 PM, James Abernathy<jfabernathy@gmail.com> wrote: >> The README.hardware file in the poky directory talks about creating images >> on 2 types of disk for the Atom based PCs like the n450. The one I've >> successfully tested is the core-image-sato on a USB key. I have no luck >> with the directdisk method because the image recipe doesn't exist for >> core-image-minimal-directdisk or core-image-sato-directdisk. >> >> Is there a way to put Yocto on the hard drive on a Atom PC? >> >> Jim A >> >> >> _______________________________________________ >> yocto mailing list >> yocto@yoctoproject.org >> https://lists.yoctoproject.org/listinfo/yocto >> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 16:13 ` core-image-sato-directdisk Jim Abernathy @ 2012-01-20 16:54 ` autif khan 2012-01-20 17:15 ` core-image-sato-directdisk Paul Eggleton 0 siblings, 1 reply; 7+ messages in thread From: autif khan @ 2012-01-20 16:54 UTC (permalink / raw) To: Jim Abernathy; +Cc: yocto On Fri, Jan 20, 2012 at 11:13 AM, Jim Abernathy <jfabernathy@gmail.com> wrote: > On 01/20/2012 09:16 AM, autif khan wrote: >> >> I have been using core-image-sato and core-image-sato-sdk on the hard >> disk on Intel Atom (crownbay in my case). >> >> I perform the following broad steps: >> >> 1) have a suitable partition on the disk - say partition #3 >> 2) this partition will show up as sde3 on my host machine and sda3 on the >> atom >> 3) mkfs.ext3 /dev/sde3 >> 4) mount /dev/sde3 /mnt/target >> 5) mount -o loop tmp/deploy/images/core-image-sato-sdk.ext3 >> /mnt/target-text3 >> 6) cp -a /mnt/target-ext3/* /mnt/target >> 7) grub-install --recheck --root-directory=/mnt/target /dev/sde >> >> If grub install passed, I copy the following to >> /mnt/target/boot/grub/grub.cfg >> >> set default="0" >> set timeout="30" >> >> menuentry 'Yocto SDK' { >> insmod part_msdos >> insmod ext2 >> set root='(hd0,msdos3)' >> linux /boot/bzImage root=/dev/sda3 >> } >> >> >> Thats it - this boots for me. >> >> Eventually, when I move to some other media, I will have to >> investigate other bootloaders - like syslinux. >> >> All the best, do tell if this works. > > This worked fine for me. one typo in step (5) ext3 and not text3, but these > are good instructions. How do we get them put into the README.hardware > instead of the directdisk section that doesn't work anymore. Yup, I wrote then off the cuff, I am glad that a typo is the only error and no major missing steps :-) I am also glad that these steps worked for you. > Did you file a bug on this? I have not. I am not sure I should. I am not even sure whoose call it should be weather or not this goes in README.hardware. I hope someone chimes in > Thanks, > > Jim Abernathy > > >> >> On Thu, Jan 19, 2012 at 7:51 PM, James Abernathy<jfabernathy@gmail.com> >> wrote: >>> >>> The README.hardware file in the poky directory talks about creating >>> images >>> on 2 types of disk for the Atom based PCs like the n450. The one I've >>> successfully tested is the core-image-sato on a USB key. I have no luck >>> with the directdisk method because the image recipe doesn't exist for >>> core-image-minimal-directdisk or core-image-sato-directdisk. >>> >>> Is there a way to put Yocto on the hard drive on a Atom PC? >>> >>> Jim A >>> >>> >>> _______________________________________________ >>> yocto mailing list >>> yocto@yoctoproject.org >>> https://lists.yoctoproject.org/listinfo/yocto >>> > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 16:54 ` core-image-sato-directdisk autif khan @ 2012-01-20 17:15 ` Paul Eggleton 2012-01-20 18:00 ` core-image-sato-directdisk autif khan 0 siblings, 1 reply; 7+ messages in thread From: Paul Eggleton @ 2012-01-20 17:15 UTC (permalink / raw) To: yocto On Friday 20 January 2012 11:54:44 autif khan wrote: > > Did you file a bug on this? > > I have not. I am not sure I should. I am not even sure whoose call it > should be weather or not this goes in README.hardware. I hope someone > chimes in So I would say if any of our documentation is out-of-date or unclear, it should be fixed, no deliberation needed :) However, in Poky master, README.hardware has now been updated to remove references to the old directdisk images. It could be that we need to explicitly add something like what you have written about writing the image to a hard disk, but for the moment it is at least no longer out-of-date. At the very least a great start would be to put your instructions up as a page on the Yocto Project wiki. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 17:15 ` core-image-sato-directdisk Paul Eggleton @ 2012-01-20 18:00 ` autif khan 2012-01-20 18:18 ` core-image-sato-directdisk Jim Abernathy 0 siblings, 1 reply; 7+ messages in thread From: autif khan @ 2012-01-20 18:00 UTC (permalink / raw) To: Paul Eggleton; +Cc: yocto On Fri, Jan 20, 2012 at 12:15 PM, Paul Eggleton <paul.eggleton@linux.intel.com> wrote: > On Friday 20 January 2012 11:54:44 autif khan wrote: >> > Did you file a bug on this? >> >> I have not. I am not sure I should. I am not even sure whoose call it >> should be weather or not this goes in README.hardware. I hope someone >> chimes in > > So I would say if any of our documentation is out-of-date or unclear, it > should be fixed, no deliberation needed :) > > However, in Poky master, README.hardware has now been updated to remove > references to the old directdisk images. It could be that we need to > explicitly add something like what you have written about writing the image to > a hard disk, but for the moment it is at least no longer out-of-date. > > At the very least a great start would be to put your instructions up as a page > on the Yocto Project wiki. I have created a new link titled "How Do I" on the main page and for now, this is the only entry. Please take a look. https://wiki.yoctoproject.org/wiki/Main_Page https://wiki.yoctoproject.org/wiki/How_do_I > Cheers, > Paul > > -- > > Paul Eggleton > Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: core-image-sato-directdisk 2012-01-20 18:00 ` core-image-sato-directdisk autif khan @ 2012-01-20 18:18 ` Jim Abernathy 0 siblings, 0 replies; 7+ messages in thread From: Jim Abernathy @ 2012-01-20 18:18 UTC (permalink / raw) To: autif khan; +Cc: Paul Eggleton, yocto@yoctoproject.org Jim Abernathy On Jan 20, 2012, at 1:00 PM, autif khan <autif.mlist@gmail.com> wrote: > On Fri, Jan 20, 2012 at 12:15 PM, Paul Eggleton > <paul.eggleton@linux.intel.com> wrote: >> On Friday 20 January 2012 11:54:44 autif khan wrote: >>>> Did you file a bug on this? >>> >>> I have not. I am not sure I should. I am not even sure whoose call it >>> should be weather or not this goes in README.hardware. I hope someone >>> chimes in >> >> So I would say if any of our documentation is out-of-date or unclear, it >> should be fixed, no deliberation needed :) >> >> However, in Poky master, README.hardware has now been updated to remove >> references to the old directdisk images. It could be that we need to >> explicitly add something like what you have written about writing the image to >> a hard disk, but for the moment it is at least no longer out-of-date. >> >> At the very least a great start would be to put your instructions up as a page >> on the Yocto Project wiki. > > I have created a new link titled "How Do I" on the main page and for > now, this is the only entry. > > Please take a look. > > https://wiki.yoctoproject.org/wiki/Main_Page > https://wiki.yoctoproject.org/wiki/How_do_I > Looks good to me. > >> Cheers, >> Paul >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-01-20 18:19 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-01-20 0:51 core-image-sato-directdisk James Abernathy 2012-01-20 14:16 ` core-image-sato-directdisk autif khan 2012-01-20 16:13 ` core-image-sato-directdisk Jim Abernathy 2012-01-20 16:54 ` core-image-sato-directdisk autif khan 2012-01-20 17:15 ` core-image-sato-directdisk Paul Eggleton 2012-01-20 18:00 ` core-image-sato-directdisk autif khan 2012-01-20 18:18 ` core-image-sato-directdisk Jim Abernathy
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.