X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=second%2Ffs_iso.c;h=303790f27bded5f97d8dd34b0d2a6a38ed367396;hp=9f52a3da5fd103541e928cc04102b84990e91015;hb=ba131271e6a8f3401cf6faa7d751530b6151ae3a;hpb=f4ebbd9f7ea23e3f0fcbe098754580c220894628 diff --git a/second/fs_iso.c b/second/fs_iso.c index 9f52a3d..303790f 100644 --- a/second/fs_iso.c +++ b/second/fs_iso.c @@ -1,20 +1,22 @@ -/* iso9660 filesystem (placeholder) - - Copyright (C) 1999 Benjamin Herrenschnidt - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* + * fs_iso.c - a non-implementation for the ISO9660 filesystem + * + * Copyright (C) 1999 Benjamin Herrenschnidt + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ #include "ctype.h" #include "types.h" @@ -24,7 +26,7 @@ #include "string.h" #include "partition.h" #include "fs.h" - +#include "errors.h" static int iso_open( struct boot_file_t* file, const char* dev_name, @@ -39,11 +41,11 @@ static int iso_close( struct boot_file_t* file); struct fs_t iso_filesystem = { - "iso9660", - iso_open, - iso_read, - iso_seek, - iso_close + "iso9660", + iso_open, + iso_read, + iso_seek, + iso_close }; static int @@ -52,7 +54,7 @@ iso_open( struct boot_file_t* file, struct partition_t* part, const char* file_name) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int @@ -60,18 +62,25 @@ iso_read( struct boot_file_t* file, unsigned int size, void* buffer) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int iso_seek( struct boot_file_t* file, unsigned int newpos) { - return FILE_ERR_NOTFOUND; + return FILE_ERR_BAD_FSYS; } static int iso_close( struct boot_file_t* file) { - return 0; + return 0; } + +/* + * Local variables: + * c-file-style: "k&r" + * c-basic-offset: 5 + * End: + */