1 #include <schily/mconfig.h>
2 #include <schily/stdio.h>
3 #include <schily/standard.h>
4 #include <schily/getargs.h>
5 
6 EXPORT	int	main		__PR((int ac, char **av));
7 
8 int
main(ac,av)9 main(ac, av)
10 	int	ac;
11 	char	*av[];
12 {
13 		int	cac = ac;
14 		char	* const *cav = av;
15 	BOOL	prversion = FALSE;
16 
17 	getallargs(&cac, &cav, "version", &prversion);
18 	if (prversion)
19 		printf("| PXUpdate V1.00-dummy\n");
20 	printf("\nThis is a dummy pxupgrade program.\n");
21 	printf("The original program is not OpenSource and cannot be published\n");
22 	printf("as it is under NDA wit Plextor.\n");
23 	printf("If you need a working pxupgrade binary, install a packet from www.blastwave.org\n");
24 	printf("or download a binary from ftp://ftp.berlios.de/pub/cdrecord/firmware/plextor/\n\n");
25 	return (0);
26 }
27