hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
config BR2_PACKAGE_USBMOUNT
   bool "usbmount"
   depends on BR2_USE_MMU # lockfile-progs -> liblockfile
   depends on BR2_PACKAGE_HAS_UDEV
   select BR2_PACKAGE_LOCKFILE_PROGS
   help
     The usbmount package automatically mounts USB mass storage
     devices when they are plugged in, and unmounts them when
     they are removed.
 
     https://wiki.debian.org/usbmount
 
comment "usbmount requires udev to be enabled"
   depends on BR2_USE_MMU
   depends on !BR2_PACKAGE_HAS_UDEV
 
if BR2_PACKAGE_USBMOUNT
 
config BR2_PACKAGE_USBMOUNT_SYNC_MOUNT
   bool "mount with sync option"
   default n
   help
     The "sync" option may not be a good choice to use with flash
     drives, as it forces a greater amount of writing operating on
     the drive. This makes the writing speed considerably lower
     and also leads to a faster wear out of the disk.
 
     If you omit it, don't forget to use the command "sync" to
     synchronize the data on your disk before removing the drive
     or you may experience data loss.
 
endif