Sync usage with man page.
[netbsd-mini2440.git] / sys / dev / microcode / rum / build.c
blob9c65b8ddbce0158aafda7cfff5a72dda69b1fe93
1 /* $NetBSD$ */
2 /* $OpenBSD: build.c,v 1.1 2006/01/09 20:03:40 damien Exp $ */
4 /*-
5 * Copyright (c) 2006
6 * Damien Bergamini <damien.bergamini@free.fr>
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/types.h>
23 #include <err.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <unistd.h>
28 #include "microcode.h"
30 static void
31 output(const char *name, const uint8_t *ucode, int size)
33 ssize_t rlen;
34 int fd;
36 printf("creating %s length %d\n", name, size);
38 fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
39 if (fd == -1)
40 err(1, "%s", name);
42 rlen = write(fd, ucode, size);
43 if (rlen == -1)
44 err(1, "%s", name);
45 if (rlen != size)
46 errx(1, "%s: short write", name);
48 close(fd);
51 int
52 main(void)
54 output("rum-rt2573", rt2573, sizeof rt2573);
56 return 0;