Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-08-18 04:30:05 +0300
committerkcgen <kcgen@users.noreply.github.com>2022-08-22 00:08:04 +0300
commitb4b930cf833627fc35f9e96ef610cfd7fa6fb187 (patch)
tree771c2c9889a2e710258b08dbe189441f184da0ee
parent0e276ff0e7e94868d13292abe6c1ea5ad3b5b1b5 (diff)
Add built-in DOS tools as a "resources" automountkc/automounts-1
Co-authored-by: Antti Peltola <antti.peltola@kolumbus.fi> Co-authored-by: Burrito78 <61995128+Burrito78@users.noreply.github.com>
-rw-r--r--contrib/resources/drives/meson.build7
-rw-r--r--contrib/resources/drives/y.conf21
-rw-r--r--contrib/resources/drives/y/DOS/DEBUG.COMbin0 -> 22544 bytes
-rw-r--r--contrib/resources/drives/y/DOS/DELTREE.COMbin0 -> 3339 bytes
-rw-r--r--contrib/resources/drives/y/DOS/XCOPY.EXEbin0 -> 15538 bytes
-rw-r--r--contrib/resources/meson.build1
6 files changed, 29 insertions, 0 deletions
diff --git a/contrib/resources/drives/meson.build b/contrib/resources/drives/meson.build
new file mode 100644
index 000000000..568679096
--- /dev/null
+++ b/contrib/resources/drives/meson.build
@@ -0,0 +1,7 @@
+resource_dirs = [
+ 'y',
+]
+
+resource_files = [
+ 'y.conf',
+]
diff --git a/contrib/resources/drives/y.conf b/contrib/resources/drives/y.conf
new file mode 100644
index 000000000..4af678af2
--- /dev/null
+++ b/contrib/resources/drives/y.conf
@@ -0,0 +1,21 @@
+# A directory holding 3rd party DOS tools that which can be manually
+# mounted or automounted using the "[dosbox] automount = true" setting.
+
+[drive]
+
+# Type of drive, where the possible values are
+# per the "mount -t" argument: dir, floppy, cdrom, or overlay.
+type = dir
+
+# Label of the drive, where the values are per the "mount -label" argument.
+label = addons
+
+# Path settings to apply, with the value formatted per the PATH command.
+path = %path%;y:\dos
+
+# Should the result of the mount command be displayed in the console?
+verbose = false
+
+# Override the drive to which this directory is mounted (default is empty).
+# Note: If changed, update the path above with your new drive letter.
+override_drive =
diff --git a/contrib/resources/drives/y/DOS/DEBUG.COM b/contrib/resources/drives/y/DOS/DEBUG.COM
new file mode 100644
index 000000000..4385bd871
--- /dev/null
+++ b/contrib/resources/drives/y/DOS/DEBUG.COM
Binary files differ
diff --git a/contrib/resources/drives/y/DOS/DELTREE.COM b/contrib/resources/drives/y/DOS/DELTREE.COM
new file mode 100644
index 000000000..d15d8e800
--- /dev/null
+++ b/contrib/resources/drives/y/DOS/DELTREE.COM
Binary files differ
diff --git a/contrib/resources/drives/y/DOS/XCOPY.EXE b/contrib/resources/drives/y/DOS/XCOPY.EXE
new file mode 100644
index 000000000..1f58ab85f
--- /dev/null
+++ b/contrib/resources/drives/y/DOS/XCOPY.EXE
Binary files differ
diff --git a/contrib/resources/meson.build b/contrib/resources/meson.build
index 7c939cc06..afde5c809 100644
--- a/contrib/resources/meson.build
+++ b/contrib/resources/meson.build
@@ -1,4 +1,5 @@
resource_dirs = [
+ 'drives',
'freedos-cpi',
'freedos-keyboard',
'glshaders',