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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* Dummy autoconf.h file... most of this is unimportant for just compiling a booter.
*/
/*
* Code maturity level options
*/
#define CONFIG_EXPERIMENTAL 1
/*
* Loadable module support
*/
#define CONFIG_MODULES 1
#define CONFIG_MODVERSIONS 1
#define CONFIG_KERNELD 1
/*
* Platform dependant setup
*/
#define CONFIG_AMIGA 1
#define CONFIG_ATARI 1
#define CONFIG_MAC 1
/*
* Processor type
*/
#define CONFIG_M68020 1
#define CONFIG_M68030 1
#define CONFIG_M68040 1
#undef CONFIG_M68060
#define CONFIG_ADVANCED_CPU 1
#define CONFIG_RMW_INSNS 1
/*
* General setup
*/
#define CONFIG_NET 1
#define CONFIG_SYSVIPC 1
#define CONFIG_BINFMT_AOUT 1
#define CONFIG_BINFMT_ELF 1
#define CONFIG_KERNEL_ELF 1
#define CONFIG_ZORRO 1
#define CONFIG_AMIFB_OCS 1
#define CONFIG_AMIFB_ECS 1
#define CONFIG_AMIFB_AGA 1
#undef CONFIG_FB_CYBER
/*
* Floppy, IDE, and other block devices
*/
#define CONFIG_BLK_DEV_FD 1
#undef CONFIG_BLK_DEV_IDE
#undef CONFIG_AMIGA_Z2RAM
#undef CONFIG_ATARI_ACSI
/*
* Additional Block Devices
*/
#undef CONFIG_BLK_DEV_LOOP
#undef CONFIG_BLK_DEV_MD
#define CONFIG_BLK_DEV_RAM 1
#define CONFIG_BLK_DEV_INITRD 1
/*
* Networking options
*/
#undef CONFIG_FIREWALL
#undef CONFIG_NET_ALIAS
#define CONFIG_INET 1
#undef CONFIG_IP_FORWARD
#undef CONFIG_IP_MULTICAST
#undef CONFIG_IP_ACCT
/*
* (it is safe to leave these untouched)
*/
#undef CONFIG_INET_PCTCP
#undef CONFIG_INET_RARP
#undef CONFIG_NO_PATH_MTU_DISCOVERY
#define CONFIG_IP_NOSR 1
#undef CONFIG_SKB_LARGE
/*
*
*/
#undef CONFIG_IPX
#undef CONFIG_ATALK
#undef CONFIG_AX25
#undef CONFIG_BRIDGE
#undef CONFIG_NETLINK
/*
* SCSI support
*/
#define CONFIG_SCSI 1
/*
* SCSI support type (disk, tape, CD-ROM)
*/
#define CONFIG_BLK_DEV_SD 1
#define CONFIG_CHR_DEV_ST 1
#define CONFIG_BLK_DEV_SR 1
#undef CONFIG_CHR_DEV_SG
/*
* Some SCSI devices (e.g. CD jukebox) support multiple LUNs
*/
#undef CONFIG_SCSI_MULTI_LUN
#define CONFIG_SCSI_CONSTANTS 1
/*
* SCSI low-level drivers
*/
#define CONFIG_A3000_SCSI 1
#define CONFIG_A2091_SCSI 1
#define CONFIG_GVP11_SCSI 1
#undef CONFIG_CYBERSTORM_SCSI
#undef CONFIG_CYBERSTORMII_SCSI
#undef CONFIG_BLZ2060_SCSI
#undef CONFIG_BLZ1230_SCSI
#undef CONFIG_FASTLANE_SCSI
#define CONFIG_ATARI_SCSI 1
#undef CONFIG_ATARI_SCSI_TOSHIBA_DELAY
/*
* Network device support
*/
#define CONFIG_NETDEVICES 1
#undef CONFIG_DUMMY
#undef CONFIG_SLIP
#undef CONFIG_PPP
#undef CONFIG_EQUALIZER
#undef CONFIG_ARIADNE
#undef CONFIG_A2065
#undef CONFIG_HYDRA
#undef CONFIG_ATARILANCE
/*
* Filesystems
*/
#undef CONFIG_QUOTA
#undef CONFIG_LOCK_MANDATORY
#define CONFIG_MINIX_FS 1
#undef CONFIG_EXT_FS
#define CONFIG_EXT2_FS 1
#undef CONFIG_XIA_FS
#define CONFIG_FAT_FS 1
#define CONFIG_MSDOS_FS 1
#undef CONFIG_VFAT_FS
#undef CONFIG_UMSDOS_FS
#undef CONFIG_MSDOS_PARTITION
#define CONFIG_PROC_FS 1
#define CONFIG_NFS_FS 1
#undef CONFIG_ROOT_NFS
#undef CONFIG_SMB_FS
#undef CONFIG_ISO9660_FS
#undef CONFIG_HPFS_FS
#undef CONFIG_SYSV_FS
#undef CONFIG_AFFS_FS
#undef CONFIG_UFS_FS
/*
* Character devices
*/
#undef CONFIG_PRINTER
#undef CONFIG_MULTIFACE_III_LP
#define CONFIG_AMIGAMOUSE 1
#define CONFIG_ATARIMOUSE 1
#undef CONFIG_ATARI_MFPSER
#undef CONFIG_ATARI_SCC
#undef CONFIG_ATARI_MIDI
#define CONFIG_AMIGA_BUILTIN_SERIAL 1
#undef CONFIG_GVPIOEXT
#undef CONFIG_MULTIFACE_III_TTY
#undef CONFIG_USERIAL
#undef CONFIG_WATCHDOG
#undef CONFIG_UMISC
/*
* Sound support
*/
#undef CONFIG_SOUND
/*
* Kernel hacking
*/
#undef CONFIG_PROFILE
|