blob: 3ea9b3abbf6d88f512c33707d19ff9effa32b961 (
plain)
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
|
/* Include Linux' contributed autoconf file */
#include_next <linux/autoconf.h>
#undef CONFIG_MODULES
/* Because we don't need INET support */
#undef CONFIG_INET
#undef CONFIG_XFRM
#undef CONFIG_IP_NF_IPTABLES
#undef CONFIG_IP_FIB_HASH
#undef CONFIG_NETFILTER_XT_MATCH_STATE
#undef CONFIG_INET_XFRM_MODE_TRANSPORT
#undef CONFIG_INET_XFRM_MODE_TUNNEL
#undef CONFIG_IP_NF_CONNTRACK
#undef CONFIG_TCP_CONG_BIC
#undef CONFIG_IP_NF_FILTER
#undef CONFIG_IP_NF_FTP
#undef CONFIG_IP_NF_TARGET_LOG
/* No highmem for our drivers */
#undef CONFIG_HIGHMEM
#undef CONFIG_HIGHMEM4G
#define CONFIG_NOHIGHMEM 1
/* No PROC fs for us */
#undef CONFIG_PROC_FS
/* Also, no sysFS */
#undef CONFIG_SYSFS
/* No NFS support */
#undef CONFIG_ROOT_NFS
/* We don't support hotplug */
#undef CONFIG_HOTPLUG
/* No Sysctl */
#undef CONFIG_SYSCTL
/* No power management */
#undef CONFIG_PM
/* irqs assigned statically */
#undef CONFIG_GENERIC_IRQ_PROBE
/* No message-signalled interrupts for PCI. */
#undef CONFIG_PCI_MSI
/* We don't need event counters, because we don't have /proc/vmstat */
#undef CONFIG_VM_EVENT_COUNTERS
#define WANT_PAGE_VIRTUAL
#define CONFIG_RWSEM_GENERIC_SPINLOCK
#define CONFIG_CPU_SA1100
#define CONFIG_CPU_ARM710
#define CONFIG_CPU_V6
#define CONFIG_CPU_TLB_V6
#undef CONFIG_SECCOMP
//#undef CONFIG_SMP
#undef CONFIG_KPROBES
#undef CONFIG_HUGETLB_PAGE
#undef CONFIG_HUGETLBFS
#define CONFIG_VECTORS_BASE 0
|