The following changes since commit ddb10ce99c327888ade4d2ba3e4c50ad12aaa059: Matt Fleming (1): Delete 16-bit COMBOOT support are available in the git repository at: git://github.com/geneC/syslinux.git doc-elflink-for-mfleming Gene Cumm (3): txt/: Add new AsciiDoc formatted documentation Makefile: add txt/ NEWS: add txt/ Makefile | 2 +- NEWS | 4 + txt/.gitignore | 7 + txt/Makefile | 108 ++++++++++ txt/com-bug.txt | 11 + txt/com-name.txt | 12 + txt/com-rpt.txt | 22 ++ txt/hello.txt | 16 ++ txt/syslinux-cli.txt | 65 ++++++ txt/syslinux.cfg.txt | 564 ++++++++++++++++++++++++++++++++++++++++++++++++++ txt/syslinux.txt | 217 +++++++++++++++++++ 11 files changed, 1027 insertions(+), 1 deletions(-) create mode 100644 txt/.gitignore create mode 100644 txt/Makefile create mode 100644 txt/com-bug.txt create mode 100644 txt/com-name.txt create mode 100644 txt/com-rpt.txt create mode 100644 txt/hello.txt create mode 100644 txt/syslinux-cli.txt create mode 100644 txt/syslinux.cfg.txt create mode 100644 txt/syslinux.txt
Paulo Alcantara
2012-Dec-07 17:08 UTC
[syslinux] [PATCH][git-pull] AsciiDoc-based documentation
Hi Gene, Gene Cumm <gene.cumm at gmail.com> writes:> The following changes since commit ddb10ce99c327888ade4d2ba3e4c50ad12aaa059: > Matt Fleming (1): > Delete 16-bit COMBOOT support > > are available in the git repository at: > > git://github.com/geneC/syslinux.git doc-elflink-for-mfleming > > Gene Cumm (3): > txt/: Add new AsciiDoc formatted documentation > Makefile: add txt/ > NEWS: add txt/ > > Makefile | 2 +- > NEWS | 4 + > txt/.gitignore | 7 + > txt/Makefile | 108 ++++++++++ > txt/com-bug.txt | 11 + > txt/com-name.txt | 12 + > txt/com-rpt.txt | 22 ++ > txt/hello.txt | 16 ++ > txt/syslinux-cli.txt | 65 ++++++ > txt/syslinux.cfg.txt | 564 ++++++++++++++++++++++++++++++++++++++++++++++++++ > txt/syslinux.txt | 217 +++++++++++++++++++ > 11 files changed, 1027 insertions(+), 1 deletions(-) > create mode 100644 txt/.gitignore > create mode 100644 txt/Makefile > create mode 100644 txt/com-bug.txt > create mode 100644 txt/com-name.txt > create mode 100644 txt/com-rpt.txt > create mode 100644 txt/hello.txt > create mode 100644 txt/syslinux-cli.txt > create mode 100644 txt/syslinux.cfg.txt > create mode 100644 txt/syslinux.txtGreat work. Thanks Gene! -- Paulo Alcantara, ProFUSION Embedded Systems
Matt Fleming
2013-Jan-14 19:31 UTC
[syslinux] [PATCH][git-pull] AsciiDoc-based documentation
On Fri, 2012-12-07 at 12:01 -0500, Gene Cumm wrote:> The following changes since commit ddb10ce99c327888ade4d2ba3e4c50ad12aaa059: > Matt Fleming (1): > Delete 16-bit COMBOOT support > > are available in the git repository at: > > git://github.com/geneC/syslinux.git doc-elflink-for-mflemingI pulled this, but I'm hitting the following error because txt/html doesn't already exist. FAILED: unexpected error: ------------------------------------------------------------ Traceback (most recent call last): File "/usr/bin/asciidoc", line 5078, in asciidoc writer.open(outfile) File "/usr/bin/asciidoc", line 3894, in open self.f = open(fname,'wb+') IOError: [Errno 2] No such file or directory: '/home/matt/src/bootloaders/mfleming-syslinux.git/txt/html/syslinux.html' ------------------------------------------------------------ make[1]: *** [html/syslinux.html] Error 1 make: *** [all] Error 2 -- Matt Fleming, Intel Open Source Technology Center
On Wed, Jan 16, 2013 at 5:55 PM, H. Peter Anvin <hpa at zytor.com> wrote:> On 01/15/2013 02:55 AM, Matt Fleming wrote: >> >> Creating the output directories from txt/Makefile seems fine to me. >> > > Indeed. In particular, mkdir -p is your friend. > > -hpaThe following changes since commit 14fe8af6c11e71619de9be1afd4556ebbc770db3: H. Peter Anvin (1): elf: remove long-since-obsolete shallow module machinery are available in the git repository at: git://github.com/geneC/syslinux.git doc-elflink-for-mfleming Gene Cumm (5): txt/: Add new AsciiDoc formatted documentation Makefile: add txt/ NEWS: add txt/ txt/: Remove COMBOOT as of 5.00; spelling; add PATH txt/Makefile: make directories Makefile | 2 +- NEWS | 4 + txt/.gitignore | 7 + txt/Makefile | 111 ++++++++++ txt/com-bug.txt | 11 + txt/com-name.txt | 12 + txt/com-rpt.txt | 22 ++ txt/hello.txt | 16 ++ txt/syslinux-cli.txt | 65 ++++++ txt/syslinux.cfg.txt | 572 ++++++++++++++++++++++++++++++++++++++++++++++++++ txt/syslinux.txt | 217 +++++++++++++++++++ 11 files changed, 1038 insertions(+), 1 deletions(-) create mode 100644 txt/.gitignore create mode 100644 txt/Makefile create mode 100644 txt/com-bug.txt create mode 100644 txt/com-name.txt create mode 100644 txt/com-rpt.txt create mode 100644 txt/hello.txt create mode 100644 txt/syslinux-cli.txt create mode 100644 txt/syslinux.cfg.txt create mode 100644 txt/syslinux.txt
Matt Fleming
2013-Jan-24 17:29 UTC
[syslinux] [PATCH][git-pull] AsciiDoc-based documentation
On Thu, 2013-01-17 at 22:22 -0500, Gene Cumm wrote:> On Wed, Jan 16, 2013 at 5:55 PM, H. Peter Anvin <hpa at zytor.com> wrote: > > On 01/15/2013 02:55 AM, Matt Fleming wrote: > >> > >> Creating the output directories from txt/Makefile seems fine to me. > >> > > > > Indeed. In particular, mkdir -p is your friend. > > > > -hpa > > The following changes since commit 14fe8af6c11e71619de9be1afd4556ebbc770db3: > H. Peter Anvin (1): > elf: remove long-since-obsolete shallow module machinery > > are available in the git repository at: > > git://github.com/geneC/syslinux.git doc-elflink-for-mfleming > > Gene Cumm (5): > txt/: Add new AsciiDoc formatted documentation > Makefile: add txt/ > NEWS: add txt/ > txt/: Remove COMBOOT as of 5.00; spelling; add PATH > txt/Makefile: make directoriesI like this alot. Pulled, thanks Gene! -- Matt Fleming, Intel Open Source Technology Center