diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | scripts/mk-rescueimage.ppc | 17 |
2 files changed, 21 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2006-01-10 Jesse Keating <jkeating@redhat.com> + + * util/mk-rescueimage.ppc: Create mapping file for hfs stuff + 2006-01-09 Jeremy Katz <katzj@redhat.com> * anaconda.spec: Bump version diff --git a/scripts/mk-rescueimage.ppc b/scripts/mk-rescueimage.ppc index d9c70c2d0..d526aa0bd 100644 --- a/scripts/mk-rescueimage.ppc +++ b/scripts/mk-rescueimage.ppc @@ -142,3 +142,20 @@ for l in cfglines: cfgfile.write('\n' + rescuelines) +## Create a mapping file for HFS stuff +# + +mapcontents = """#e x c t cM +.gz Raw 'ddsk' 'DDim' "Floppy or ramdisk image" +.b Raw 'UNIX' 'tbxi' "Bootstrap" +yaboot Raw 'UNIX' 'boot' "Bootstrap" +vmlinux Raw 'UNIX' 'boot' "Bootstrap" +.conf Raw 'UNIX' 'boot' "Bootstrap" +.msg Raw 'UNIX' 'boot' "Bootstrap" +.txt Raw 'ttxt' 'TEXT' "Text file" +.sit Raw 'SITx' 'SIT!' "StuffIt Expander archive" +* Raw '????' '????' "Unknown""""" + +mapfile = open("%s/mapping" % (destdir,), "w") +mapfile.write(mapcontents) +mapfile.close() |