summaryrefslogtreecommitdiff
path: root/shells/sash/files/patch-al
blob: 457e24725bb2982907eb30255112e28392f64dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
--- cmds.c.orig	Thu Jun  3 14:42:39 1999
+++ cmds.c	Sat Nov 30 14:55:20 2002
@@ -6,17 +6,22 @@
  * Most simple built-in commands are here.
  */
 
-#include "sash.h"
-
 #include <sys/types.h>
 #include <sys/stat.h>
+#ifdef __FreeBSD__
+#include <sys/param.h>
+#endif
 #include <sys/mount.h>
 #include <signal.h>
 #include <pwd.h>
 #include <grp.h>
 #include <utime.h>
 #include <errno.h>
+#ifdef linux
 #include <linux/fs.h>
+#endif
+
+#include "sash.h"
 
 
 void
@@ -501,19 +506,38 @@
 	}
 }
 
+#ifdef __FreeBSD__
+#include <ufs/ufs/ufsmount.h>
+#include <isofs/cd9660/cd9660_mount.h>
+#if __FreeBSD_version >= 500019
+#include <fs/msdosfs/msdosfsmount.h>
+#else
+#include <msdosfs/msdosfsmount.h>
+#endif
+#endif
 
 void
 do_mount(int argc, const char ** argv)
 {
-	const char *	str;
-	const char *	type;
-	int		flags;
+	const char *		str;
+	const char *		type;
+#ifdef __FreeBSD__
+	u_long			flags=0;
+	struct ufs_args		ufs;
+	struct msdosfs_args	msdos;
+	struct iso_args		iso;
+	void			*args;
+#else
+	int			flags=MS_MGC_VAL;
+#endif
 
 	argc--;
 	argv++;
+#ifdef linux
 	type = "ext2";
-	flags = MS_MGC_VAL;
-
+#else
+	type = "ufs";
+#endif
 	while ((argc > 0) && (**argv == '-'))
 	{
 		argc--;
@@ -533,6 +557,7 @@
 				argc--;
 				break;
 
+#ifdef linux
 			case 'r':
 				flags |= MS_RDONLY;
 				break;
@@ -540,6 +565,16 @@
 			case 'm':
 				flags |= MS_REMOUNT;
 				break;
+#endif
+#ifdef __FreeBSD__
+			case 'r':
+				flags |= MNT_RDONLY;
+				break;
+
+			case 'u':
+				flags |= MNT_UPDATE;
+				break;
+#endif
 
 			default:
 				fprintf(stderr, "Unknown option\n");
@@ -555,15 +590,44 @@
 		return;
 	}
 
+#ifdef linux
 	if (mount(argv[0], argv[1], type, flags, 0) < 0)
 		perror("mount failed");
+#endif
+#ifdef __FreeBSD__
+	/* Select type of struct args */
+	if(strcmp(type,"ufs")==0) {
+		ufs.fspec=argv[0];
+		args=&ufs;
+	} else if(strcmp(type,"msdos")==0) {
+		msdos.fspec=argv[0];
+		args=&msdos;
+	} else if(strcmp(type,"ext2fs")==0) {
+		ufs.fspec=argv[0];
+		args=&ufs;
+	} else if(strcmp(type,"cd9660")==0) {
+		iso.fspec=argv[0];
+		flags|=MNT_RDONLY;
+		args=&iso;
+	} else {
+		fprintf(stderr,"Unsupported FS type %s\n",type);
+		return;
+	}
+	if(mount(type,argv[1],flags,args)!=0) {
+		perror("mount failed");
+	}
+#endif
 }
 
 
 void
 do_umount(int argc, const char ** argv)
 {
+#ifdef __FreeBSD__
+	if (unmount(argv[1],0) < 0)
+#else
 	if (umount(argv[1]) < 0)
+#endif
 		perror(argv[1]);
 }