Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 00/12] iso9660 support improvements
@ 2015-06-04 15:05 Thomas Petazzoni
  2015-06-04 15:05 ` [Buildroot] [PATCH 01/12] fs/common: add <fs>_POST_GEN_HOOKS support Thomas Petazzoni
                   ` (11 more replies)
  0 siblings, 12 replies; 55+ messages in thread
From: Thomas Petazzoni @ 2015-06-04 15:05 UTC (permalink / raw)
  To: buildroot

Hello,

The following patch series brings a number of improvements to the
ISO9660 support. It takes into account some of the patches that have
been submitted on the topic, and that still sit in patchwork due to
the patches not being completely appropriate, and hopefully
re-implement the same features (and more) in a solution that is
acceptable in Buildroot.

The main features are:

 * Ability to put the root filesystem directly as the ISO9660
   filesystem, instead of having to use an initrd/initramfs to embed
   the root filesystem.

 * Support for using isolinux or Grub2 as alternate bootloaders to
   grub.

 * Support for generating hybrid ISO images (which can boot from
   either CD-ROM or USB keys), when isolinux is used.

In sequence:

 * Patch 1 extends the common filesystem infrastructure with a
   POST_GEN_HOOKS mechanism.

 * Patch 2 convers the existing ISO9660 logic to use the common
   filesystem infrastructure.

 * Patches 3 to 7 do some minor improvements/cleanups to the ISO9660
   handling.

 * Patch 8 adds the ability to put the root filesystem directly in the
   ISO9660 filesystem (keeping the possibility of using
   initrd/initramfs as alternate solutions)

 * Patches 9/10 add support for isolinux and hybrid image generation.

 * Patches 11/12 add support for Grub2

This series superseds the following patches:

  http://patchwork.ozlabs.org/patch/430655/
  http://patchwork.ozlabs.org/patch/328052/
  http://patchwork.ozlabs.org/patch/328051/

Best regards,

Thomas

Thomas Petazzoni (12):
  fs/common: add <fs>_POST_GEN_HOOKS support
  fs/iso9660: convert to the filesystem infrastructure
  fs/iso9660: use if ... endif block instead of depends on
  fs/iso9660: enable Joliet extension
  fs/iso9660: rename all variables to use the ROOTFS_ISO9660 prefix
  fs/iso9660: change the location of the splash image
  fs/iso9660: prepare cleaner kernel/initrd path handling
  fs/iso9660: support building a real iso9660 filesystem
  fs/iso9660: add support for isolinux
  fs/iso9660: add hybrid image support
  grub2: prepare and install El Torito image
  fs/iso9660: add support for grub2

 boot/grub2/grub2.mk     |   2 +
 fs/common.mk            |   4 ++
 fs/iso9660/Config.in    |  85 +++++++++++++++++++---
 fs/iso9660/grub.cfg     |   7 ++
 fs/iso9660/iso9660.mk   | 184 +++++++++++++++++++++++++++++++++++++-----------
 fs/iso9660/isolinux.cfg |   6 ++
 fs/iso9660/menu.lst     |   6 +-
 7 files changed, 242 insertions(+), 52 deletions(-)
 create mode 100644 fs/iso9660/grub.cfg
 create mode 100644 fs/iso9660/isolinux.cfg

-- 
2.1.0

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

end of thread, other threads:[~2015-06-07 19:53 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-04 15:05 [Buildroot] [PATCH 00/12] iso9660 support improvements Thomas Petazzoni
2015-06-04 15:05 ` [Buildroot] [PATCH 01/12] fs/common: add <fs>_POST_GEN_HOOKS support Thomas Petazzoni
2015-06-05  9:43   ` Samuel Martin
2015-06-05 20:49   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 02/12] fs/iso9660: convert to the filesystem infrastructure Thomas Petazzoni
2015-06-05 11:59   ` Samuel Martin
2015-06-05 13:34     ` Thomas Petazzoni
2015-06-05 20:58   ` Yann E. MORIN
2015-06-06  0:42     ` Thomas Petazzoni
2015-06-06  9:01       ` Yann E. MORIN
2015-06-06 14:57         ` Thomas Petazzoni
2015-06-06 16:03           ` Yann E. MORIN
2015-06-05 22:44   ` Arnout Vandecappelle
2015-06-06  0:43     ` Thomas Petazzoni
2015-06-07 19:53       ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 03/12] fs/iso9660: use if ... endif block instead of depends on Thomas Petazzoni
2015-06-05 12:01   ` Samuel Martin
2015-06-05 21:00   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 04/12] fs/iso9660: enable Joliet extension Thomas Petazzoni
2015-06-05 12:06   ` Samuel Martin
2015-06-05 21:18   ` Yann E. MORIN
2015-06-06  0:46     ` Thomas Petazzoni
2015-06-06  9:02       ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 05/12] fs/iso9660: rename all variables to use the ROOTFS_ISO9660 prefix Thomas Petazzoni
2015-06-05 12:08   ` Samuel Martin
2015-06-05 21:20   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 06/12] fs/iso9660: change the location of the splash image Thomas Petazzoni
2015-06-05 12:09   ` Samuel Martin
2015-06-05 21:30   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 07/12] fs/iso9660: prepare cleaner kernel/initrd path handling Thomas Petazzoni
2015-06-05 12:11   ` Samuel Martin
2015-06-05 21:43   ` Yann E. MORIN
2015-06-05 22:06   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 08/12] fs/iso9660: support building a real iso9660 filesystem Thomas Petazzoni
2015-06-05 12:57   ` Samuel Martin
2015-06-05 22:13   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 09/12] fs/iso9660: add support for isolinux Thomas Petazzoni
2015-06-05 13:02   ` Samuel Martin
2015-06-05 22:38   ` Yann E. MORIN
2015-06-06  1:03     ` Thomas Petazzoni
2015-06-06  9:25       ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 10/12] fs/iso9660: add hybrid image support Thomas Petazzoni
2015-06-05 13:07   ` Samuel Martin
2015-06-05 22:51   ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 11/12] grub2: prepare and install El Torito image Thomas Petazzoni
2015-06-05 13:21   ` Samuel Martin
2015-06-05 22:55   ` Yann E. MORIN
2015-06-05 23:09   ` Yann E. MORIN
2015-06-06  0:57     ` Thomas Petazzoni
2015-06-06  9:31       ` Yann E. MORIN
2015-06-04 15:05 ` [Buildroot] [PATCH 12/12] fs/iso9660: add support for grub2 Thomas Petazzoni
2015-06-05 13:30   ` Samuel Martin
2015-06-05 23:07   ` Yann E. MORIN
2015-06-06  0:59     ` Thomas Petazzoni
2015-06-06  9:18       ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox