* git and ssh and kernel development
@ 2010-02-13 9:07 Raffaele Recalcati
2010-02-13 9:24 ` Paul Menzel
0 siblings, 1 reply; 5+ messages in thread
From: Raffaele Recalcati @ 2010-02-13 9:07 UTC (permalink / raw)
To: openembedded-devel
Hi all,
I have a git mirror of the kernel.
How to fetch from it in ssh .
ssh://user@ipaddress/pathtogit;protocol=git;branch=master
but ssh has password ..
Second question: if pathtogit is a dir on my pc where I'm developing
what is the syntax?
Thx
--
www.opensurf.it
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git and ssh and kernel development
2010-02-13 9:07 git and ssh and kernel development Raffaele Recalcati
@ 2010-02-13 9:24 ` Paul Menzel
2010-02-13 10:11 ` Raffaele Recalcati
0 siblings, 1 reply; 5+ messages in thread
From: Paul Menzel @ 2010-02-13 9:24 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 717 bytes --]
Dear Raffaele,
Am Samstag, den 13.02.2010, 10:07 +0100 schrieb Raffaele Recalcati:
> I have a git mirror of the kernel.
> How to fetch from it in ssh .
> ssh://user@ipaddress/pathtogit;protocol=git;branch=master
> but ssh has password ..
>
> Second question: if pathtogit is a dir on my pc where I'm developing
> what is the syntax?
I think this is the wrong list you are asking this question. Please ask
on the Git list, but before you should read the documentation which is
quite elaborate for Git as far as I know and should cover your
questions.
If you do ask the question on the Git list or solve the problem please
answer to this thread with the appropriate links.
Thanks,
Paul
[-- Attachment #2: Dies ist ein digital signierter Nachrichtenteil --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git and ssh and kernel development
2010-02-13 9:24 ` Paul Menzel
@ 2010-02-13 10:11 ` Raffaele Recalcati
2010-02-13 12:23 ` Martin Jansa
0 siblings, 1 reply; 5+ messages in thread
From: Raffaele Recalcati @ 2010-02-13 10:11 UTC (permalink / raw)
To: openembedded-devel
Dear Paul,
2010/2/13 Paul Menzel <paulepanter@users.sourceforge.net>:
> Dear Raffaele,
>
>
> Am Samstag, den 13.02.2010, 10:07 +0100 schrieb Raffaele Recalcati:
>> I have a git mirror of the kernel.
>> How to fetch from it in ssh .
>> ssh://user@ipaddress/pathtogit;protocol=git;branch=master
>> but ssh has password ..
>>
>> Second question: if pathtogit is a dir on my pc where I'm developing
>> what is the syntax?
>
> I think this is the wrong list you are asking this question. Please ask
> on the Git list, but before you should read the documentation which is
> quite elaborate for Git as far as I know and should cover your
> questions.
>
> If you do ask the question on the Git list or solve the problem please
> answer to this thread with the appropriate links.
I'm sorry.
It was a stupid question.
I'll be very careful in the future!
:)
Thanks,
Paul
>
>
> Thanks,
>
> Paul
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git and ssh and kernel development
2010-02-13 10:11 ` Raffaele Recalcati
@ 2010-02-13 12:23 ` Martin Jansa
2010-02-13 15:09 ` Raffaele Recalcati
0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2010-02-13 12:23 UTC (permalink / raw)
To: openembedded-devel
On Sat, Feb 13, 2010 at 11:11:23AM +0100, Raffaele Recalcati wrote:
> Dear Paul,
>
> 2010/2/13 Paul Menzel <paulepanter@users.sourceforge.net>:
> > Dear Raffaele,
> >
> >
> > Am Samstag, den 13.02.2010, 10:07 +0100 schrieb Raffaele Recalcati:
> >> I have a git mirror of the kernel.
> >> How to fetch from it in ssh .
> >> ssh://user@ipaddress/pathtogit;protocol=git;branch=master
> >> but ssh has password ..
> >>
> >> Second question: if pathtogit is a dir on my pc where I'm developing
> >> what is the syntax?
> >
> > I think this is the wrong list you are asking this question. Please ask
> > on the Git list, but before you should read the documentation which is
> > quite elaborate for Git as far as I know and should cover your
> > questions.
> >
> > If you do ask the question on the Git list or solve the problem please
> > answer to this thread with the appropriate links.
>
> I'm sorry.
> It was a stupid question.
> I'll be very careful in the future!
> :)
If you're asking what to put in SRC_URI in recipe it doesn't look stupid
to me :).
I don't know how to use git+ssh in bitbake (especially with password), I
would expect something like
SRC_URI="git://user@ipaddress/pathtogit;protocol=ssh;branch=master"
but you've to check if that's supported at least with key
authentization"
2nd question is easier
SRC_URI = "file:///home/projects/pathtogit/secretProject"
and you would probably need to adjust S variable too
S = "${WORKDIR}/secretProject"
And you don't want to commit either version to public OE repo, right?
Regards,
--
uin:136542059 jid:Martin.Jansa@gmail.com
Jansa Martin sip:jamasip@voip.wengo.fr
JaMa
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: git and ssh and kernel development
2010-02-13 12:23 ` Martin Jansa
@ 2010-02-13 15:09 ` Raffaele Recalcati
0 siblings, 0 replies; 5+ messages in thread
From: Raffaele Recalcati @ 2010-02-13 15:09 UTC (permalink / raw)
To: openembedded-devel
Dear Martin,
thx for comprehension.
Sometimes, for lack of experience, I ask something ...
My Linux embedded experience is quite well, I suppose, but, in OE and
so on, is very small.
I'm improving it.
>
> If you're asking what to put in SRC_URI in recipe it doesn't look stupid
> to me :).
yes, this is the point.
> I don't know how to use git+ssh in bitbake (especially with password), I
> would expect something like
> SRC_URI="git://user@ipaddress/pathtogit;protocol=ssh;branch=master"
> but you've to check if that's supported at least with key
> authentization"
I'll it with keygen. I had a problem to do it, but I'll fix it.
>
> 2nd question is easier
> SRC_URI = "file:///home/projects/pathtogit/secretProject"
> and you would probably need to adjust S variable too
> S = "${WORKDIR}/secretProject"
SRC_URI = "file:///app/opt/sources/linux-2.6-bt270"
NOTE: Unpacking ..
It's running.
>
>
> And you don't want to commit either version to public OE repo, right?
This project can be maybe free, but first is better if I ask to my company.
>
> Regards,
>
> --
> uin:136542059 jid:Martin.Jansa@gmail.com
> Jansa Martin sip:jamasip@voip.wengo.fr
> JaMa
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
Thx.
--
www.opensurf.it
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-02-13 15:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-13 9:07 git and ssh and kernel development Raffaele Recalcati
2010-02-13 9:24 ` Paul Menzel
2010-02-13 10:11 ` Raffaele Recalcati
2010-02-13 12:23 ` Martin Jansa
2010-02-13 15:09 ` Raffaele Recalcati
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.