Deleted Added
sdiff udiff text old ( 252987 ) new ( 253333 )
full compact
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 $
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]
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.
123#
124f_media_get_directory()
125{
126 local dev="$1" file="$2" probe_only="$3" path
127
128 f_dprintf "f_media_get_directory: dev=[%s] file=[%s] probe_only=%s" \
129 "$dev" "$file" "$probe_only"
130
131 device_$dev get private path
132 f_media_generic_get "$path" "$file" "$probe_only"
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