* Repository to upgrade images
@ 2013-04-16 19:02 Edward Vidal
2013-04-16 19:10 ` Burton, Ross
2013-04-16 19:15 ` Trevor Woerner
0 siblings, 2 replies; 12+ messages in thread
From: Edward Vidal @ 2013-04-16 19:02 UTC (permalink / raw)
To: yocto
[-- Attachment #1: Type: text/plain, Size: 889 bytes --]
Hello,
Are there any plans to provide a repo of pkgs where systems can be upgraded
and new pkgs installed like other distro Fedora, CentOS, and rhel? This
would also require yum or the new software that is replacing yum.
Also for my Fedora, CentOS, and rhel systems I use cobbler for network
installs and liveDVD. For cobbler you need a repository and and the target
needs to be able to support PXE. Does any of embedded boards support PXE?
I need gfortran and numy support. I have tried modifying the files
gcc-configure-common.inc with (LANGUAGES ?= "c,c++${FORTRAN}${JAVA}" to
LANGUAGES ?= "c,c++,fortran${JAVA}" and gcc-configure-runtime.inc with (
RUNTIMETARGET = "libssp libstdc++-v3 libgomp" to RUNTIMETARGET = "libssp
libstdc++-v3 libgomp libgfortran"). these changes both cause
core-image-sato-sdk-ex to file.
Thanks any and all help will be appreciated.
[-- Attachment #2: Type: text/html, Size: 1023 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: Repository to upgrade images
2013-04-16 19:02 Repository to upgrade images Edward Vidal
@ 2013-04-16 19:10 ` Burton, Ross
2013-04-16 19:15 ` Trevor Woerner
1 sibling, 0 replies; 12+ messages in thread
From: Burton, Ross @ 2013-04-16 19:10 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto
On 16 April 2013 20:02, Edward Vidal <vidal.develone@gmail.com> wrote:
> Are there any plans to provide a repo of pkgs where systems can be upgraded
> and new pkgs installed like other distro Fedora, CentOS, and rhel? This
> would also require yum or the new software that is replacing yum.
Do you mean for upgrading images built using Yocto? This is already
possible, the contents of tmp/deploy/[package format] is a package
repository. If you use rpm you'll have zypper (danny and below) or
smart (dylan onwards).
Ross
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:02 Repository to upgrade images Edward Vidal
2013-04-16 19:10 ` Burton, Ross
@ 2013-04-16 19:15 ` Trevor Woerner
2013-04-16 19:49 ` Edward Vidal
2013-04-17 8:02 ` Burton, Ross
1 sibling, 2 replies; 12+ messages in thread
From: Trevor Woerner @ 2013-04-16 19:15 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
On Tue, Apr 16, 2013 at 3:02 PM, Edward Vidal <vidal.develone@gmail.com> wrote:
> Are there any plans to provide a repo of pkgs where systems can be upgraded
> and new pkgs installed like other distro Fedora, CentOS, and rhel? This
> would also require yum or the new software that is replacing yum.
I doubt it. The Yocto Project is not an embedded Linux distribution –
it creates a custom one for you. Providing a public package upgrade
repository is fine for a given distribution (e.g. Fedora, Debian, etc)
because it can make assumptions regarding the compiler, c library,
build/configuration options, etc. If you are creating your own
distributions, any of those variable can be tweaked, therefore making
any such public repository useless.
If you would like to have such an ability for your devices, you'll
need have to create your own public site and build the packages
yourself (all of which will incorporate any of your specific
"tweaks"). Yocto will help you do that (and make it easy) but doing
this in a generic way for everyone's Yocto distribution would be
impossible (I would think).
> Does any of embedded boards support PXE?
Whether or not a board can boot via TFTP is a function of the
bootloader. u-boot supports TFTP booting so theoretically this should
be possible. Whether or not TFTP is enabled in your u-boot build
and/or whether or not your BSP includes and builds your own u-boot is
another question.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:15 ` Trevor Woerner
@ 2013-04-16 19:49 ` Edward Vidal
2013-04-16 19:53 ` Trevor Woerner
2013-04-16 19:54 ` Martin Jansa
2013-04-17 8:02 ` Burton, Ross
1 sibling, 2 replies; 12+ messages in thread
From: Edward Vidal @ 2013-04-16 19:49 UTC (permalink / raw)
To: Trevor Woerner, Burton, Ross; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 1996 bytes --]
With that said how does Angstrom which uses opkg upgrades images that are
build with Angstrom. I prefer Yocto but I had some pre-built image that
came with my beagleboard and I used opkg upgrade and opkg install
gfortran. Also has anyone built gfortran, libgfortran, and numpy?
Currently these are some dependencies that I need for GNURADIO?
Thanks Any and all help is appreciated
Ed
On Tue, Apr 16, 2013 at 1:15 PM, Trevor Woerner <twoerner@gmail.com> wrote:
> On Tue, Apr 16, 2013 at 3:02 PM, Edward Vidal <vidal.develone@gmail.com>
> wrote:
> > Are there any plans to provide a repo of pkgs where systems can be
> upgraded
> > and new pkgs installed like other distro Fedora, CentOS, and rhel? This
> > would also require yum or the new software that is replacing yum.
>
> I doubt it. The Yocto Project is not an embedded Linux distribution –
> it creates a custom one for you. Providing a public package upgrade
> repository is fine for a given distribution (e.g. Fedora, Debian, etc)
> because it can make assumptions regarding the compiler, c library,
> build/configuration options, etc. If you are creating your own
> distributions, any of those variable can be tweaked, therefore making
> any such public repository useless.
>
> If you would like to have such an ability for your devices, you'll
> need have to create your own public site and build the packages
> yourself (all of which will incorporate any of your specific
> "tweaks"). Yocto will help you do that (and make it easy) but doing
> this in a generic way for everyone's Yocto distribution would be
> impossible (I would think).
>
> > Does any of embedded boards support PXE?
>
> Whether or not a board can boot via TFTP is a function of the
> bootloader. u-boot supports TFTP booting so theoretically this should
> be possible. Whether or not TFTP is enabled in your u-boot build
> and/or whether or not your BSP includes and builds your own u-boot is
> another question.
>
[-- Attachment #2: Type: text/html, Size: 2508 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:49 ` Edward Vidal
@ 2013-04-16 19:53 ` Trevor Woerner
2013-04-16 19:54 ` Martin Jansa
1 sibling, 0 replies; 12+ messages in thread
From: Trevor Woerner @ 2013-04-16 19:53 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
On Tue, Apr 16, 2013 at 3:49 PM, Edward Vidal <vidal.develone@gmail.com> wrote:
> With that said how does Angstrom which uses opkg upgrades images that are
> build with Angstrom.
Angstrom is a distribution, so it can make assumptions about how to
build a set of packages that will work on your system.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:49 ` Edward Vidal
2013-04-16 19:53 ` Trevor Woerner
@ 2013-04-16 19:54 ` Martin Jansa
2013-04-16 20:40 ` Edward Vidal
1 sibling, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2013-04-16 19:54 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 669 bytes --]
On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
> With that said how does Angstrom which uses opkg upgrades images that are
> build with Angstrom. I prefer Yocto but I had some pre-built image that
The same mechanism as Ross and Trevor said.
> came with my beagleboard and I used opkg upgrade and opkg install
> gfortran. Also has anyone built gfortran, libgfortran, and numpy?
> Currently these are some dependencies that I need for GNURADIO?
> Thanks Any and all help is appreciated
> Ed
gnuradio is already in meta-oe and jenkins is building it every day with
it :).
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:54 ` Martin Jansa
@ 2013-04-16 20:40 ` Edward Vidal
2013-04-16 21:06 ` Martin Jansa
2013-04-17 1:40 ` Philip Balister
0 siblings, 2 replies; 12+ messages in thread
From: Edward Vidal @ 2013-04-16 20:40 UTC (permalink / raw)
To: Martin Jansa; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 1090 bytes --]
Can you point me to where I can find
gnuradio is already in meta-oe and jenkins is building it every day with
it :).
I did a search meta-oe jenkins nothing seems to come up I have seen
meta-gnurado as part 0f Angstrom. I believe that is for the processor
in the ettus research board.
Thanks
On Tue, Apr 16, 2013 at 1:54 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
> On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
> > With that said how does Angstrom which uses opkg upgrades images that are
> > build with Angstrom. I prefer Yocto but I had some pre-built image that
>
> The same mechanism as Ross and Trevor said.
>
> > came with my beagleboard and I used opkg upgrade and opkg install
> > gfortran. Also has anyone built gfortran, libgfortran, and numpy?
> > Currently these are some dependencies that I need for GNURADIO?
> > Thanks Any and all help is appreciated
> > Ed
>
> gnuradio is already in meta-oe and jenkins is building it every day with
> it :).
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
[-- Attachment #2: Type: text/html, Size: 1630 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 20:40 ` Edward Vidal
@ 2013-04-16 21:06 ` Martin Jansa
2013-04-16 22:51 ` Edward Vidal
2013-04-17 1:40 ` Philip Balister
1 sibling, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2013-04-16 21:06 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 1414 bytes --]
On Tue, Apr 16, 2013 at 02:40:21PM -0600, Edward Vidal wrote:
> Can you point me to where I can find
>
> gnuradio is already in meta-oe and jenkins is building it every day with
> it :).
> I did a search meta-oe jenkins nothing seems to come up I have seen
> meta-gnurado as part 0f Angstrom. I believe that is for the processor
> in the ettus research board.
I meant this:
http://git.openembedded.org/meta-openembedded/tree/meta-oe/recipes-connectivity/gnuradio/gnuradio_git.bb
not sure what you're looking for.
> On Tue, Apr 16, 2013 at 1:54 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
>
> > On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
> > > With that said how does Angstrom which uses opkg upgrades images that are
> > > build with Angstrom. I prefer Yocto but I had some pre-built image that
> >
> > The same mechanism as Ross and Trevor said.
> >
> > > came with my beagleboard and I used opkg upgrade and opkg install
> > > gfortran. Also has anyone built gfortran, libgfortran, and numpy?
> > > Currently these are some dependencies that I need for GNURADIO?
> > > Thanks Any and all help is appreciated
> > > Ed
> >
> > gnuradio is already in meta-oe and jenkins is building it every day with
> > it :).
> >
> > --
> > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
> >
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 21:06 ` Martin Jansa
@ 2013-04-16 22:51 ` Edward Vidal
2013-04-17 2:20 ` Khem Raj
0 siblings, 1 reply; 12+ messages in thread
From: Edward Vidal @ 2013-04-16 22:51 UTC (permalink / raw)
To: Martin Jansa; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 1774 bytes --]
Martin,
I should be able to add meta-openembedded like I added meta-ti by adding to
bblayers.conf is that correct?
I fetch with git clone git://openembedded.org/meta-openembedded
Thanks
On Tue, Apr 16, 2013 at 3:06 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
> On Tue, Apr 16, 2013 at 02:40:21PM -0600, Edward Vidal wrote:
> > Can you point me to where I can find
> >
> > gnuradio is already in meta-oe and jenkins is building it every day with
> > it :).
> > I did a search meta-oe jenkins nothing seems to come up I have seen
> > meta-gnurado as part 0f Angstrom. I believe that is for the processor
> > in the ettus research board.
>
> I meant this:
>
> http://git.openembedded.org/meta-openembedded/tree/meta-oe/recipes-connectivity/gnuradio/gnuradio_git.bb
> not sure what you're looking for.
>
> > On Tue, Apr 16, 2013 at 1:54 PM, Martin Jansa <martin.jansa@gmail.com
> >wrote:
> >
> > > On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
> > > > With that said how does Angstrom which uses opkg upgrades images
> that are
> > > > build with Angstrom. I prefer Yocto but I had some pre-built image
> that
> > >
> > > The same mechanism as Ross and Trevor said.
> > >
> > > > came with my beagleboard and I used opkg upgrade and opkg install
> > > > gfortran. Also has anyone built gfortran, libgfortran, and numpy?
> > > > Currently these are some dependencies that I need for GNURADIO?
> > > > Thanks Any and all help is appreciated
> > > > Ed
> > >
> > > gnuradio is already in meta-oe and jenkins is building it every day
> with
> > > it :).
> > >
> > > --
> > > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
> > >
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
[-- Attachment #2: Type: text/html, Size: 2764 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 22:51 ` Edward Vidal
@ 2013-04-17 2:20 ` Khem Raj
0 siblings, 0 replies; 12+ messages in thread
From: Khem Raj @ 2013-04-17 2:20 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 2095 bytes --]
On Apr 16, 2013, at 3:51 PM, Edward Vidal <vidal.develone@gmail.com> wrote:
>
> Martin,
> I should be able to add meta-openembedded like I added meta-ti by adding to bblayers.conf is that correct?
> I fetch with git clone git://openembedded.org/meta-openembedded
use the github mirrors always
e.g.
https://github.com/openembedded/meta-oe
> Thanks
>
>
> On Tue, Apr 16, 2013 at 3:06 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Apr 16, 2013 at 02:40:21PM -0600, Edward Vidal wrote:
> > Can you point me to where I can find
> >
> > gnuradio is already in meta-oe and jenkins is building it every day with
> > it :).
> > I did a search meta-oe jenkins nothing seems to come up I have seen
> > meta-gnurado as part 0f Angstrom. I believe that is for the processor
> > in the ettus research board.
>
> I meant this:
> http://git.openembedded.org/meta-openembedded/tree/meta-oe/recipes-connectivity/gnuradio/gnuradio_git.bb
> not sure what you're looking for.
>
> > On Tue, Apr 16, 2013 at 1:54 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
> >
> > > On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
> > > > With that said how does Angstrom which uses opkg upgrades images that are
> > > > build with Angstrom. I prefer Yocto but I had some pre-built image that
> > >
> > > The same mechanism as Ross and Trevor said.
> > >
> > > > came with my beagleboard and I used opkg upgrade and opkg install
> > > > gfortran. Also has anyone built gfortran, libgfortran, and numpy?
> > > > Currently these are some dependencies that I need for GNURADIO?
> > > > Thanks Any and all help is appreciated
> > > > Ed
> > >
> > > gnuradio is already in meta-oe and jenkins is building it every day with
> > > it :).
> > >
> > > --
> > > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
> > >
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
[-- Attachment #2: Type: text/html, Size: 3694 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 20:40 ` Edward Vidal
2013-04-16 21:06 ` Martin Jansa
@ 2013-04-17 1:40 ` Philip Balister
1 sibling, 0 replies; 12+ messages in thread
From: Philip Balister @ 2013-04-17 1:40 UTC (permalink / raw)
To: Edward Vidal; +Cc: yocto@yoctoproject.org
On 04/16/2013 04:40 PM, Edward Vidal wrote:
> Can you point me to where I can find
Maybe you should give us some more details. It doesn't look like the
angstrom feeds ahve a package for gnuradio, but we can ask Koen if he
can add it.
If you are building custom images, just add gnuradio to the
IMAGE_EXTRA_INSTALL var (or whatever it is called). Check how gnuradio
is packaged, you may need some other packages for all desired features.
Philip
>
> gnuradio is already in meta-oe and jenkins is building it every day with
> it :).
> I did a search meta-oe jenkins nothing seems to come up I have seen
> meta-gnurado as part 0f Angstrom. I believe that is for the processor
> in the ettus research board.
>
> Thanks
>
>
>
> On Tue, Apr 16, 2013 at 1:54 PM, Martin Jansa <martin.jansa@gmail.com>wrote:
>
>> On Tue, Apr 16, 2013 at 01:49:13PM -0600, Edward Vidal wrote:
>>> With that said how does Angstrom which uses opkg upgrades images that are
>>> build with Angstrom. I prefer Yocto but I had some pre-built image that
>>
>> The same mechanism as Ross and Trevor said.
>>
>>> came with my beagleboard and I used opkg upgrade and opkg install
>>> gfortran. Also has anyone built gfortran, libgfortran, and numpy?
>>> Currently these are some dependencies that I need for GNURADIO?
>>> Thanks Any and all help is appreciated
>>> Ed
>>
>> gnuradio is already in meta-oe and jenkins is building it every day with
>> it :).
>>
>> --
>> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>>
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Repository to upgrade images
2013-04-16 19:15 ` Trevor Woerner
2013-04-16 19:49 ` Edward Vidal
@ 2013-04-17 8:02 ` Burton, Ross
1 sibling, 0 replies; 12+ messages in thread
From: Burton, Ross @ 2013-04-17 8:02 UTC (permalink / raw)
To: Trevor Woerner; +Cc: yocto@yoctoproject.org, Edward Vidal
On 16 April 2013 20:15, Trevor Woerner <twoerner@gmail.com> wrote:
> On Tue, Apr 16, 2013 at 3:02 PM, Edward Vidal <vidal.develone@gmail.com> wrote:
>> Are there any plans to provide a repo of pkgs where systems can be upgraded
>> and new pkgs installed like other distro Fedora, CentOS, and rhel? This
>> would also require yum or the new software that is replacing yum.
>
> I doubt it. The Yocto Project is not an embedded Linux distribution –
> it creates a custom one for you. Providing a public package upgrade
> repository is fine for a given distribution (e.g. Fedora, Debian, etc)
> because it can make assumptions regarding the compiler, c library,
> build/configuration options, etc. If you are creating your own
> distributions, any of those variable can be tweaked, therefore making
> any such public repository useless.
>
> If you would like to have such an ability for your devices, you'll
> need have to create your own public site and build the packages
> yourself (all of which will incorporate any of your specific
> "tweaks"). Yocto will help you do that (and make it easy) but doing
> this in a generic way for everyone's Yocto distribution would be
> impossible (I would think).
Yes, a generic approach would be impossible because of the nature of
Yocto. As an example though, the Angstrom distribution that is build
using the Yocto Project *does* expose and support package feeds for
on-device upgrades.
Ross
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-04-17 8:02 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-16 19:02 Repository to upgrade images Edward Vidal
2013-04-16 19:10 ` Burton, Ross
2013-04-16 19:15 ` Trevor Woerner
2013-04-16 19:49 ` Edward Vidal
2013-04-16 19:53 ` Trevor Woerner
2013-04-16 19:54 ` Martin Jansa
2013-04-16 20:40 ` Edward Vidal
2013-04-16 21:06 ` Martin Jansa
2013-04-16 22:51 ` Edward Vidal
2013-04-17 2:20 ` Khem Raj
2013-04-17 1:40 ` Philip Balister
2013-04-17 8:02 ` Burton, Ross
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.