public inbox for ecos-patches@sourceware.org
 help / color / mirror / Atom feed
* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
@ 2010-11-11 14:53 ` bugzilla-daemon
  2010-11-11 16:07 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-11 14:53 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

John Dallaway <john@dallaway.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ecos-patches@ecos.sourcewar
                   |                            |e.org, john@dallaway.org.uk
          Component|ROM filesystem              |Patches and contributions

--- Comment #2 from John Dallaway <john@dallaway.org.uk> 2010-11-11 14:52:55 GMT ---
Alexander, thank you for making a contribution.

Being able to reference a ROM filesystem via a FIS entry seems like a good idea
since this is a typical usage scenario and the feature would improve usability.
However, one could also argue that this is application-level glue and does not
belong in the ROM filesystem package.

Any comments from other maintainers?

If there is some consensus that the feature is desirable, the lookup should be
made conditional on a new CYGFUN_FS_ROM_FLASH_BLOCK_DEVICE_LOOKUP option which
"requires CYGPKG_IO_FLASH_BLOCK_DEVICE" to avoid forcing a dependency on
CYGPKG_IO_FLASH.

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
  2010-11-11 14:53 ` [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount bugzilla-daemon
@ 2010-11-11 16:07 ` bugzilla-daemon
  2010-11-13  9:29 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-11 16:07 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

Jonathan Larmour <jifl@ecoscentric.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jifl@ecoscentric.com

--- Comment #3 from Jonathan Larmour <jifl@ecoscentric.com> 2010-11-11 16:06:50 GMT ---
I agree with John. Yes it should be optional, and due to the requirement should
 default to off.

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
  2010-11-11 14:53 ` [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount bugzilla-daemon
  2010-11-11 16:07 ` bugzilla-daemon
@ 2010-11-13  9:29 ` bugzilla-daemon
  2010-11-13 10:49 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-13  9:29 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

John Dallaway <john@dallaway.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEEDINFO
         AssignedTo|unassigned@bugs.ecos.source |john@dallaway.org.uk
                   |ware.org                    |
     Ever Confirmed|0                           |1

--- Comment #4 from John Dallaway <john@dallaway.org.uk> 2010-11-13 09:28:00 GMT ---
Alexander, could you wrap your changes in:

  #if defined(CYGFUN_FS_ROM_FLASH_BLOCK_DEVICE_LOOKUP)
  #endif

add the following CDL option to romfs.cdl:

  cdl_option CYGFUN_FS_ROM_FLASH_BLOCK_DEVICE_LOOKUP {
    display "Lookup flash block device names"
    flavor bool
    requires CYGPKG_IO_FLASH
    requires CYGPKG_IO_FLASH_BLOCK_DEVICE
    default_value 0
    description "Enables the location of a ROM filesystem to
      be specified using a flash block device name such as
      \"/dev/flash/fis/romfs\" in the call to mount()."
  }

and resubmit your patch please?

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
                   ` (2 preceding siblings ...)
  2010-11-13  9:29 ` bugzilla-daemon
@ 2010-11-13 10:49 ` bugzilla-daemon
  2010-11-23 10:33 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-13 10:49 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

Alexander Aganichev <aaganichev@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #1013|0                           |1
        is obsolete|                            |

--- Comment #5 from Alexander Aganichev <aaganichev@gmail.com> 2010-11-13 10:49:08 GMT ---
Created an attachment (id=1017)
 --> (http://bugs.ecos.sourceware.org/attachment.cgi?id=1017)
Updated patch with John's proposal

John, thanks for CDL code. I incorporated it in the patch and wrapped my code
with #ifdef's.

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
                   ` (3 preceding siblings ...)
  2010-11-13 10:49 ` bugzilla-daemon
@ 2010-11-23 10:33 ` bugzilla-daemon
  2010-11-29 16:20 ` bugzilla-daemon
  2010-11-29 16:31 ` bugzilla-daemon
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-23 10:33 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

John Dallaway <john@dallaway.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |ASSIGNED

--- Comment #6 from John Dallaway <john@dallaway.org.uk> 2010-11-23 10:33:02 GMT ---
Alexander, thank you for the update. I'll take a look...

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
                   ` (4 preceding siblings ...)
  2010-11-23 10:33 ` bugzilla-daemon
@ 2010-11-29 16:20 ` bugzilla-daemon
  2010-11-29 16:31 ` bugzilla-daemon
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-29 16:20 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

John Dallaway <john@dallaway.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Attachment #1017|0                           |1
        is obsolete|                            |

--- Comment #7 from John Dallaway <john@dallaway.org.uk> 2010-11-29 16:19:52 GMT ---
Created an attachment (id=1031)
 --> (http://bugs.ecos.sourceware.org/attachment.cgi?id=1031)
romfs-101129.patch

Final patch with comments/ChangeLog modified to indicate any flash block device
name should be usable + mk_romfs build for win32.

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount.
       [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
                   ` (5 preceding siblings ...)
  2010-11-29 16:20 ` bugzilla-daemon
@ 2010-11-29 16:31 ` bugzilla-daemon
  6 siblings, 0 replies; 7+ messages in thread
From: bugzilla-daemon @ 2010-11-29 16:31 UTC (permalink / raw)
  To: ecos-patches

Please do not reply to this email. Use the web interface provided at:
http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001073

John Dallaway <john@dallaway.org.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |CURRENTRELEASE

--- Comment #8 from John Dallaway <john@dallaway.org.uk> 2010-11-29 16:31:05 GMT ---
Checked-in. Thank you for the contribution.

-- 
Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

end of thread, other threads:[~2010-11-29 16:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-1001073-104@http.bugs.ecos.sourceware.org/>
2010-11-11 14:53 ` [Bug 1001073] ROM FS do not allow to use FIS names as device name in mount bugzilla-daemon
2010-11-11 16:07 ` bugzilla-daemon
2010-11-13  9:29 ` bugzilla-daemon
2010-11-13 10:49 ` bugzilla-daemon
2010-11-23 10:33 ` bugzilla-daemon
2010-11-29 16:20 ` bugzilla-daemon
2010-11-29 16:31 ` bugzilla-daemon

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).