Deleted Added
full compact
directory.subr (252987) directory.subr (253333)
1if [ ! "$_MEDIA_DIRECTORY_SUBR" ]; then _MEDIA_DIRECTORY_SUBR=1
2#
3# Copyright (c) 2012-2013 Devin Teske
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 10 unchanged lines hidden (view full) ---

19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
1if [ ! "$_MEDIA_DIRECTORY_SUBR" ]; then _MEDIA_DIRECTORY_SUBR=1
2#
3# Copyright (c) 2012-2013 Devin Teske
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 10 unchanged lines hidden (view full) ---

19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27# $FreeBSD: head/usr.sbin/bsdconfig/share/media/directory.subr 252987 2013-07-07 18:51:44Z dteske $
27# $FreeBSD: head/usr.sbin/bsdconfig/share/media/directory.subr 253333 2013-07-14 03:08:52Z dteske $
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." media/directory.subr
34f_include $BSDCFG_SHARE/device.subr
35f_include $BSDCFG_SHARE/dialog.subr

--- 74 unchanged lines hidden (view full) ---

110 f_show_msg "$msg_not_a_directory" \
111 "f_media_init_directory" "$path"
112 return $FAILURE
113 fi
114 DIRECTORY_CHECKED=1
115 return $SUCCESS
116}
117
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." media/directory.subr
34f_include $BSDCFG_SHARE/device.subr
35f_include $BSDCFG_SHARE/dialog.subr

--- 74 unchanged lines hidden (view full) ---

110 f_show_msg "$msg_not_a_directory" \
111 "f_media_init_directory" "$path"
112 return $FAILURE
113 fi
114 DIRECTORY_CHECKED=1
115 return $SUCCESS
116}
117
118# f_media_get_directory $device $file [$probe_only]
118# f_media_get_directory $device $file [$probe_type]
119#
120# Returns data from $file in the existing/current filesystem. Similar to
119#
120# Returns data from $file in the existing/current filesystem. Similar to
121# cat(1). If $probe_only is present and non-NULL, returns success if $file
122# exists.
121# cat(1). If $probe_type is present and non-NULL, returns success if $file
122# exists. If $probe_type is equal to $PROBE_SIZE, prints the size of $file in
123# bytes to standard-out.
123#
124f_media_get_directory()
125{
124#
125f_media_get_directory()
126{
126 local dev="$1" file="$2" probe_only="$3" path
127 local dev="$1" file="$2" probe_type="$3" path
127
128
128 f_dprintf "f_media_get_directory: dev=[%s] file=[%s] probe_only=%s" \
129 "$dev" "$file" "$probe_only"
129 f_dprintf "f_media_get_directory: dev=[%s] file=[%s] probe_type=%s" \
130 "$dev" "$file" "$probe_type"
130
131 device_$dev get private path
131
132 device_$dev get private path
132 f_media_generic_get "$path" "$file" "$probe_only"
133 f_media_generic_get "$path" "$file" "$probe_type"
133}
134
135# f_media_shutdown_directory $device
136#
137# Shuts down the Directory device. Return status should be ignored.
138#
139f_media_shutdown_directory()
140{
141 DIRECTORY_CHECKED=
142}
143
144############################################################ MAIN
145
146f_dprintf "%s: Successfully loaded." media/directory.subr
147
148fi # ! $_MEDIA_DIRECTORY_SUBR
134}
135
136# f_media_shutdown_directory $device
137#
138# Shuts down the Directory device. Return status should be ignored.
139#
140f_media_shutdown_directory()
141{
142 DIRECTORY_CHECKED=
143}
144
145############################################################ MAIN
146
147f_dprintf "%s: Successfully loaded." media/directory.subr
148
149fi # ! $_MEDIA_DIRECTORY_SUBR