Changeset 925a21e in mainline for uspace/srv/fs/fat/fat.c
- Timestamp:
- 2011-09-24T14:20:29Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5bf76c1
- Parents:
- 867e2555 (diff), 1ab4aca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.c
r867e2555 r925a21e 2 2 * Copyright (c) 2006 Martin Decky 3 3 * Copyright (c) 2008 Jakub Jermar 4 * Copyright (c) 2011 Oleg Romanenko 4 5 * All rights reserved. 5 6 * … … 53 54 .name = NAME, 54 55 .concurrent_read_write = false, 55 .write_retains_size = false, 56 .write_retains_size = false, 57 .instance = 0, 56 58 }; 57 59 … … 60 62 printf(NAME ": HelenOS FAT file system server\n"); 61 63 64 if (argc == 3) { 65 if (!str_cmp(argv[1], "--instance")) 66 fat_vfs_info.instance = strtol(argv[2], NULL, 10); 67 else { 68 printf(NAME " Unrecognized parameters"); 69 return -1; 70 } 71 } 72 62 73 int rc = fat_idx_init(); 63 74 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.