]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_fat.c
fs: rename fsload command to load
[karo-tx-uboot.git] / common / cmd_fat.c
1 /*
2  * (C) Copyright 2002
3  * Richard Jones, rjones@nexus-tech.net
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /*
25  * Boot support
26  */
27 #include <common.h>
28 #include <command.h>
29 #include <s_record.h>
30 #include <net.h>
31 #include <ata.h>
32 #include <part.h>
33 #include <fat.h>
34 #include <fs.h>
35
36 int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
37 {
38         return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT, 16);
39 }
40
41
42 U_BOOT_CMD(
43         fatload,        7,      0,      do_fat_fsload,
44         "load binary file from a dos filesystem",
45         "<interface> [<dev[:part]>]  <addr> <filename> [bytes [pos]]\n"
46         "    - Load binary file 'filename' from 'dev' on 'interface'\n"
47         "      to address 'addr' from dos filesystem.\n"
48         "      'pos' gives the file position to start loading from.\n"
49         "      If 'pos' is omitted, 0 is used. 'pos' requires 'bytes'.\n"
50         "      'bytes' gives the size to load. If 'bytes' is 0 or omitted,\n"
51         "      the load stops on end of file.\n"
52         "      All numeric parameters are assumed to be hex."
53 );
54
55 int do_fat_ls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
56 {
57         return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT);
58 }
59
60 U_BOOT_CMD(
61         fatls,  4,      1,      do_fat_ls,
62         "list files in a directory (default /)",
63         "<interface> [<dev[:part]>] [directory]\n"
64         "    - list files from 'dev' on 'interface' in a 'directory'"
65 );
66
67 int do_fat_fsinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
68 {
69         int dev, part;
70         block_dev_desc_t *dev_desc;
71         disk_partition_t info;
72
73         if (argc < 2) {
74                 printf("usage: fatinfo <interface> [<dev[:part]>]\n");
75                 return 0;
76         }
77
78         part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
79         if (part < 0)
80                 return 1;
81
82         dev = dev_desc->dev;
83         if (fat_set_blk_dev(dev_desc, &info) != 0) {
84                 printf("\n** Unable to use %s %d:%d for fatinfo **\n",
85                         argv[1], dev, part);
86                 return 1;
87         }
88         return file_fat_detectfs();
89 }
90
91 U_BOOT_CMD(
92         fatinfo,        3,      1,      do_fat_fsinfo,
93         "print information about filesystem",
94         "<interface> [<dev[:part]>]\n"
95         "    - print information about filesystem from 'dev' on 'interface'"
96 );
97
98 #ifdef CONFIG_FAT_WRITE
99 static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag,
100                 int argc, char * const argv[])
101 {
102         long size;
103         unsigned long addr;
104         unsigned long count;
105         block_dev_desc_t *dev_desc = NULL;
106         disk_partition_t info;
107         int dev = 0;
108         int part = 1;
109
110         if (argc < 5)
111                 return cmd_usage(cmdtp);
112
113         part = get_device_and_partition(argv[1], argv[2], &dev_desc, &info, 1);
114         if (part < 0)
115                 return 1;
116
117         dev = dev_desc->dev;
118
119         if (fat_set_blk_dev(dev_desc, &info) != 0) {
120                 printf("\n** Unable to use %s %d:%d for fatwrite **\n",
121                         argv[1], dev, part);
122                 return 1;
123         }
124         addr = simple_strtoul(argv[3], NULL, 16);
125         count = simple_strtoul(argv[5], NULL, 16);
126
127         size = file_fat_write(argv[4], (void *)addr, count);
128         if (size == -1) {
129                 printf("\n** Unable to write \"%s\" from %s %d:%d **\n",
130                         argv[4], argv[1], dev, part);
131                 return 1;
132         }
133
134         printf("%ld bytes written\n", size);
135
136         return 0;
137 }
138
139 U_BOOT_CMD(
140         fatwrite,       6,      0,      do_fat_fswrite,
141         "write file into a dos filesystem",
142         "<interface> <dev[:part]> <addr> <filename> <bytes>\n"
143         "    - write file 'filename' from the address 'addr' in RAM\n"
144         "      to 'dev' on 'interface'"
145 );
146 #endif