Home Page · Up 1 Level · Site Map · Send Us Mail


Making a CD-i/CD-ROM XA Bridge Disc using Master

! Example Input File for the 'MASTER' Disc Builder
!========================================
! CDi - XA Bridge Disc Image

! 1) Define the Various Files that are Involved in the Disc Image
! ------------------------------------------------------------
! Bold names below indicate changeable items. ! = comments. Be sure to use quotes wherever they are indicated.
! Type in non-bold items exactly as shown below. Easy way: save copy of this file , then type in the changes to
! the bold text as needed. Script must be saved in basic ASCII format.

options: -xa

path = "/h0/yellowfiles/"       ! The directory containing the files. Be sure to include final /.
define album "YELLOW FILES"     ! Album name can be anything, 32 characters max.
publisher "Acme"
preparer "John Doe"
volume "XA Disc" in "XA.cd"     ! Volume name can be anything, 32 characters max.
                                  ! Disk image named according to OS9 naming conventions.
                                  ! Use absolute path for image file if you do not want it placed in current directory.

    copyright file Copyright  from "/h0/yellowfiles/copyright.txt"      ! Define the REQUIRED files. Copy these files
    abstract file Abstract    from "/h0/yellowfiles/abstract.txt"       ! from the CDIMAGES directory to the directory
    biblio file Biblio        from "/h0/yellowfiles/bibliographic.txt"  ! containing the yellow files.
    application file appl     from "/h0/yellowfiles/cdi_appl.xa"

! Define YOUR Files Here

    yellow file identifier_1 from "file_1"     ! identifiers can have upper/lower case letters, underscore, numbers (but
    yellow file identifier_2 from "file_2"     ! cannot start with a number), no other characters allowed, 32 characters
    yellow file identifier_3 from "file_3"     ! max, case-sensitive. Remember quotes.
    yellow file identifier_4 from "file_4"
    yellow file identifier_5 from "file_5"

! 2) Define the Directory Structure on the Disc
! ------------------------------------------------------------

{
  "COPYRGHT.TXT;1" protection 0x111 from Copyright
  "ABSTRACT.TXT;1" protection 0x111 from Abstract
  "BIBLIOGR.TXT;1" protection 0x111 from Biblio

"CMDS"
{
  "CDI_APPL.XA;1" from appl
! CDi app on disc. Must conform to same naming
}                             ! conventions as XA_FILEs listed below.

"YELLOW" !Caps. Directory name, 8 characters max.
{
  "XA_FILE.1;1" from identifier_1      ! List files on cd. There must be a corresponding entry for all the files listed
  "XA_FILE.2;1" from identifier_2      ! above. XA_FILE files must use all caps, must conform to 8.3 naming,
  "XA_FILE.3;1" from identifier_3      ! must have filename extension, and ;1 and quotes are required! Use the same
  "XA_FILE.4;1" from identifier_4      ! names for identifiers as those used above. An alternative is to use def and dir
  "XA_FILE.5;1" from identifier_5      ! files in place of listing them here. See the xa-only script for an example of this.
}
}

! >>> End of Master Script <<<      !Save the script, type the command   master scriptname   to build the image.


Home Page · Up 1 Level · Site Map · Send Us Mail