public inbox for ecos-maintainers@sourceware.org
 help / color / mirror / Atom feed
* hardware.html help!
@ 2006-02-19 21:48 Andrew Lunn
  2006-02-19 22:16 ` Andrew Lunn
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2006-02-19 21:48 UTC (permalink / raw)
  To: eCos Maintainers

Hi folks

Probably one for Jifl

I've broken the "Supported Hardware" page, 
http://ecos.sourceware.org/hardware.html.

There is an obvious cut/paste error in board-tablerow.html

 <td><!--#if expr="$platurl" --><a href="<!--#echo var="platurl" -->" target="_top"><!--#endif -->
  <!--#echo var="plat" --><!--#if expr="$procurl" --></a><!--#endif --></td>

the procurl should be platurl. This is causing extra </a> tokens. I
"fixed" this error and committed the change and it all went pear
shaped. So i reversed the patch but it stayed pear shaped!

Any ideas what i have broken?

Why was i looking at this? For some reason the AT91JTST is being
listed three times when two of these should be the phycore and the
sam7s. I was trying to work out what caused this when i spotted the
problem above. If anybody can say what is causing this tripple entry
it would be great to know.

        Thanks
                Andrew


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: hardware.html help!
  2006-02-19 21:48 hardware.html help! Andrew Lunn
@ 2006-02-19 22:16 ` Andrew Lunn
  2006-02-20  1:23   ` Jonathan Larmour
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2006-02-19 22:16 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: eCos Maintainers

On Sun, Feb 19, 2006 at 10:48:41PM +0100, Andrew Lunn wrote:
> Hi folks
> 
> Probably one for Jifl
> 
> I've broken the "Supported Hardware" page, 
> http://ecos.sourceware.org/hardware.html.
> 
> There is an obvious cut/paste error in board-tablerow.html
> 
>  <td><!--#if expr="$platurl" --><a href="<!--#echo var="platurl" -->" target="_top"><!--#endif -->
>   <!--#echo var="plat" --><!--#if expr="$procurl" --></a><!--#endif --></td>
> 
> the procurl should be platurl. This is causing extra </a> tokens. I
> "fixed" this error and committed the change and it all went pear
> shaped. So i reversed the patch but it stayed pear shaped!
> 
> Any ideas what i have broken?

I think this is to do with the execute bit having to be set for server
side includes to work. Could somebody with logon to the server take a
look at the permissions on the files.
     
     Thanks
        Andrew

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: hardware.html help!
  2006-02-19 22:16 ` Andrew Lunn
@ 2006-02-20  1:23   ` Jonathan Larmour
  2006-02-20  8:40     ` Andrew Lunn
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Larmour @ 2006-02-20  1:23 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: Andrew Lunn, eCos Maintainers

Andrew Lunn wrote:
> On Sun, Feb 19, 2006 at 10:48:41PM +0100, Andrew Lunn wrote:
> 
>>Hi folks
>>
>>Probably one for Jifl
>>
>>I've broken the "Supported Hardware" page, 
>>http://ecos.sourceware.org/hardware.html.
>>
>>There is an obvious cut/paste error in board-tablerow.html
>>
>> <td><!--#if expr="$platurl" --><a href="<!--#echo var="platurl" -->" target="_top"><!--#endif -->
>>  <!--#echo var="plat" --><!--#if expr="$procurl" --></a><!--#endif --></td>
>>
>>the procurl should be platurl. This is causing extra </a> tokens. I
>>"fixed" this error and committed the change and it all went pear
>>shaped. So i reversed the patch but it stayed pear shaped!
>>
>>Any ideas what i have broken?
> 
> 
> I think this is to do with the execute bit having to be set for server
> side includes to work. Could somebody with logon to the server take a
> look at the permissions on the files.

Indeed that's what it was on a number of files, although there was a 
little quoting mistake in boards/inc/at91phycore.html that I fixed too.

Unfortunately I believe you have to set the permissions correctly the 
first time a file is "cvs add"ed, otherwise it can only be fixed with 
local shell access to the CVS repository.

Anyway all sorted, hopefully quickly enough!

Jifl
-- 
eCosCentric    http://www.eCosCentric.com/    The eCos and RedBoot experts
------["The best things in life aren't things."]------      Opinions==mine

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: hardware.html help!
  2006-02-20  1:23   ` Jonathan Larmour
@ 2006-02-20  8:40     ` Andrew Lunn
  2006-02-20 13:02       ` Jonathan Larmour
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2006-02-20  8:40 UTC (permalink / raw)
  To: Jonathan Larmour; +Cc: Andrew Lunn, eCos Maintainers

> Unfortunately I believe you have to set the permissions correctly the 
> first time a file is "cvs add"ed, otherwise it can only be fixed with 
> local shell access to the CVS repository.

I don't think this can be correct. I just did a cvs commit to
board-tablerow.html and that broke it.

I have another change i would like to commit:

Index: boardtext.html
===================================================================
RCS file: /cvs/ecos/htdocs/boards/boardtext.html,v
retrieving revision 1.10
diff -u -r1.10 boardtext.html
--- boardtext.html      16 Jun 2004 00:26:29 -0000      1.10
+++ boardtext.html      20 Feb 2006 08:39:00 -0000
@@ -76,6 +76,9 @@
 <!--#if expr="$watchdogsupport = 1" -->
 <li>Watchdog
 <!--#endif -->
+<!--#if expr="$spisupport = 1" -->
+<li>SPI
+<!--#endif -->
 </ul>
 </p>
 <!--#else -->

Are you at your keyboard at the moment to fix it if this commit breaks
things?

        Andrew

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: hardware.html help!
  2006-02-20  8:40     ` Andrew Lunn
@ 2006-02-20 13:02       ` Jonathan Larmour
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Larmour @ 2006-02-20 13:02 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: eCos Maintainers

Andrew Lunn wrote:
> 
> Are you at your keyboard at the moment to fix it if this commit breaks
> things?

Er, I am now!

Jifl
-- 
eCosCentric    http://www.eCosCentric.com/    The eCos and RedBoot experts
------["The best things in life aren't things."]------      Opinions==mine

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-02-20 13:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-19 21:48 hardware.html help! Andrew Lunn
2006-02-19 22:16 ` Andrew Lunn
2006-02-20  1:23   ` Jonathan Larmour
2006-02-20  8:40     ` Andrew Lunn
2006-02-20 13:02       ` Jonathan Larmour

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).