Merge remote-tracking branch 'alioth/master' into sid

This commit is contained in:
Ben Hutchings 2015-09-26 01:18:13 +01:00
commit cab5840aaa
230 changed files with 1473 additions and 279577 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
sys.path.append(sys.path[0] + "/../lib/python")

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
import sys
sys.path.append('debian/lib/python')
@ -220,7 +220,7 @@ class CheckImage(object):
usage = (float(size)/value) * 100.0
out.write('Image size %d/%d, using %.2f%%. ' % (size, value, usage))
if size > value:
sys.write('Too large. Refusing to continue.\n')
out.write('Too large. Refusing to continue.\n')
return 1
elif usage >= 99.0:
out.write('Under 1%% space in %s. ' % self.changelog.distribution)

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
sys.path.append("debian/lib/python")
@ -160,9 +160,9 @@ class Gencontrol(Base):
if os.getenv('DEBIAN_KERNEL_DISABLE_INSTALLER'):
if self.changelog[0].distribution == 'UNRELEASED':
import warnings
warnings.warn(u'Disable installer modules on request (DEBIAN_KERNEL_DISABLE_INSTALLER set)')
warnings.warn('Disable installer modules on request (DEBIAN_KERNEL_DISABLE_INSTALLER set)')
else:
raise RuntimeError(u'Unable to disable installer modules in release build (DEBIAN_KERNEL_DISABLE_INSTALLER set)')
raise RuntimeError('Unable to disable installer modules in release build (DEBIAN_KERNEL_DISABLE_INSTALLER set)')
else:
# Add udebs using kernel-wedge
installer_def_dir = 'debian/installer'
@ -344,10 +344,10 @@ class Gencontrol(Base):
if os.getenv('DEBIAN_KERNEL_DISABLE_DEBUG'):
if self.changelog[0].distribution == 'UNRELEASED':
import warnings
warnings.warn(u'Disable debug infos on request (DEBIAN_KERNEL_DISABLE_DEBUG set)')
warnings.warn('Disable debug infos on request (DEBIAN_KERNEL_DISABLE_DEBUG set)')
build_debug = False
else:
raise RuntimeError(u'Unable to disable debug infos in release build (DEBIAN_KERNEL_DISABLE_DEBUG set)')
raise RuntimeError('Unable to disable debug infos in release build (DEBIAN_KERNEL_DISABLE_DEBUG set)')
if build_debug:
makeflags['DEBUG'] = True

25
debian/bin/genorig.py vendored
View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
sys.path.append("debian/lib/python")
@ -8,6 +8,7 @@ import os.path
import re
import shutil
import subprocess
import time
from debian_linux.debian import Changelog, VersionLinux
from debian_linux.patches import PatchSeries
@ -46,8 +47,19 @@ class Main(object):
self.upstream_extract(self.input_files[0])
if len(self.input_files) > 1:
self.upstream_patch(self.input_files[1])
# debian_patch() will change file mtimes. Capture the
# original release time so we can apply it to the final
# tarball. Note this doesn't work in case we apply an
# upstream patch, as that doesn't carry a release time.
orig_date = time.strftime(
"%a, %d %b %Y %H:%M:%S +0000",
time.gmtime(
os.stat(os.path.join(self.dir, self.orig, 'Makefile'))
.st_mtime))
self.debian_patch()
self.tar()
self.tar(orig_date)
finally:
shutil.rmtree(self.dir)
@ -105,7 +117,7 @@ class Main(object):
series = PatchSeries(name, "debian/patches", fp)
series(dir=os.path.join(self.dir, self.orig))
def tar(self):
def tar(self, orig_date):
out = os.path.join("../orig", self.orig_tar)
try:
os.mkdir("../orig")
@ -117,9 +129,12 @@ class Main(object):
except OSError:
pass
self.log("Generate tarball %s\n" % out)
cmdline = ['tar -caf', out, '-C', self.dir, self.orig]
cmdline = '''(cd '%s' && find '%s' -print0) |
LC_ALL=C sort -z |
tar -C '%s' --no-recursion --null -T - --mtime '%s' -caf '%s'
''' % (self.dir, self.orig, self.dir, orig_date, out)
try:
if os.spawnv(os.P_WAIT, '/bin/sh', ['sh', '-c', ' '.join(cmdline)]):
if os.spawnv(os.P_WAIT, '/bin/sh', ['sh', '-c', cmdline]):
raise RuntimeError("Can't patch source")
os.chmod(out, 0o644)
except:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import optparse
import os.path
@ -11,10 +11,10 @@ from debian_linux.kconfig import *
def merge(output, configs, overrides):
kconfig = KconfigFile()
for c in configs:
kconfig.read(file(c))
for key, value in overrides.iteritems():
kconfig.read(open(c))
for key, value in overrides.items():
kconfig.set(key, value)
file(output, "w").write(str(kconfig))
open(output, "w").write(str(kconfig))
def opt_callback_dict(option, opt, value, parser):

91
debian/changelog vendored
View File

