* [WIP] Get rid of msys in favor of busybox port for windows @ 2007-07-10 15:32 Nguyen Thai Ngoc Duy 2007-07-10 15:39 ` Johannes Schindelin 2007-07-10 15:56 ` Henning Rogge 0 siblings, 2 replies; 7+ messages in thread From: Nguyen Thai Ngoc Duy @ 2007-07-10 15:32 UTC (permalink / raw) To: Git Mailing List Hi, I'm integrating some code from busybox to mingw tree so that mingw port can work without msys. Posix utilities such as sed, awk, head, tail... seem to work well. The main obstacle is ash, which is no where near usable state (fork issues as always). Busybox ash is about 13000 lines of code, not too big. Anyone interested in? -- Duy ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 15:32 [WIP] Get rid of msys in favor of busybox port for windows Nguyen Thai Ngoc Duy @ 2007-07-10 15:39 ` Johannes Schindelin 2007-07-10 16:08 ` Nguyen Thai Ngoc Duy 2007-07-10 15:56 ` Henning Rogge 1 sibling, 1 reply; 7+ messages in thread From: Johannes Schindelin @ 2007-07-10 15:39 UTC (permalink / raw) To: Nguyen Thai Ngoc Duy; +Cc: Git Mailing List Hi, On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > I'm integrating some code from busybox to mingw tree so that mingw port > can work without msys. Posix utilities such as sed, awk, head, tail... > seem to work well. The main obstacle is ash, which is no where near > usable state (fork issues as always). Busybox ash is about 13000 lines > of code, not too big. > > Anyone interested in? Definitely. Last time I wanted to assess how much work it is to compile that on MinGW, though, it seemed to be too much to be tractable. Ciao, Dscho ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 15:39 ` Johannes Schindelin @ 2007-07-10 16:08 ` Nguyen Thai Ngoc Duy 2007-07-10 16:20 ` Johannes Schindelin 0 siblings, 1 reply; 7+ messages in thread From: Nguyen Thai Ngoc Duy @ 2007-07-10 16:08 UTC (permalink / raw) To: Johannes Schindelin; +Cc: Git Mailing List On 7/10/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote: > Hi, > > On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > > > I'm integrating some code from busybox to mingw tree so that mingw port > > can work without msys. Posix utilities such as sed, awk, head, tail... > > seem to work well. The main obstacle is ash, which is no where near > > usable state (fork issues as always). Busybox ash is about 13000 lines > > of code, not too big. > > > > Anyone interested in? > > Definitely. > > Last time I wanted to assess how much work it is to compile that on MinGW, > though, it seemed to be too much to be tractable. The exact answer is "I don't know" :-) I cross compile all the time however it should build fine on MinGW as it now uses git Makefile. I'll push the patch into mob soon. -- Duy ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 16:08 ` Nguyen Thai Ngoc Duy @ 2007-07-10 16:20 ` Johannes Schindelin 2007-07-10 16:45 ` Nguyen Thai Ngoc Duy 0 siblings, 1 reply; 7+ messages in thread From: Johannes Schindelin @ 2007-07-10 16:20 UTC (permalink / raw) To: Nguyen Thai Ngoc Duy; +Cc: Git Mailing List Hi, On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > On 7/10/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote: > > > > On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > > > > > I'm integrating some code from busybox to mingw tree so that mingw port > > > can work without msys. Posix utilities such as sed, awk, head, tail... > > > seem to work well. The main obstacle is ash, which is no where near > > > usable state (fork issues as always). Busybox ash is about 13000 lines > > > of code, not too big. > > > > > > Anyone interested in? > > > > Definitely. > > > > Last time I wanted to assess how much work it is to compile that on MinGW, > > though, it seemed to be too much to be tractable. > > The exact answer is "I don't know" :-) I cross compile all the time > however it should build fine on MinGW as it now uses git Makefile. > I'll push the patch into mob soon. Do you mean the whole busybox thing? If so, please do not put it into mingw.git. Rather, start a busybox.git project (I saw that you have already some projects on repo.or.cz, so it should be easy for you.) Thanks, Dscho ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 16:20 ` Johannes Schindelin @ 2007-07-10 16:45 ` Nguyen Thai Ngoc Duy 0 siblings, 0 replies; 7+ messages in thread From: Nguyen Thai Ngoc Duy @ 2007-07-10 16:45 UTC (permalink / raw) To: Johannes Schindelin; +Cc: Git Mailing List On 7/10/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote: > Hi, > > On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > > > On 7/10/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote: > > > > > > On Tue, 10 Jul 2007, Nguyen Thai Ngoc Duy wrote: > > > > > > > I'm integrating some code from busybox to mingw tree so that mingw port > > > > can work without msys. Posix utilities such as sed, awk, head, tail... > > > > seem to work well. The main obstacle is ash, which is no where near > > > > usable state (fork issues as always). Busybox ash is about 13000 lines > > > > of code, not too big. > > > > > > > > Anyone interested in? > > > > > > Definitely. > > > > > > Last time I wanted to assess how much work it is to compile that on MinGW, > > > though, it seemed to be too much to be tractable. > > > > The exact answer is "I don't know" :-) I cross compile all the time > > however it should build fine on MinGW as it now uses git Makefile. > > I'll push the patch into mob soon. > > Do you mean the whole busybox thing? > > If so, please do not put it into mingw.git. Rather, start a busybox.git > project (I saw that you have already some projects on repo.or.cz, so it > should be easy for you.) No, I don't port the whole busybox (too big, too difficult). I extracted stuffs that need to run shell scripts (mainly coreutils and ash) and put them in my mingw tree. Just wanted to push it if you wanted to try.. maybe later. -- Duy ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 15:32 [WIP] Get rid of msys in favor of busybox port for windows Nguyen Thai Ngoc Duy 2007-07-10 15:39 ` Johannes Schindelin @ 2007-07-10 15:56 ` Henning Rogge 2007-07-10 16:12 ` Nguyen Thai Ngoc Duy 1 sibling, 1 reply; 7+ messages in thread From: Henning Rogge @ 2007-07-10 15:56 UTC (permalink / raw) To: git On 7/10/07, Nguyen Thai Ngoc Duy <pclouds@gmail.com> wrote: > I'm integrating some code from busybox to mingw tree so that mingw > port can work without msys. Posix utilities such as sed, awk, head, > tail... seem to work well. The main obstacle is ash, which is no where > near usable state (fork issues as always). Busybox ash is about 13000 > lines of code, not too big. > > Anyone interested in? If I can use it without needing a "vi/vim" implementation I'm interested ! Henning ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [WIP] Get rid of msys in favor of busybox port for windows 2007-07-10 15:56 ` Henning Rogge @ 2007-07-10 16:12 ` Nguyen Thai Ngoc Duy 0 siblings, 0 replies; 7+ messages in thread From: Nguyen Thai Ngoc Duy @ 2007-07-10 16:12 UTC (permalink / raw) To: Henning Rogge; +Cc: git On 7/10/07, Henning Rogge <hrogge@googlemail.com> wrote: > On 7/10/07, Nguyen Thai Ngoc Duy <pclouds@gmail.com> wrote: > > I'm integrating some code from busybox to mingw tree so that mingw > > port can work without msys. Posix utilities such as sed, awk, head, > > tail... seem to work well. The main obstacle is ash, which is no where > > near usable state (fork issues as always). Busybox ash is about 13000 > > lines of code, not too big. > > > > Anyone interested in? > If I can use it without needing a "vi/vim" implementation I'm interested ! There is no vi/vim in the port :-) My goal is to make shell scripts work with minimum effort. I don't even attempt to make ash interactively usable (well, git add --interactive and friends have to wait longer). -- Duy ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-07-10 16:45 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-07-10 15:32 [WIP] Get rid of msys in favor of busybox port for windows Nguyen Thai Ngoc Duy 2007-07-10 15:39 ` Johannes Schindelin 2007-07-10 16:08 ` Nguyen Thai Ngoc Duy 2007-07-10 16:20 ` Johannes Schindelin 2007-07-10 16:45 ` Nguyen Thai Ngoc Duy 2007-07-10 15:56 ` Henning Rogge 2007-07-10 16:12 ` Nguyen Thai Ngoc Duy
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 NNTP newsgroup(s).