annotate sources/configs/m68k @ 225:957c1c3b7766

An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which I haven't got an emulator for, and qemu's m68k support doesn't include a non-coldfire board yet.
author Rob Landley <rob@landley.net>
date Thu, 11 Oct 2007 01:48:07 -0500
parents
children d2311b2989aa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
225
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
1 KARCH=m68k
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
2 KERNEL_PATH=vmlinux
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
3 GCC_FLAGS= #"--with-float=soft"
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
4 BINUTILS_FLAGS=
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
5 QEMU_TEST= #$KARCH
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
6 emulator_command()
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
7 {
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
8 # echo qemu-system-arm -M versatilepb -nographic -no-reboot -hda "$1" \
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
9 # -kernel "$2" -append "'$3 root=/dev/sda console=ttyAMA0'" \
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
10 # -net nic,model=rtl8139 -net user
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
11 echo
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
12 }
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
13
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
14 # Write out uClibc .config file.
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
15
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
16 cat > "${WORK}"/miniconfig-uClibc << 'EOF'
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
17 TARGET_m68k=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
18 ARCH_HAS_MMU=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
19 ARCH_USE_MMU=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
20 UCLIBC_HAS_FLOATS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
21 UCLIBC_HAS_FPU=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
22 DOPIC=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
23 HAVE_SHARED=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
24 LDSO_LDD_SUPPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
25 LDSO_CACHE_SUPPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
26 UCLIBC_STATIC_LDCONFIG=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
27 LDSO_RUNPATH=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
28 UCLIBC_CTOR_DTOR=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
29 UCLIBC_HAS_THREADS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
30 LINUXTHREADS_OLD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
31 UCLIBC_HAS_LFS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
32 MALLOC_GLIBC_COMPAT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
33 UCLIBC_DYNAMIC_ATEXIT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
34 UCLIBC_SUSV3_LEGACY=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
35 UCLIBC_HAS_SHADOW=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
36 UCLIBC_HAS___PROGNAME=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
37 UNIX98PTY_ONLY=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
38 ASSUME_DEVPTS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
39 UCLIBC_HAS_TM_EXTENSIONS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
40 UCLIBC_HAS_TZ_CACHING=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
41 UCLIBC_HAS_TZ_FILE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
42 UCLIBC_HAS_TZ_FILE_READ_MANY=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
43 UCLIBC_HAS_RPC=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
44 UCLIBC_HAS_STRING_GENERIC_OPT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
45 UCLIBC_HAS_STRING_ARCH_OPT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
46 UCLIBC_HAS_CTYPE_TABLES=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
47 UCLIBC_HAS_CTYPE_SIGNED=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
48 UCLIBC_HAS_STDIO_GETC_MACRO=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
49 UCLIBC_HAS_STDIO_PUTC_MACRO=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
50 UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
51 UCLIBC_HAS_ERRNO_MESSAGES=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
52 UCLIBC_HAS_SIGNUM_MESSAGES=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
53 UCLIBC_HAS_GNU_GETOPT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
54 UCLIBC_HAS_GNU_GETSUBOPT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
55 UCLIBC_HAS_REGEX=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
56 UCLIBC_HAS_REGEX_OLD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
57 UCLIBC_HAS_FNMATCH=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
58 UCLIBC_HAS_FNMATCH_OLD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
59 UCLIBC_HAS_GLOB=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
60 UCLIBC_HAS_GNU_GLOB=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
61 UCLIBC_BUILD_RELRO=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
62 UCLIBC_BUILD_NOEXECSTACK=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
63 DOSTRIP=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
64 EOF
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
65
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
66 # Write out Linux kernel .config file
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
67
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
68 cat > "${WORK}"/miniconfig-linux << 'EOF'
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
69 CONFIG_EXPERIMENTAL=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
70 CONFIG_LOCALVERSION_AUTO=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
71 CONFIG_SWAP=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
72 CONFIG_SYSVIPC=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
73 CONFIG_SYSFS_DEPRECATED=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
74 CONFIG_BLK_DEV_INITRD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
75 CONFIG_CC_OPTIMIZE_FOR_SIZE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
76 CONFIG_IOSCHED_AS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
77 CONFIG_IOSCHED_DEADLINE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
78 CONFIG_IOSCHED_CFQ=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
79 CONFIG_AMIGA=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
80 CONFIG_M68020=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
81 CONFIG_M68030=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
82 CONFIG_M68040=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
83 CONFIG_BINFMT_ELF=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
84 CONFIG_BINFMT_AOUT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
85 CONFIG_ZORRO=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
86 CONFIG_PROC_HARDWARE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
87 CONFIG_NET=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
88 CONFIG_PACKET=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
89 CONFIG_UNIX=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
90 CONFIG_INET=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
91 CONFIG_INET_XFRM_MODE_TRANSPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
92 CONFIG_INET_XFRM_MODE_TUNNEL=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
93 CONFIG_INET_XFRM_MODE_BEET=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
94 CONFIG_INET_DIAG=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
95 CONFIG_STANDALONE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
96 CONFIG_PREVENT_FIRMWARE_BUILD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
97 CONFIG_BLK_DEV=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
98 CONFIG_AMIGA_FLOPPY=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
99 CONFIG_BLK_DEV_RAM=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
100 CONFIG_CDROM_PKTCDVD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
101 CONFIG_MISC_DEVICES=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
102 CONFIG_SCSI=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
103 CONFIG_SCSI_PROC_FS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
104 CONFIG_BLK_DEV_SD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
105 CONFIG_CHR_DEV_ST=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
106 CONFIG_BLK_DEV_SR=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
107 CONFIG_SCSI_CONSTANTS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
108 CONFIG_SCSI_LOWLEVEL=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
109 CONFIG_A3000_SCSI=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
110 CONFIG_A2091_SCSI=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
111 CONFIG_GVP11_SCSI=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
112 CONFIG_NETDEVICES=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
113 CONFIG_NETDEV_1000=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
114 CONFIG_NETDEV_10000=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
115 CONFIG_INPUT_MOUSEDEV_PSAUX=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
116 CONFIG_INPUT_KEYBOARD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
117 CONFIG_KEYBOARD_ATKBD=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
118 CONFIG_INPUT_MOUSE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
119 CONFIG_MOUSE_PS2=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
120 CONFIG_SERIO_SERPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
121 CONFIG_LEGACY_PTYS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
122 CONFIG_HW_RANDOM=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
123 CONFIG_HWMON=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
124 CONFIG_DAB=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
125 CONFIG_VIDEO_OUTPUT_CONTROL=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
126 CONFIG_FB=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
127 CONFIG_FB_MODE_HELPERS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
128 CONFIG_FB_AMIGA=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
129 CONFIG_FB_AMIGA_OCS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
130 CONFIG_FB_AMIGA_ECS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
131 CONFIG_FB_AMIGA_AGA=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
132 CONFIG_HID_SUPPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
133 CONFIG_HID=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
134 CONFIG_HID_DEBUG=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
135 CONFIG_USB_SUPPORT=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
136 CONFIG_AMIGA_BUILTIN_SERIAL=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
137 CONFIG_EXT2_FS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
138 CONFIG_MINIX_FS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
139 CONFIG_INOTIFY=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
140 CONFIG_INOTIFY_USER=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
141 CONFIG_MSDOS_FS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
142 CONFIG_PROC_KCORE=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
143 CONFIG_NFS_FS=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
144 CONFIG_NLS_CODEPAGE_437=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
145 CONFIG_ENABLE_MUST_CHECK=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
146 CONFIG_CRC32=y
957c1c3b7766 An m68k config. Note that the kernel miniconfig is based on defconfig (an amiga kernel) which
Rob Landley <rob@landley.net>
parents:
diff changeset
147 EOF