#!/bin/sh

# Author: Benoit PAPILLAULT <benoit.papillault@sourcemage.org>
# Creation : 2004-12-09

# Requirements: a working chroot system
# Output: a working iso

# make iso-root (from image)
./mk-iso-root &&

# make initrd (from iso-root)
IMAGE=work/iso-root ./mk-initrd &&

# make final iso (from iso-root & initrd)
IMAGE=work/iso-root ./mk-iso