@ -1,3 +1,94 @@
linux (4.2.1-1) unstable; urgency=medium
* New upstream stable update:
https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.2.1
[ Ben Hutchings ]
* [mips*el/loongson-3] udeb: Add fb-modules containing radeon driver
(Closes: #776274)
* [hppa/parisc64-smp,[mips*el/loongson-3] udeb: Add i2c-modules and
make fb-modules depend on it rather than including I2C modules
directly
* workqueue: Make flush_workqueue() available again to non GPL modules
(Closes: #798311)
* vfs: Fix possible escape from mount namespace (CVE-2015-2925):
- dcache: Handle escaped paths in prepend_path
- dcache: Reduce the scope of i_lock in d_splice_alias
- vfs: Test for and handle paths that are unreachable from their mnt_root
* aufs: Update support patches to aufs4.x-rcN-20150921
- mmap: Fix races in madvise_remove() and sys_msync() (Closes: #796036)
* RDS: verify the underlying transport exists before creating a connection
(CVE-2015-6937)
* Set ABI to 1
* e1000e: Fix tight loop implementation of systime read algorithm
* mmc: Drop "eMMC: Don't initialize partitions on RPMB flagged areas", as
upstream commit 4e93b9a6abc0 ("mmc: card: Don't access RPMB partitions for
normal read/write") looks like a cleaner solution
* mm: Change ZBUD back to built-in, as it's not really useful as a module
* USB: whiteheat: fix potential null-deref at probe (CVE-2015-5257)
[ Aurelien Jarno ]
* [mips*el] Fix BPF assembly code for pre-R2 CPUs. (fixes FTBFS)
-- Ben Hutchings <ben@decadent.org.uk> Fri, 25 Sep 2015 18:18:01 +0100
linux (4.2-1~exp1) experimental; urgency=medium
* New upstream release: http://kernelnewbies.org/Linux_4.2
[ Ben Hutchings ]
* Remove all support for ia64 (Closes: #679545, #691576, #728706)
* [s390x] Compile with gcc-4.9 (Closes: #796845)
* linux-source: Depend on xz-utils, not bzip2 (Closes: #796940)
* gfs2: Make statistics unsigned, suitable for use with do_div()
(fixes FTBFS on mipsel,m68k)
* [amd64] Enable KALLSYMS_ALL (Closes: #660288), LIVEPATCH
* Re-enable various config options disabled by name changes in 4.2:
- SUNRPC_XPRT_RDMA replaced SUNRPC_XPRT_RDMA_{CLIENT,SERVER}
- [mips*el/loongson*] LOONGSON64 replaced LOONGSON
- [x86] COMEDI_8255_SA replaced COMEDI_8255
* [sparc] Remove linux-image, linux-header and udeb packages, as they
are redundant with sparc64 and neither is an official port
* Fix last issue that prevents a reproducible build (Closes: #769844):
- DocBook: Use a fixed encoding for output
* debian/bin,debian/control,debian/lib/python,debian/rules.real,
linux-support: Use Python 3
* debian/bin/genorig.py: Make orig tarballs reproducible
-- Ben Hutchings <ben@decadent.org.uk> Mon, 31 Aug 2015 02:08:19 +0100
linux (4.2~rc8-1~exp1) experimental; urgency=medium
* New upstream release candidate
[ Aurelien Jarno ]
* [mips*] Build ext4 as module. Add core-modules and ext4-modules udeb.
Fixes FTBFS.
* [mips,mips64] Remove r4k-ip22, r5k-ip32 and sb1-bcm91250a flavours.
* [mipsel,mips64el] Remove sb1-bcm91250a flavour.
[ Ben Hutchings ]
* debian/control: Correct build-dependency on xz-utils, needed on all arches
* Fix more issues that prevent a reproducible build:
- Set LC_ALL=C.UTF-8
- Avoid creating man pages in source tree
-- Ben Hutchings <ben@decadent.org.uk> Mon, 24 Aug 2015 12:00:54 +0100
linux (4.2~rc6-1~exp1) experimental; urgency=medium
* New upstream release candidate
[ Ben Hutchings ]
* Adjust for migration to git:
- Update .gitignore files
- debian/control: Update Vcs-* fields
- README.Debian, README.source: Update references to svn
* [rt] Disable until it is updated for 4.2 or later
* debian/control: Drop Frederik Schüler from Uploaders
-- Ben Hutchings <ben@decadent.org.uk> Wed, 12 Aug 2015 20:48:00 +0200
linux (4.1.6-1) unstable; urgency=medium
* New upstream stable update:

26
debian/config/config vendored
View File

@ -265,8 +265,8 @@ CONFIG_ALLOW_DEV_COREDUMP=y
##
CONFIG_BCMA=m
CONFIG_BCMA_HOST_PCI=y
# CONFIG_BCMA_DRIVER_PCI_HOSTMODE is not set
# CONFIG_BCMA_HOST_SOC is not set
# CONFIG_BCMA_DRIVER_PCI_HOSTMODE is not set
# CONFIG_BCMA_DRIVER_GMAC_CMN is not set
# CONFIG_BCMA_DRIVER_GPIO is not set
# CONFIG_BCMA_DEBUG is not set
@ -312,7 +312,6 @@ CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
##
CONFIG_ZRAM=m
CONFIG_ZRAM_LZ4_COMPRESS=y
# CONFIG_ZRAM_DEBUG is not set
##
## file: drivers/bluetooth/Kconfig
@ -810,7 +809,7 @@ CONFIG_I2C_VIPERBOARD=m
## file: drivers/ide/Kconfig
##
# CONFIG_IDE is not set
#. But for ia64 and m68k flavours that need it
#. But for m68k flavours that need it
CONFIG_IDE_GD=m
CONFIG_IDE_GD_ATA=y
CONFIG_IDE_GD_ATAPI=y
@ -2415,6 +2414,7 @@ CONFIG_MACVLAN=m
CONFIG_MACVTAP=m
CONFIG_IPVLAN=m
CONFIG_VXLAN=m
CONFIG_GENEVE=m
CONFIG_NETCONSOLE=m
CONFIG_NETCONSOLE_DYNAMIC=y
CONFIG_TUN=m
@ -3507,8 +3507,8 @@ CONFIG_PTP_1588_CLOCK_IXP46X=m
##
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
CONFIG_RTC_SYSTOHC=y
# CONFIG_RTC_DEBUG is not set
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
@ -3847,11 +3847,6 @@ CONFIG_STAGING=y
##
# CONFIG_GS_FPGABOOT is not set
##
## file: drivers/staging/i2o/Kconfig
##
# CONFIG_I2O is not set
##
## file: drivers/staging/iio/Kconfig
##
@ -5170,13 +5165,7 @@ CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
## choice: RCU Implementation
CONFIG_TREE_RCU=y
## end choice
# CONFIG_TASKS_RCU is not set
# CONFIG_RCU_USER_QS is not set
CONFIG_RCU_FANOUT=32
# CONFIG_RCU_FANOUT_EXACT is not set
CONFIG_RCU_FAST_NO_HZ=y
CONFIG_RCU_KTHREAD_PRIO=0
# CONFIG_IKCONFIG is not set
@ -5500,7 +5489,7 @@ CONFIG_FRONTSWAP=y
# CONFIG_CMA is not set
CONFIG_MEM_SOFT_DIRTY=y
CONFIG_ZSWAP=y
CONFIG_ZBUD=m
CONFIG_ZBUD=y
CONFIG_ZSMALLOC=m
# CONFIG_PGTABLE_MAPPING is not set
@ -5731,7 +5720,6 @@ CONFIG_SYN_COOKIES=y
CONFIG_NET_IPVTI=m
CONFIG_NET_FOU=m
CONFIG_NET_FOU_IP_TUNNELS=y
CONFIG_GENEVE=m
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
CONFIG_INET_IPCOMP=m
@ -6225,8 +6213,7 @@ CONFIG_SCTP_COOKIE_HMAC_SHA1=y
##
CONFIG_RPCSEC_GSS_KRB5=m
CONFIG_SUNRPC_DEBUG=y
CONFIG_SUNRPC_XPRT_RDMA_CLIENT=m
CONFIG_SUNRPC_XPRT_RDMA_SERVER=m
CONFIG_SUNRPC_XPRT_RDMA=m
##
## file: net/tipc/Kconfig
@ -6451,7 +6438,6 @@ CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=1
CONFIG_SND_HDA_INPUT_JACK=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
CONFIG_SND_HDA_CODEC_ANALOG=y

View File

@ -1,8 +1,5 @@
[abi]
abiname: 2
ignore-changes:
module:sound/firewire/snd-firewire-lib
perf_*
abiname: 1
[base]
arches:
@ -13,7 +10,6 @@ arches:
armhf
hppa
i386
ia64
m68k
mips
mipsel
@ -36,7 +32,7 @@ featuresets:
rt
[featureset-rt_base]
enabled: true
enabled: false
[description]
part-long-up: This kernel is not suitable for SMP (multi-processor,

View File

@ -1,858 +0,0 @@
##
## file: arch/ia64/Kconfig
##
CONFIG_HOTPLUG_CPU=y
CONFIG_SCHED_SMT=y
CONFIG_PERMIT_BSP_REMOVE=y
CONFIG_NODES_SHIFT=8
CONFIG_IA64_MCA_RECOVERY=m
CONFIG_PERFMON=y
CONFIG_IA64_PALINFO=m
CONFIG_KEXEC=y
CONFIG_CRASH_DUMP=y
CONFIG_MSPEC=m
##
## file: arch/ia64/Kconfig.debug
##
## choice: Physical memory granularity
CONFIG_IA64_GRANULE_16MB=y
# CONFIG_IA64_GRANULE_64MB is not set
## end choice
CONFIG_IA64_PRINT_HAZARDS=y
# CONFIG_DISABLE_VHPT is not set
# CONFIG_IA64_DEBUG_CMPXCHG is not set
# CONFIG_IA64_DEBUG_IRQ is not set
##
## file: arch/ia64/hp/sim/Kconfig
##
# CONFIG_HP_SIMETH is not set
# CONFIG_HP_SIMSERIAL is not set
# CONFIG_HP_SIMSCSI is not set
##
## file: block/partitions/Kconfig
##
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
CONFIG_ACORN_PARTITION_EESOX=y
CONFIG_ACORN_PARTITION_ICS=y
CONFIG_ACORN_PARTITION_ADFS=y
CONFIG_ACORN_PARTITION_POWERTEC=y
CONFIG_ACORN_PARTITION_RISCIX=y
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
CONFIG_LDM_DEBUG=y
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
##
## file: drivers/acpi/Kconfig
##
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PCI_SLOT=y
CONFIG_ACPI_CONTAINER=y
##
## file: drivers/ata/Kconfig
##
CONFIG_PATA_ALI=m
CONFIG_PATA_AMD=m
CONFIG_PATA_CMD64X=m
CONFIG_PATA_CS5520=m
CONFIG_PATA_EFAR=m
CONFIG_PATA_HPT366=m
CONFIG_PATA_HPT37X=m
CONFIG_PATA_NETCELL=m
CONFIG_PATA_NS87415=m
CONFIG_PATA_OLDPIIX=m
CONFIG_PATA_PDC2027X=m
CONFIG_PATA_PDC_OLD=m
CONFIG_PATA_SC1200=m
CONFIG_PATA_SERVERWORKS=m
CONFIG_PATA_SIL680=m
CONFIG_PATA_TRIFLEX=m
CONFIG_PATA_VIA=m
CONFIG_PATA_MPIIX=m
CONFIG_PATA_NS87410=m
CONFIG_PATA_OPTI=m
CONFIG_PATA_LEGACY=m
##
## file: drivers/block/Kconfig
##
CONFIG_BLK_CPQ_DA=m
CONFIG_BLK_CPQ_CISS_DA=m
CONFIG_CISS_SCSI_TAPE=y
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
CONFIG_BLK_DEV_SX8=m
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
##
## file: drivers/char/Kconfig
##
CONFIG_SGI_SNSC=y
CONFIG_SGI_TIOCX=y
CONFIG_SGI_MBCS=m
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_DTLK=m
CONFIG_APPLICOM=m
CONFIG_RAW_DRIVER=m
CONFIG_MAX_RAW_DEVS=256
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
CONFIG_MMTIMER=m
##
## file: drivers/char/agp/Kconfig
##
#. Workaround
CONFIG_AGP=y
#. Workaround
CONFIG_AGP_I460=y
#. Workaround
CONFIG_AGP_HP_ZX1=y
#. Workaround
CONFIG_AGP_SGI_TIOCA=y
##
## file: drivers/char/ipmi/Kconfig
##
CONFIG_IPMI_HANDLER=m
# CONFIG_IPMI_PANIC_EVENT is not set
CONFIG_IPMI_DEVICE_INTERFACE=m
CONFIG_IPMI_SI=m
CONFIG_IPMI_WATCHDOG=m
CONFIG_IPMI_POWEROFF=m
##
## file: drivers/cpufreq/Kconfig
##
CONFIG_IA64_ACPI_CPUFREQ=m
##
## file: drivers/firmware/Kconfig
##
CONFIG_DMIID=y
##
## file: drivers/firmware/efi/Kconfig
##
CONFIG_EFI_VARS=y
##
## file: drivers/gpu/drm/Kconfig
##
CONFIG_DRM=m
CONFIG_DRM_TDFX=m
CONFIG_DRM_R128=m
CONFIG_DRM_RADEON=m
CONFIG_DRM_MGA=m
CONFIG_DRM_SIS=m
##
## file: drivers/gpu/drm/i2c/Kconfig
##
CONFIG_DRM_I2C_CH7006=m
CONFIG_DRM_I2C_SIL164=m
##
## file: drivers/gpu/drm/nouveau/Kconfig
##
CONFIG_DRM_NOUVEAU=m
# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set
##
## file: drivers/hid/usbhid/Kconfig
##
CONFIG_USB_HID=m
# CONFIG_HID_PID is not set
##
## file: drivers/hwmon/Kconfig
##
CONFIG_SENSORS_ADM1021=m
CONFIG_SENSORS_ADM1025=m
CONFIG_SENSORS_ADM1026=m
CONFIG_SENSORS_ADM1031=m
CONFIG_SENSORS_ASB100=m
CONFIG_SENSORS_DS1621=m
CONFIG_SENSORS_F71805F=m
CONFIG_SENSORS_GL518SM=m
CONFIG_SENSORS_GL520SM=m
CONFIG_SENSORS_IT87=m
CONFIG_SENSORS_MAX1619=m
CONFIG_SENSORS_LM63=m
CONFIG_SENSORS_LM75=m
CONFIG_SENSORS_LM77=m
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM80=m
CONFIG_SENSORS_LM83=m
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_LM87=m
CONFIG_SENSORS_LM90=m
CONFIG_SENSORS_LM92=m
CONFIG_SENSORS_PC87360=m
CONFIG_SENSORS_PCF8591=m
CONFIG_SENSORS_SIS5595=m
CONFIG_SENSORS_SMSC47M1=m
CONFIG_SENSORS_SMSC47B397=m
CONFIG_SENSORS_VIA686A=m
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83627HF=m
##
## file: drivers/i2c/Kconfig
##
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_STUB=m
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
##
## file: drivers/i2c/busses/Kconfig
##
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
CONFIG_I2C_I801=m
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
CONFIG_I2C_SIS5595=m
CONFIG_I2C_SIS630=m
CONFIG_I2C_SIS96X=m
CONFIG_I2C_VIA=m
CONFIG_I2C_VIAPRO=m
CONFIG_I2C_PARPORT=m
CONFIG_I2C_PARPORT_LIGHT=m
CONFIG_I2C_PCA_ISA=m
CONFIG_SCx200_ACB=m
##
## file: drivers/ide/Kconfig
##
CONFIG_IDE=m
CONFIG_IDE_GD=m
# CONFIG_BLK_DEV_IDECS is not set
CONFIG_BLK_DEV_IDECD=m
CONFIG_BLK_DEV_IDETAPE=m
# CONFIG_IDE_GENERIC is not set
# CONFIG_BLK_DEV_IDEPNP is not set
# CONFIG_BLK_DEV_GENERIC is not set
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SGIIOC4=m
# CONFIG_BLK_DEV_SIIMAGE is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
CONFIG_BLK_DEV_TRM290=m
# CONFIG_BLK_DEV_VIA82CXXX is not set
##
## file: drivers/input/gameport/Kconfig
##
CONFIG_GAMEPORT=m
CONFIG_GAMEPORT_NS558=m
CONFIG_GAMEPORT_L4=m
CONFIG_GAMEPORT_EMU10K1=m
CONFIG_GAMEPORT_FM801=m
##
## file: drivers/input/joystick/Kconfig
##
CONFIG_INPUT_JOYSTICK=y
##
## file: drivers/input/keyboard/Kconfig
##
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_KEYBOARD_SUNKBD=m
CONFIG_KEYBOARD_XTKBD=m
##
## file: drivers/input/misc/Kconfig
##
CONFIG_INPUT_MISC=y
CONFIG_INPUT_UINPUT=m
##
## file: drivers/input/mouse/Kconfig
##
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_SERIAL=m
CONFIG_MOUSE_VSXXXAA=m
##
## file: drivers/input/serio/Kconfig
##
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
##
## file: drivers/input/touchscreen/Kconfig
##
# CONFIG_INPUT_TOUCHSCREEN is not set
##
## file: drivers/isdn/Kconfig
##
CONFIG_ISDN=y
CONFIG_ISDN_CAPI=m
##
## file: drivers/isdn/capi/Kconfig
##
CONFIG_ISDN_CAPI_CAPI20=m
# CONFIG_ISDN_CAPI_MIDDLEWARE is not set
##
## file: drivers/isdn/hardware/avm/Kconfig
##
CONFIG_CAPI_AVM=y
CONFIG_ISDN_DRV_AVMB1_B1PCI=m
CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m
CONFIG_ISDN_DRV_AVMB1_AVM_CS=m
CONFIG_ISDN_DRV_AVMB1_T1PCI=m
CONFIG_ISDN_DRV_AVMB1_C4=m
##
## file: drivers/isdn/hardware/eicon/Kconfig
##
CONFIG_CAPI_EICON=y
CONFIG_ISDN_DIVAS=m
CONFIG_ISDN_DIVAS_BRIPCI=y
CONFIG_ISDN_DIVAS_PRIPCI=y
CONFIG_ISDN_DIVAS_DIVACAPI=m
CONFIG_ISDN_DIVAS_USERIDI=m
CONFIG_ISDN_DIVAS_MAINT=m
##
## file: drivers/media/radio/Kconfig
##
CONFIG_USB_DSBR=m
CONFIG_RADIO_MAXIRADIO=m
##
## file: drivers/mmc/Kconfig
##
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
##
## file: drivers/mmc/card/Kconfig
##
CONFIG_MMC_BLOCK=m
##
## file: drivers/net/Kconfig
##
CONFIG_NET_FC=y
CONFIG_NET_SB1000=m
##
## file: drivers/net/arcnet/Kconfig
##
CONFIG_ARCNET=m
CONFIG_ARCNET_1201=m
CONFIG_ARCNET_1051=m
CONFIG_ARCNET_RAW=m
CONFIG_ARCNET_CAP=m
CONFIG_ARCNET_COM90xx=m
CONFIG_ARCNET_COM90xxIO=m
CONFIG_ARCNET_RIM_I=m
CONFIG_ARCNET_COM20020=m
CONFIG_ARCNET_COM20020_PCI=m
CONFIG_ARCNET_COM20020_CS=m
##
## file: drivers/net/ethernet/Kconfig
##
CONFIG_FEALNX=m
##
## file: drivers/net/ethernet/3com/Kconfig
##
CONFIG_NET_VENDOR_3COM=y
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_3C589=m
CONFIG_VORTEX=m
CONFIG_TYPHOON=m
##
## file: drivers/net/ethernet/8390/Kconfig
##
CONFIG_PCMCIA_AXNET=m
CONFIG_NE2K_PCI=m
CONFIG_PCMCIA_PCNET=m
##
## file: drivers/net/ethernet/adaptec/Kconfig
##
CONFIG_ADAPTEC_STARFIRE=m
##
## file: drivers/net/ethernet/amd/Kconfig
##
CONFIG_AMD8111_ETH=m
CONFIG_PCMCIA_NMCLAN=m
##
## file: drivers/net/ethernet/broadcom/Kconfig
##
CONFIG_B44=m
##
## file: drivers/net/ethernet/dec/tulip/Kconfig
##
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_TULIP=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
CONFIG_PCMCIA_XIRCOM=m
##
## file: drivers/net/ethernet/dlink/Kconfig
##
CONFIG_SUNDANCE=m
# CONFIG_SUNDANCE_MMIO is not set
##
## file: drivers/net/ethernet/fujitsu/Kconfig
##
CONFIG_PCMCIA_FMVJ18X=m
##
## file: drivers/net/ethernet/hp/Kconfig
##
# CONFIG_HP100 is not set
##
## file: drivers/net/ethernet/intel/Kconfig
##
CONFIG_E100=m
##
## file: drivers/net/ethernet/natsemi/Kconfig
##
CONFIG_NATSEMI=m
##
## file: drivers/net/ethernet/nvidia/Kconfig
##
CONFIG_FORCEDETH=m
##
## file: drivers/net/ethernet/realtek/Kconfig
##
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
##
## file: drivers/net/ethernet/sis/Kconfig
##
CONFIG_SIS900=m
##
## file: drivers/net/ethernet/smsc/Kconfig
##
CONFIG_PCMCIA_SMC91C92=m
CONFIG_EPIC100=m
##
## file: drivers/net/ethernet/via/Kconfig
##
CONFIG_VIA_RHINE=m
# CONFIG_VIA_RHINE_MMIO is not set
##
## file: drivers/net/ethernet/xircom/Kconfig
##
CONFIG_PCMCIA_XIRC2PS=m
##
## file: drivers/net/fddi/Kconfig
##
CONFIG_FDDI=y
CONFIG_SKFP=m
##
## file: drivers/net/hippi/Kconfig
##
# CONFIG_HIPPI is not set
##
## file: drivers/net/irda/Kconfig
##
CONFIG_IRTTY_SIR=m
CONFIG_USB_IRDA=m
CONFIG_SIGMATEL_FIR=m
CONFIG_VLSI_FIR=m
##
## file: drivers/net/plip/Kconfig
##
CONFIG_PLIP=m
##
## file: drivers/net/wan/Kconfig
##
CONFIG_WAN=y
CONFIG_LANMEDIA=m
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
CONFIG_FARSYNC=m
CONFIG_DSCC4=m
# CONFIG_DSCC4_PCISYNC is not set
# CONFIG_DSCC4_PCI_RST is not set
CONFIG_DLCI=m
CONFIG_DLCI_MAX=8
##
## file: drivers/net/wireless/Kconfig
##
CONFIG_PCMCIA_RAYCS=m
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_WL3501=m
CONFIG_USB_ZD1201=m
##
## file: drivers/net/wireless/ipw2x00/Kconfig
##
CONFIG_IPW2100=m
CONFIG_IPW2100_MONITOR=y
##
## file: drivers/net/wireless/mwifiex/Kconfig
##
CONFIG_MWIFIEX=m
CONFIG_MWIFIEX_SDIO=m
CONFIG_MWIFIEX_PCIE=m
##
## file: drivers/net/wireless/orinoco/Kconfig
##
CONFIG_HERMES=m
CONFIG_PLX_HERMES=m
CONFIG_TMD_HERMES=m
CONFIG_PCI_HERMES=m
CONFIG_PCMCIA_HERMES=m
CONFIG_PCMCIA_SPECTRUM=m
##
## file: drivers/pci/hotplug/Kconfig
##
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_SGI=y
##
## file: drivers/pcmcia/Kconfig
##
CONFIG_PCCARD=m
CONFIG_PCMCIA=m
CONFIG_CARDBUS=y
CONFIG_YENTA=m
CONFIG_PD6729=m
CONFIG_I82092=m
##
## file: drivers/rtc/Kconfig
##
CONFIG_RTC_DRV_EFI=y
##
## file: drivers/scsi/Kconfig
##
CONFIG_SCSI_ARCMSR=m
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
CONFIG_SCSI_IPR=m
CONFIG_SCSI_IPR_TRACE=y
CONFIG_SCSI_IPR_DUMP=y
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_AM53C974=m
##
## file: drivers/scsi/megaraid/Kconfig.megaraid
##
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
##
## file: drivers/scsi/pcmcia/Kconfig
##
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_QLOGIC=m
CONFIG_PCMCIA_SYM53C500=m
##
## file: drivers/sn/Kconfig
##
CONFIG_SGI_IOC3=m
##
## file: drivers/staging/wlan-ng/Kconfig
##
# CONFIG_PRISM2_USB is not set
##
## file: drivers/tty/Kconfig
##
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_ROCKETPORT=m
# CONFIG_CYCLADES is not set
CONFIG_MOXA_INTELLIO=m
# CONFIG_MOXA_SMARTIO is not set
CONFIG_SYNCLINKMP=m
# CONFIG_ISI is not set
CONFIG_N_HDLC=m
##
## file: drivers/tty/serial/Kconfig
##
CONFIG_SERIAL_SGI_L1_CONSOLE=y
CONFIG_SERIAL_JSM=m
CONFIG_SERIAL_SGI_IOC4=m
CONFIG_SERIAL_SGI_IOC3=m
##
## file: drivers/tty/serial/8250/Kconfig
##
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_CS=m
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y
##
## file: drivers/usb/Kconfig
##
CONFIG_USB=m
CONFIG_USB_USS720=m
##
## file: drivers/usb/host/Kconfig
##
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_OHCI_HCD=m
CONFIG_USB_UHCI_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_SL811_CS=m
##
## file: drivers/video/console/Kconfig
##
CONFIG_VGA_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
##
## file: drivers/video/fbdev/Kconfig
##
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_CIRRUS=m
CONFIG_FB_PM2=m
# CONFIG_FB_PM2_FIFO_DISCONNECT is not set
CONFIG_FB_CYBER2000=m
CONFIG_FB_ASILIANT=y
# CONFIG_FB_IMSTT is not set
CONFIG_FB_S1D13XXX=m
CONFIG_FB_MATROX=m
CONFIG_FB_MATROX_MILLENIUM=y
CONFIG_FB_MATROX_MYSTIQUE=y
CONFIG_FB_MATROX_G=y
CONFIG_FB_MATROX_I2C=m
CONFIG_FB_MATROX_MAVEN=m
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
# CONFIG_FB_RADEON_DEBUG is not set
CONFIG_FB_ATY128=m
CONFIG_FB_ATY=m
CONFIG_FB_ATY_CT=y
CONFIG_FB_ATY_GENERIC_LCD=y
CONFIG_FB_ATY_GX=y
CONFIG_FB_SAVAGE=m
CONFIG_FB_SAVAGE_I2C=y
# CONFIG_FB_SAVAGE_ACCEL is not set
CONFIG_FB_SIS=m
CONFIG_FB_SIS_300=y
CONFIG_FB_SIS_315=y
CONFIG_FB_NEOMAGIC=m
CONFIG_FB_KYRO=m
CONFIG_FB_VOODOO1=m
CONFIG_FB_TRIDENT=m
# CONFIG_FB_VIRTUAL is not set
##
## file: fs/pstore/Kconfig
##
CONFIG_PSTORE=y
##
## file: lib/xz/Kconfig
##
CONFIG_XZ_DEC_IA64=y
##
## file: net/ax25/Kconfig
##
CONFIG_HAMRADIO=y
##
## file: net/ipv6/Kconfig
##
CONFIG_IPV6=y
##
## file: net/irda/Kconfig
##
CONFIG_IRDA=m
CONFIG_IRDA_ULTRA=y
CONFIG_IRDA_CACHE_LAST_LSAP=y
CONFIG_IRDA_FAST_RR=y
##
## file: net/irda/ircomm/Kconfig
##
CONFIG_IRCOMM=m
##
## file: net/irda/irlan/Kconfig
##
CONFIG_IRLAN=m
##
## file: net/irda/irnet/Kconfig
##
CONFIG_IRNET=m
##
## file: security/Kconfig
##
CONFIG_LSM_MMAP_MIN_ADDR=65536
##
## file: sound/drivers/Kconfig
##
CONFIG_SND_DUMMY=m
CONFIG_SND_VIRMIDI=m
CONFIG_SND_MTPAV=m
CONFIG_SND_SERIAL_U16550=m
CONFIG_SND_MPU401=m
##
## file: sound/pci/Kconfig
##
CONFIG_SND_ALS4000=m
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
CONFIG_SND_ATIIXP_MODEM=m
CONFIG_SND_AU8810=m
CONFIG_SND_AU8820=m
CONFIG_SND_AU8830=m
CONFIG_SND_AZT3328=m
CONFIG_SND_BT87X=m
# CONFIG_SND_BT87X_OVERCLOCK is not set
CONFIG_SND_CA0106=m
CONFIG_SND_CMIPCI=m
CONFIG_SND_CS4281=m
CONFIG_SND_CS46XX=m
CONFIG_SND_CS46XX_NEW_DSP=y
CONFIG_SND_EMU10K1=m
CONFIG_SND_EMU10K1X=m
CONFIG_SND_ENS1370=m
CONFIG_SND_ENS1371=m
CONFIG_SND_ES1938=m
CONFIG_SND_ES1968=m
CONFIG_SND_FM801=m
CONFIG_SND_FM801_TEA575X_BOOL=y
CONFIG_SND_HDSP=m
CONFIG_SND_ICE1712=m
CONFIG_SND_ICE1724=m
CONFIG_SND_INTEL8X0=m
CONFIG_SND_INTEL8X0M=m
CONFIG_SND_KORG1212=m
CONFIG_SND_MAESTRO3=m
CONFIG_SND_MIXART=m
CONFIG_SND_NM256=m
CONFIG_SND_RME32=m
CONFIG_SND_RME96=m
CONFIG_SND_RME9652=m
CONFIG_SND_SONICVIBES=m
CONFIG_SND_TRIDENT=m
CONFIG_SND_VIA82XX=m
CONFIG_SND_VIA82XX_MODEM=m
CONFIG_SND_VX222=m
CONFIG_SND_YMFPCI=m
##
## file: sound/pci/hda/Kconfig
##
CONFIG_SND_HDA_INTEL=m

View File

@ -1,11 +0,0 @@
##
## file: arch/ia64/Kconfig
##
## choice: Processor type
CONFIG_ITANIUM=y
# CONFIG_MCKINLEY is not set
## end choice
CONFIG_SMP=y
CONFIG_NR_CPUS=64
# CONFIG_SCHED_SMT is not set

View File

@ -1,11 +0,0 @@
##
## file: arch/ia64/Kconfig
##
## choice: Processor type
# CONFIG_ITANIUM is not set
CONFIG_MCKINLEY=y
## end choice
CONFIG_SMP=y
CONFIG_NR_CPUS=64
# CONFIG_SCHED_SMT is not set

View File

@ -1,20 +0,0 @@
[base]
flavours:
itanium
mckinley
kernel-arch: ia64
compiler: gcc-4.6
[build]
image-file: vmlinux.gz
[image]
bootloaders: elilo
suggests: fdutils
install-stem: vmlinuz
[itanium_description]
hardware: Itanium
[mckinley_description]
hardware: Itanium II

View File

@ -2,7 +2,7 @@
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_MACH_LOONGSON=y
CONFIG_MACH_LOONGSON64=y
## end choice
## choice: Kernel code model
# CONFIG_32BIT is not set
@ -13,7 +13,7 @@ CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: arch/mips/loongson/Kconfig
## file: arch/mips/loongson64/Kconfig
##
## choice: Machine Type
CONFIG_LEMOTE_FULOONG2E=y

View File

@ -2,7 +2,7 @@
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_MACH_LOONGSON=y
CONFIG_MACH_LOONGSON64=y
## end choice
## choice: Kernel code model
# CONFIG_32BIT is not set
@ -13,7 +13,7 @@ CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: arch/mips/loongson/Kconfig
## file: arch/mips/loongson64/Kconfig
##
## choice: Machine Type
CONFIG_LEMOTE_MACH2F=y

View File

@ -2,7 +2,7 @@
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_MACH_LOONGSON=y
CONFIG_MACH_LOONGSON64=y
## end choice
CONFIG_HOTPLUG_CPU=y
## choice: Kernel code model
@ -14,7 +14,7 @@ CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: arch/mips/loongson/Kconfig
## file: arch/mips/loongson64/Kconfig
##
## choice: Machine Type
CONFIG_LOONGSON_MACH3X=y

View File

@ -1,147 +0,0 @@
##
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_SGI_IP22=y
## end choice
CONFIG_ARC_CONSOLE=y
## choice: CPU type
CONFIG_CPU_R4X00=y
## end choice
## choice: Kernel code model
CONFIG_64BIT=y
## end choice
## choice: Kernel page size
CONFIG_PAGE_SIZE_4KB=y
## end choice
CONFIG_EISA=y
CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: block/partitions/Kconfig
##
CONFIG_SGI_PARTITION=y
##
## file: drivers/ata/Kconfig
##
# CONFIG_ATA is not set
##
## file: drivers/char/Kconfig
##
CONFIG_PRINTER=m
##
## file: drivers/eisa/Kconfig
##
CONFIG_EISA_NAMES=y
##
## file: drivers/hwmon/Kconfig
##
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83627EHF is not set
##
## file: drivers/i2c/Kconfig
##
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
##
## file: drivers/input/Kconfig
##
# CONFIG_INPUT_JOYDEV is not set
##
## file: drivers/input/serio/Kconfig
##
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
##
## file: drivers/net/appletalk/Kconfig
##
# CONFIG_ATALK is not set
##
## file: drivers/net/ethernet/8390/Kconfig
##
CONFIG_NE2000=m
CONFIG_ULTRA=m
CONFIG_WD80x3=m
##
## file: drivers/net/ethernet/seeq/Kconfig
##
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_SGISEEQ=y
##
## file: drivers/net/ethernet/smsc/Kconfig
##
CONFIG_SMC9194=m
CONFIG_SMC91X=m
##
## file: drivers/net/phy/Kconfig
##
# CONFIG_PHYLIB is not set
##
## file: drivers/rtc/Kconfig
##
CONFIG_RTC_DRV_DS1286=y
##
## file: drivers/scsi/Kconfig
##
CONFIG_BLK_DEV_SR=y
CONFIG_SGIWD93_SCSI=y
# CONFIG_SCSI_AHA1740 is not set
##
## file: drivers/scsi/aic7xxx/Kconfig.aic7xxx
##
# CONFIG_SCSI_AIC7XXX is not set
##
## file: drivers/tty/serial/Kconfig
##
CONFIG_SERIAL_IP22_ZILOG=y
CONFIG_SERIAL_IP22_ZILOG_CONSOLE=y
##
## file: drivers/video/console/Kconfig
##
CONFIG_SGI_NEWPORT_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
##
## file: drivers/video/fbdev/Kconfig
##
CONFIG_FB=y
##
## file: drivers/w1/Kconfig
##
# CONFIG_W1 is not set
##
## file: drivers/watchdog/Kconfig
##
CONFIG_INDYDOG=m
##
## file: sound/mips/Kconfig
##
CONFIG_SND_MIPS=y
CONFIG_SND_SGI_HAL2=m

View File

@ -1,268 +0,0 @@
##
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_SGI_IP32=y
## end choice
## choice: CPU type
CONFIG_CPU_R5000=y
## end choice
## choice: Kernel code model
CONFIG_64BIT=y
## end choice
## choice: Kernel page size
CONFIG_PAGE_SIZE_4KB=y
## end choice
CONFIG_PCI=y
CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: block/partitions/Kconfig
##
CONFIG_SGI_PARTITION=y
##
## file: drivers/char/Kconfig
##
CONFIG_PRINTER=m
##
## file: drivers/firewire/Kconfig
##
# CONFIG_FIREWIRE is not set
##
## file: drivers/hwmon/Kconfig
##
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83627EHF is not set
##
## file: drivers/i2c/Kconfig
##
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
##
## file: drivers/infiniband/Kconfig
##
# CONFIG_INFINIBAND is not set
##
## file: drivers/input/Kconfig
##
# CONFIG_INPUT_JOYDEV is not set
##
## file: drivers/input/misc/Kconfig
##
CONFIG_INPUT_MISC=y
CONFIG_INPUT_SGI_BTNS=m
##
## file: drivers/input/mouse/Kconfig
##
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
##
## file: drivers/input/serio/Kconfig
##
CONFIG_SERIO=y
CONFIG_SERIO_SERPORT=y
CONFIG_SERIO_MACEPS2=y
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
##
## file: drivers/media/pci/bt8xx/Kconfig
##
# CONFIG_VIDEO_BT848 is not set
##
## file: drivers/media/pci/cx88/Kconfig
##
# CONFIG_VIDEO_CX88 is not set
##
## file: drivers/media/pci/saa7134/Kconfig
##
# CONFIG_VIDEO_SAA7134 is not set
##
## file: drivers/media/pci/saa7146/Kconfig
##
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set
##
## file: drivers/message/fusion/Kconfig
##
# CONFIG_FUSION is not set
##
## file: drivers/net/ethernet/broadcom/Kconfig
##
# CONFIG_BNX2 is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
##
## file: drivers/net/ethernet/chelsio/Kconfig
##
# CONFIG_CHELSIO_T1 is not set
##
## file: drivers/net/ethernet/dec/tulip/Kconfig
##
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_TULIP=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
##
## file: drivers/net/ethernet/intel/Kconfig
##
CONFIG_E100=m
##
## file: drivers/net/ethernet/natsemi/Kconfig
##
# CONFIG_NS83820 is not set
##
## file: drivers/net/ethernet/neterion/Kconfig
##
# CONFIG_S2IO is not set
##
## file: drivers/net/ethernet/packetengines/Kconfig
##
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
##
## file: drivers/net/ethernet/sgi/Kconfig
##
CONFIG_SGI_O2MACE_ETH=y
##
## file: drivers/net/ethernet/sis/Kconfig
##
# CONFIG_SIS190 is not set
##
## file: drivers/net/ethernet/sun/Kconfig
##
# CONFIG_CASSINI is not set
##
## file: drivers/parport/Kconfig
##
CONFIG_PARPORT_IP32=m
##
## file: drivers/pci/hotplug/Kconfig
##
# CONFIG_HOTPLUG_PCI is not set
##
## file: drivers/pci/pcie/Kconfig
##
# CONFIG_PCIEPORTBUS is not set
##
## file: drivers/rtc/Kconfig
##
CONFIG_RTC_DRV_CMOS=y
##
## file: drivers/scsi/Kconfig
##
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
##
## file: drivers/scsi/aic7xxx/Kconfig.aic79xx
##
# CONFIG_SCSI_AIC79XX is not set
##
## file: drivers/scsi/aic7xxx/Kconfig.aic7xxx
##
CONFIG_SCSI_AIC7XXX=y
##
## file: drivers/scsi/megaraid/Kconfig.megaraid
##
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
##
## file: drivers/tty/serial/8250/Kconfig
##
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
##
## file: drivers/usb/Kconfig
##
CONFIG_USB=m
##
## file: drivers/usb/host/Kconfig
##
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_OHCI_HCD=m
CONFIG_USB_UHCI_HCD=m
##
## file: drivers/video/console/Kconfig
##
CONFIG_FRAMEBUFFER_CONSOLE=y
##
## file: drivers/video/fbdev/Kconfig
##
CONFIG_FB=y
CONFIG_FB_GBE=y
# CONFIG_FB_3DFX is not set
##
## file: drivers/w1/Kconfig
##
# CONFIG_W1 is not set
##
## file: net/ipv4/Kconfig
##
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
##
## file: sound/mips/Kconfig
##
CONFIG_SND_MIPS=y
CONFIG_SND_SGI_O2=m
##
## file: sound/pci/Kconfig
##
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_HDSPM is not set
CONFIG_SND_KORG1212=m
# CONFIG_SND_PCXHR is not set

View File

@ -1,273 +0,0 @@
##
## file: arch/mips/Kconfig
##
## choice: System type
CONFIG_SIBYTE_SWARM=y
## end choice
## choice: CPU type
CONFIG_CPU_SB1=y
## end choice
## choice: Kernel code model
CONFIG_64BIT=y
## end choice
## choice: Kernel page size
CONFIG_PAGE_SIZE_4KB=y
## end choice
CONFIG_SMP=y
CONFIG_NR_CPUS=2
CONFIG_PCI=y
CONFIG_MIPS32_O32=y
CONFIG_MIPS32_N32=y
##
## file: arch/mips/sibyte/Kconfig
##
## choice: SiByte SOC Stepping
CONFIG_CPU_SB1_PASS_2_2=y
## end choice
##
## file: block/partitions/Kconfig
##
CONFIG_SGI_PARTITION=y
##
## file: drivers/ata/Kconfig
##
CONFIG_ATA=y
CONFIG_PATA_ALI=m
CONFIG_PATA_AMD=m
CONFIG_PATA_CYPRESS=y
CONFIG_PATA_EFAR=m
CONFIG_PATA_NS87415=m
CONFIG_PATA_OLDPIIX=m
CONFIG_PATA_PDC2027X=m
CONFIG_PATA_PDC_OLD=m
CONFIG_PATA_SC1200=m
CONFIG_PATA_SERVERWORKS=m
CONFIG_PATA_SIL680=m
CONFIG_PATA_TRIFLEX=m
CONFIG_PATA_VIA=m
CONFIG_PATA_MPIIX=m
CONFIG_PATA_PLATFORM=y
##
## file: drivers/char/Kconfig
##
CONFIG_PRINTER=m
CONFIG_RTC=m
##
## file: drivers/firewire/Kconfig
##
# CONFIG_FIREWIRE is not set
##
## file: drivers/gpu/drm/Kconfig
##
CONFIG_DRM=m
##
## file: drivers/hid/usbhid/Kconfig
##
CONFIG_USB_HID=m
##
## file: drivers/i2c/Kconfig
##
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
##
## file: drivers/i2c/busses/Kconfig
##
CONFIG_I2C_SIBYTE=m
##
## file: drivers/infiniband/Kconfig
##
# CONFIG_INFINIBAND is not set
##
## file: drivers/input/mouse/Kconfig
##
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
##
## file: drivers/input/serio/Kconfig
##
CONFIG_SERIO=y
##
## file: drivers/net/appletalk/Kconfig
##
# CONFIG_ATALK is not set
##
## file: drivers/net/ethernet/Kconfig
##
CONFIG_FEALNX=m
##
## file: drivers/net/ethernet/8390/Kconfig
##
CONFIG_NE2K_PCI=m
##
## file: drivers/net/ethernet/adaptec/Kconfig
##
CONFIG_ADAPTEC_STARFIRE=m
##
## file: drivers/net/ethernet/amd/Kconfig
##
CONFIG_AMD8111_ETH=m
##
## file: drivers/net/ethernet/broadcom/Kconfig
##
CONFIG_B44=m
CONFIG_SB1250_MAC=y
##
## file: drivers/net/ethernet/dlink/Kconfig
##
CONFIG_SUNDANCE=m
##
## file: drivers/net/ethernet/intel/Kconfig
##
CONFIG_E100=m
##
## file: drivers/net/ethernet/natsemi/Kconfig
##
CONFIG_NATSEMI=m
##
## file: drivers/net/ethernet/realtek/Kconfig
##
CONFIG_8139CP=m
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
CONFIG_8139TOO_8129=y
##
## file: drivers/net/ethernet/sis/Kconfig
##
CONFIG_SIS900=m
##
## file: drivers/net/ethernet/smsc/Kconfig
##
CONFIG_EPIC100=m
##
## file: drivers/net/ethernet/sun/Kconfig
##
# CONFIG_CASSINI is not set
##
## file: drivers/net/ethernet/via/Kconfig
##
CONFIG_VIA_RHINE=m
##
## file: drivers/pci/pcie/Kconfig
##
# CONFIG_PCIEPORTBUS is not set
##
## file: drivers/scsi/Kconfig
##
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_FUTURE_DOMAIN=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_AM53C974=m
##
## file: drivers/scsi/aic7xxx/Kconfig.aic7xxx
##
CONFIG_SCSI_AIC7XXX=y
##
## file: drivers/scsi/megaraid/Kconfig.megaraid
##
# CONFIG_MEGARAID_NEWGEN is not set
CONFIG_MEGARAID_LEGACY=m
##
## file: drivers/tty/serial/Kconfig
##
CONFIG_SERIAL_SB1250_DUART=y
CONFIG_SERIAL_SB1250_DUART_CONSOLE=y
##
## file: drivers/usb/Kconfig
##
CONFIG_USB=m
##
## file: drivers/usb/host/Kconfig
##
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_ISP116X_HCD=m
CONFIG_USB_OHCI_HCD=m
CONFIG_USB_UHCI_HCD=m
CONFIG_USB_SL811_HCD=m
##
## file: drivers/video/console/Kconfig
##
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
##
## file: drivers/video/fbdev/Kconfig
##
CONFIG_FB=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_PM2=m
CONFIG_FB_CYBER2000=m
CONFIG_FB_MATROX=m
CONFIG_FB_MATROX_MILLENIUM=y
CONFIG_FB_MATROX_MYSTIQUE=y
CONFIG_FB_MATROX_G=y
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
CONFIG_FB_ATY128=m
CONFIG_FB_ATY=m
CONFIG_FB_SAVAGE=m
CONFIG_FB_SIS=m
CONFIG_FB_SIS_300=y
CONFIG_FB_SIS_315=y
CONFIG_FB_NEOMAGIC=m
CONFIG_FB_KYRO=m
CONFIG_FB_VOODOO1=m
CONFIG_FB_TRIDENT=m
##
## file: drivers/w1/Kconfig
##
# CONFIG_W1 is not set
##
## file: fs/nfs/Kconfig
##
CONFIG_NFS_FS=y
CONFIG_ROOT_NFS=y
##
## file: net/ipv4/Kconfig
##
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y

View File

@ -257,7 +257,6 @@ CONFIG_CISS_SCSI_TAPE=y
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
CONFIG_BLK_DEV_SX8=m
CONFIG_BLK_DEV_PMEM=m
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
@ -1214,6 +1213,11 @@ CONFIG_NFC_MEI_PHY=m
CONFIG_NFC_PN544=m
CONFIG_NFC_PN544_MEI=m
##
## file: drivers/nvdimm/Kconfig
##
CONFIG_BLK_DEV_PMEM=m
##
## file: drivers/pci/Kconfig
##
@ -1470,7 +1474,7 @@ CONFIG_COMEDI_USBDUX=m
CONFIG_COMEDI_USBDUXFAST=m
CONFIG_COMEDI_USBDUXSIGMA=m
CONFIG_COMEDI_VMK80XX=m
CONFIG_COMEDI_8255=m
CONFIG_COMEDI_8255_SA=m
CONFIG_COMEDI_KCOMEDILIB=m
##

View File

@ -142,6 +142,12 @@ CONFIG_FB_MATROX_MAVEN=m
## file: init/Kconfig
##
CONFIG_RCU_FANOUT=64
CONFIG_KALLSYMS_ALL=y
##
## file: kernel/livepatch/Kconfig
##
CONFIG_LIVEPATCH=y
##
## file: lib/Kconfig.debug

View File

@ -1,8 +1,5 @@
[base]
flavours:
r4k-ip22
r5k-ip32
sb1-bcm91250a
4kc-malta
5kc-malta
octeon
@ -14,27 +11,6 @@ image-file: vmlinux
[image]
install-stem: vmlinux
[r4k-ip22_description]
hardware: SGI IP22
hardware-long: SGI IP22 systems (Indy, Indigo2)
[r4k-ip22_image]
configs: kernelarch-mips/config.r4k-ip22
[r5k-ip32_description]
hardware: SGI IP32
hardware-long: SGI IP32 systems (O2)
[r5k-ip32_image]
configs: kernelarch-mips/config.r5k-ip32
[sb1-bcm91250a_description]
hardware: BCM91250A
hardware-long: Broadcom BCM91250A systems (aka SWARM)
[sb1-bcm91250a_image]
configs: kernelarch-mips/config.sb1-bcm91250a
[4kc-malta_description]
hardware: MIPS Malta
hardware-long: MIPS Malta boards

View File

@ -1,6 +1,5 @@
[base]
flavours:
sb1-bcm91250a
5kc-malta
octeon
kernel-arch: mips
@ -11,13 +10,6 @@ image-file: vmlinux
[image]
install-stem: vmlinux
[sb1-bcm91250a_description]
hardware: BCM91250A
hardware-long: Broadcom BCM91250A systems (aka SWARM)
[sb1-bcm91250a_image]
configs: kernelarch-mips/config.sb1-bcm91250a
[5kc-malta_description]
hardware: MIPS Malta
hardware-long: MIPS Malta boards

View File

@ -1,6 +1,5 @@
[base]
flavours:
sb1-bcm91250a
5kc-malta
loongson-3
octeon
@ -12,13 +11,6 @@ image-file: vmlinux
[image]
install-stem: vmlinux
[sb1-bcm91250a_description]
hardware: BCM91250A
hardware-long: Broadcom BCM91250A systems (aka SWARM)
[sb1-bcm91250a_image]
configs: kernelarch-mips/config.sb1-bcm91250a
[5kc-malta_description]
hardware: MIPS Malta
hardware-long: MIPS Malta boards

View File

@ -1,6 +1,5 @@
[base]
flavours:
sb1-bcm91250a
4kc-malta
5kc-malta
loongson-2e
@ -14,13 +13,6 @@ image-file: vmlinux
[image]
install-stem: vmlinux
[sb1-bcm91250a_description]
hardware: BCM91250A
hardware-long: Broadcom BCM91250A systems (aka SWARM)
[sb1-bcm91250a_image]
configs: kernelarch-mips/config.sb1-bcm91250a
[4kc-malta_description]
hardware: MIPS Malta
hardware-long: MIPS Malta boards

View File

@ -2,8 +2,6 @@
flavours:
s390x
kernel-arch: s390
# gcc 4.9 breaks access to virtual address 0
compiler: gcc-4.8
[build]
image-file: arch/s390/boot/image

View File

@ -1,31 +1,4 @@
[base]
flavours:
sparc64
sparc64-smp
kernel-arch: sparc
[build]
image-file: arch/sparc/boot/zImage
[image]
configs:
suggests: silo, fdutils
install-stem: vmlinuz
[sparc32_description]
hardware: uniprocessor sparc32 (sun4m)
[sparc32_image]
image-postproc: sparc32-image-postproc
[sparc64_description]
hardware: uniprocessor 64-bit UltraSPARC
[sparc64_image]
configs: kernelarch-sparc/config-up
[sparc64-smp_description]
hardware: multiprocessor 64-bit UltraSPARC
[sparc64-smp_image]
configs: kernelarch-sparc/config-smp
featuresets:
# empty; sparc must be part of a multiarch installation with a sparc64 kernel

View File

@ -1,3 +0,0 @@
* The 2.6 kernel is missing a lot of modules, need to get a list of all
modules included in the udebs, and compare vs. the full module list and
add missing stuff.

View File

@ -1,2 +0,0 @@
# arch version flavour installedname suffix build-depends
ia64 - itanium - - -

View File

@ -1,2 +0,0 @@
#include <cdrom-core-modules>
ide-cd_mod

View File

@ -1,2 +0,0 @@
#include <crc-modules>

View File

@ -1 +0,0 @@
#include <event-modules>

View File

@ -1 +0,0 @@
#include <fat-modules>

View File

@ -1,2 +0,0 @@
fbcon ?
vgastate

View File

@ -1,2 +0,0 @@
#include <firewire-core-modules>

View File

@ -1 +0,0 @@
ide-core

View File

@ -1,3 +0,0 @@
ide-gd_mod
sgiioc4
trm290

View File

@ -1,2 +0,0 @@
#include <loop-modules>

View File

@ -1 +0,0 @@
#include <mouse-modules>

View File

@ -1 +0,0 @@
#include <nic-modules>

View File

@ -1 +0,0 @@
#include <nic-shared-modules>

View File

@ -1 +0,0 @@
#include <nic-usb-modules>

View File

@ -1 +0,0 @@
ntfs

View File

@ -1,4 +0,0 @@
pcmcia
pcmcia_core
pd6729
rsrc_nonstatic ?

View File

@ -1,2 +0,0 @@
#include <sata-modules>

View File

@ -1 +0,0 @@
#include <scsi-core-modules>

View File

@ -1,3 +0,0 @@
#include <scsi-common-modules>
#include <scsi-modules>
#include <scsi-extra-modules>

View File

@ -1,3 +0,0 @@
#include <serial-modules>
ioc3_serial
ioc4_serial

View File

@ -1,2 +0,0 @@
ioc3
ioc4

View File

@ -1 +0,0 @@
#include <uinput-modules>

View File

@ -1,37 +0,0 @@
# This file is used to build up the control file. The kernel version and
# "-di" are appended to the package names. Section can be left out. So can
# architecture, which is derived from the files in the modules directory.
# It overwrites specifications from /usr/share/kernel-wedge/package-list.
#
Package: fat-modules
Priority: standard
Package: ide-core-modules
Depends: kernel-image
Priority: standard
Description: IDE support
This package contains core IDE support for the kernel.
Package: ide-modules
Depends: kernel-image, ide-core-modules, sn-modules
Priority: standard
Description: IDE drivers
This package contains IDE drivers for the kernel.
Package: cdrom-core-modules
Depends: kernel-image, scsi-core-modules, ide-modules, isofs-modules
Package: nic-modules
Depends: kernel-image, nic-shared-modules, core-modules, crc-modules
Package: serial-modules
Depends: kernel-image, pcmcia-modules, sn-modules
Package: sn-modules
Depends: kernel-image
Priority: extra
Description: SN modules
This package contains SN modules for Altix systems
Package: kernel-image
Provides: efi-modules, zlib-modules

View File

@ -1,6 +1,3 @@
# arch version flavour installedname suffix build-depends
mips - sb1-bcm91250a - y -
mips - r4k-ip22 - y -
mips - r5k-ip32 - y -
mips - 4kc-malta - y -
mips - octeon - y -

View File

@ -1 +0,0 @@
#include <affs-modules>

View File

@ -1 +0,0 @@
#include <ata-modules>

View File

@ -1 +0,0 @@
#include <btrfs-modules>

View File

@ -1 +0,0 @@
#include <cdrom-core-modules>

View File

@ -1 +0,0 @@
#include <core-modules>

View File

@ -1 +0,0 @@
#include <crypto-dm-modules>

View File

@ -1 +0,0 @@
#include <crypto-modules>

View File

@ -1 +0,0 @@
#include <event-modules>

View File

@ -1 +0,0 @@
#include <ext4-modules>

View File

@ -1 +0,0 @@
#include <fat-modules>

View File

@ -1 +0,0 @@
#include <fuse-modules>

View File

@ -1 +0,0 @@
#include <hfs-modules>

View File

@ -1 +0,0 @@
#include <input-modules>

View File

@ -1 +0,0 @@
#include <isofs-modules>

View File

@ -1 +0,0 @@
#include <jfs-modules>

View File

@ -1 +0,0 @@
# empty

View File

@ -1 +0,0 @@
#include <loop-modules>

View File

@ -1 +0,0 @@
#include <md-modules>

View File

@ -1 +0,0 @@
#include <minix-modules>

View File

@ -1 +0,0 @@
#include <multipath-modules>

View File

@ -1 +0,0 @@
#include <nbd-modules>

View File

@ -1,11 +0,0 @@
#include <nic-modules>
dmfe -
epic100 -
fealnx -
natsemi -
skfp -
starfire -
sundance -
tulip -
typhoon -
winbond-840 -

View File

@ -1 +0,0 @@
#include <nic-shared-modules>

View File

@ -1 +0,0 @@
#include <nic-usb-modules>

View File

@ -1 +0,0 @@
#include <nic-wireless-modules>

View File

@ -1 +0,0 @@
ntfs

View File

@ -1 +0,0 @@
#include <pata-modules>

Some files were not shown because too many files have changed in this diff Show More