Dump9660 (and mk9660). Until we either do something
intelligent with symlinks or put in a switch for things like dump9660, this is of rather limited utility under Unix.
This commit is contained in:
parent
e1dddc0532
commit
7285a491c1
20 changed files with 4375 additions and 0 deletions
27
src/cmd/9660/plan9.c
Normal file
27
src/cmd/9660/plan9.c
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <bio.h>
|
||||
#include <libsec.h>
|
||||
#include <disk.h>
|
||||
#include "iso9660.h"
|
||||
|
||||
void
|
||||
dirtoxdir(XDir *xd, Dir *d)
|
||||
{
|
||||
xd->name = atom(d->name);
|
||||
xd->uid = atom(d->uid);
|
||||
xd->gid = atom(d->gid);
|
||||
xd->uidno = 0;
|
||||
xd->gidno = 0;
|
||||
xd->mode = d->mode;
|
||||
xd->atime = d->atime;
|
||||
xd->mtime = d->mtime;
|
||||
xd->ctime = 0;
|
||||
xd->length = d->length;
|
||||
};
|
||||
|
||||
void
|
||||
fdtruncate(int fd, ulong size)
|
||||
{
|
||||
USED(fd, size);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue