hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
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
config BR2_PACKAGE_MYSQL
   bool "mysql support"
   depends on BR2_INSTALL_LIBSTDCPP
   depends on BR2_USE_MMU # fork()
   depends on BR2_TOOLCHAIN_HAS_THREADS
   help
     Select the desired mysql provider.
 
if BR2_PACKAGE_MYSQL
 
choice
   prompt "mysql variant"
   default BR2_PACKAGE_ORACLE_MYSQL
   help
     Select either the oracle mysql server or the mariadb server
 
config BR2_PACKAGE_MARIADB
   bool "mariadb"
   depends on BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS
   select BR2_PACKAGE_LIBAIO
   select BR2_PACKAGE_LIBXML2
   select BR2_PACKAGE_NCURSES
   select BR2_PACKAGE_OPENSSL
   select BR2_PACKAGE_READLINE
   select BR2_PACKAGE_HAS_MYSQL
   help
     MariaDB is one of the most popular database servers in the
     world.  It's made by the original developers of MySQL and
     guaranteed to stay open source.
 
     http://www.mariadb.org/
 
config BR2_PACKAGE_ORACLE_MYSQL
   bool "oracle mysql"
   select BR2_PACKAGE_NCURSES
   select BR2_PACKAGE_READLINE
   select BR2_PACKAGE_HAS_MYSQL
   help
     The MySQL Open Source Database System
 
     http://www.mysql.com/
 
endchoice
 
if BR2_PACKAGE_MARIADB
 
config BR2_PACKAGE_MARIADB_SERVER
   bool "mariadb server"
   help
     Install the mariadb server on the target.
 
endif
 
if BR2_PACKAGE_ORACLE_MYSQL
 
config BR2_PACKAGE_ORACLE_MYSQL_SERVER
   bool "oracle mysql server"
   help
     Install the MySQL server on the target.
 
endif
 
config BR2_PACKAGE_HAS_MYSQL
   bool
 
config BR2_PACKAGE_PROVIDES_MYSQL
   string
   default "mariadb"      if BR2_PACKAGE_MARIADB
   default "oracle-mysql" if BR2_PACKAGE_ORACLE_MYSQL
 
endif
 
comment "mysql needs a toolchain w/ C++, threads"
   depends on BR2_USE_MMU
   depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS