Linux Audio

Check our new training course

Loading...
v4.17
 1# SPDX-License-Identifier: GPL-2.0
 2config H8300
 3        def_bool y
 
 
 
 
 4	select GENERIC_ATOMIC64
 5	select HAVE_UID16
 6	select VIRT_TO_BUS
 7	select GENERIC_IRQ_SHOW
 8	select FRAME_POINTER
 9	select GENERIC_CPU_DEVICES
10	select MODULES_USE_ELF_RELA
11	select GENERIC_CLOCKEVENTS
12	select CLKDEV_LOOKUP
13	select COMMON_CLK
14	select ARCH_WANT_FRAME_POINTERS
15	select OF
16	select OF_IRQ
17	select OF_EARLY_FLATTREE
18	select HAVE_MEMBLOCK
19	select TIMER_OF
20	select H8300_TMR8
21	select HAVE_KERNEL_GZIP
22	select HAVE_KERNEL_LZO
23	select HAVE_ARCH_KGDB
24	select HAVE_ARCH_HASH
25	select CPU_NO_EFFICIENT_FFS
26	select DMA_DIRECT_OPS
27
28config CPU_BIG_ENDIAN
29	def_bool y
30
31config RWSEM_GENERIC_SPINLOCK
32	def_bool y
33
34config GENERIC_HWEIGHT
35	def_bool y
36
37config NO_IOPORT_MAP
38	def_bool y
39
40config GENERIC_CSUM
41        def_bool y
42
43config HZ
44	int
45	default 100
46
47config NR_CPUS
48	int
49	default 1
50
51source "init/Kconfig"
52
53source "kernel/Kconfig.freezer"
54
55source "arch/h8300/Kconfig.cpu"
56
57menu "Kernel Features"
58
59source "kernel/Kconfig.preempt"
60
61source "mm/Kconfig"
62
63endmenu
64
65menu "Executable file formats"
66
67source "fs/Kconfig.binfmt"
68
69endmenu
70
71source "net/Kconfig"
72
73source "drivers/Kconfig"
74
75source "fs/Kconfig"
76
77menu "Kernel hacking"
78
79source "lib/Kconfig.debug"
80
81endmenu
82
83source "security/Kconfig"
84
85source "crypto/Kconfig"
86
87source "lib/Kconfig"
v5.9
 1# SPDX-License-Identifier: GPL-2.0
 2config H8300
 3        def_bool y
 4	select ARCH_32BIT_OFF_T
 5	select ARCH_HAS_BINFMT_FLAT
 6	select BINFMT_FLAT_ARGVP_ENVP_ON_STACK
 7	select BINFMT_FLAT_OLD_ALWAYS_RAM
 8	select GENERIC_ATOMIC64
 9	select HAVE_UID16
10	select VIRT_TO_BUS
11	select GENERIC_IRQ_SHOW
12	select FRAME_POINTER
13	select GENERIC_CPU_DEVICES
14	select MODULES_USE_ELF_RELA
15	select GENERIC_CLOCKEVENTS
 
16	select COMMON_CLK
17	select ARCH_WANT_FRAME_POINTERS
18	select OF
19	select OF_IRQ
20	select OF_EARLY_FLATTREE
 
21	select TIMER_OF
22	select H8300_TMR8
23	select HAVE_KERNEL_GZIP
24	select HAVE_KERNEL_LZO
25	select HAVE_ARCH_KGDB
26	select HAVE_ARCH_HASH
27	select CPU_NO_EFFICIENT_FFS
28	select UACCESS_MEMCPY
29
30config CPU_BIG_ENDIAN
31	def_bool y
32
 
 
 
33config GENERIC_HWEIGHT
34	def_bool y
35
36config NO_IOPORT_MAP
37	def_bool y
38
39config GENERIC_CSUM
40        def_bool y
41
42config HZ
43	int
44	default 100
45
46config NR_CPUS
47	int
48	default 1
49
 
 
 
 
50source "arch/h8300/Kconfig.cpu"