Building either bootable CD-ROM image or the regular image

This commit is contained in:
Pierre Pronchery 2009-04-01 23:54:12 +00:00
parent 9fb14b0ea1
commit a57fc2a440
2 changed files with 20 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#$Id$
#Copyright (c) 2009 Pierre Pronchery <khorben@defora.org>
@ -8,7 +9,15 @@
#functions
#public
#target_image
target_image()
{
_image_image
case "$IMAGE_TYPE" in
"iso")
_image_iso
;;
*)
_image_image
;;
esac
}

View File

@ -1,4 +1,5 @@
#$Id$
#Copyright (c) 2009 Pierre Pronchery <khorben@defora.org>
@ -8,7 +9,15 @@
#functions
#public
#target_image
target_image()
{
_image_image
case "$IMAGE_TYPE" in
"iso")
_image_iso
;;
*)
_image_image
;;
esac
}