Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
8fdb1337
Commit
8fdb1337
authored
16 years ago
by
John Crispin
Browse files
Options
Downloads
Patches
Plain Diff
missing file in ifxmips driver support patch
SVN-Revision: 11388
parent
ca8cf891
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
target/linux/ifxmips/patches/110-drivers.patch
+27
-18
27 additions, 18 deletions
target/linux/ifxmips/patches/110-drivers.patch
with
27 additions
and
18 deletions
target/linux/ifxmips/patches/110-drivers.patch
+
27
−
18
View file @
8fdb1337
Index: linux-2.6.25.4/drivers/char/Makefile
===================================================================
--- linux-2.6.25.4.orig/drivers/char/Makefile
+++ linux-2.6.25.4/drivers/char/Makefile
@@ -11
2
,6 +11
2
,12 @@
obj-$(CONFIG_PS3_FLASH) += ps3flash.o
--- linux-2.6.25.4.orig/drivers/char/Makefile
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/char/Makefile
2008-06-07 10:59:42.000000000 +0100
@@ -11
3
,6 +11
3
,12 @@
obj-$(CONFIG_JS_RTC) += js-rtc.o
js-rtc-y = rtc.o
...
...
@@ -17,18 +17,18 @@ Index: linux-2.6.25.4/drivers/char/Makefile
Index: linux-2.6.25.4/drivers/mtd/maps/Makefile
===================================================================
--- linux-2.6.25.4.orig/drivers/mtd/maps/Makefile
+++ linux-2.6.25.4/drivers/mtd/maps/Makefile
@@ -68,3 +68,4 @@
obj-$(CONFIG_MTD_PLATRAM) += plat-ram.o
--- linux-2.6.25.4.orig/drivers/mtd/maps/Makefile
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/mtd/maps/Makefile
2008-06-07 10:59:42.000000000 +0100
@@ -68,3 +68,4 @@
obj-$(CONFIG_MTD_OMAP_NOR) += omap_nor.o
obj-$(CONFIG_MTD_MTX1) += mtx-1_flash.o
obj-$(CONFIG_MTD_INTEL_VR_NOR) += intel_vr_nor.o
+obj-$(CONFIG_MTD_IFXMIPS) += ifxmips.o
Index: linux-2.6.25.4/drivers/net/Kconfig
===================================================================
--- linux-2.6.25.4.orig/drivers/net/Kconfig
+++ linux-2.6.25.4/drivers/net/Kconfig
@@ -351,6 +351,12 @@
config MACB
--- linux-2.6.25.4.orig/drivers/net/Kconfig
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/net/Kconfig
2008-06-07 10:59:42.000000000 +0100
@@ -351,6 +351,12 @@
source "drivers/net/arm/Kconfig"
...
...
@@ -43,9 +43,9 @@ Index: linux-2.6.25.4/drivers/net/Kconfig
depends on ARM || MIPS || SUPERH
Index: linux-2.6.25.4/drivers/serial/Kconfig
===================================================================
--- linux-2.6.25.4.orig/drivers/serial/Kconfig
+++ linux-2.6.25.4/drivers/serial/Kconfig
@@ -1327,6 +1327,14 @@
config SERIAL_OF_PLATFORM
--- linux-2.6.25.4.orig/drivers/serial/Kconfig
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/serial/Kconfig
2008-06-07 10:59:42.000000000 +0100
@@ -1327,6 +1327,14 @@
Currently, only 8250 compatible ports are supported, but
others can easily be added.
...
...
@@ -62,9 +62,9 @@ Index: linux-2.6.25.4/drivers/serial/Kconfig
depends on QUICC_ENGINE
Index: linux-2.6.25.4/drivers/serial/Makefile
===================================================================
--- linux-2.6.25.4.orig/drivers/serial/Makefile
+++ linux-2.6.25.4/drivers/serial/Makefile
@@ -66,4 +66,5 @@
obj-$(CONFIG_SERIAL_UARTLITE) += uartlit
--- linux-2.6.25.4.orig/drivers/serial/Makefile
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/serial/Makefile
2008-06-07 10:59:42.000000000 +0100
@@ -66,4 +66,5 @@
obj-$(CONFIG_SERIAL_NETX) += netx-serial.o
obj-$(CONFIG_SERIAL_OF_PLATFORM) += of_serial.o
obj-$(CONFIG_SERIAL_KS8695) += serial_ks8695.o
...
...
@@ -72,9 +72,9 @@ Index: linux-2.6.25.4/drivers/serial/Makefile
obj-$(CONFIG_SERIAL_QE) += ucc_uart.o
Index: linux-2.6.25.4/drivers/watchdog/Makefile
===================================================================
--- linux-2.6.25.4.orig/drivers/watchdog/Makefile
+++ linux-2.6.25.4/drivers/watchdog/Makefile
@@ -96,6 +96,7 @@
obj-$(CONFIG_WDT_RM9K_GPI) += rm9k_wdt.o
--- linux-2.6.25.4.orig/drivers/watchdog/Makefile
2008-06-07 10:59:30.000000000 +0100
+++ linux-2.6.25.4/drivers/watchdog/Makefile
2008-06-07 10:59:42.000000000 +0100
@@ -96,6 +96,7 @@
obj-$(CONFIG_SIBYTE_WDOG) += sb_wdog.o
obj-$(CONFIG_AR7_WDT) += ar7_wdt.o
obj-$(CONFIG_TXX9_WDT) += txx9wdt.o
...
...
@@ -82,3 +82,12 @@ Index: linux-2.6.25.4/drivers/watchdog/Makefile
# PARISC Architecture
Index: linux-2.6.25.4/drivers/net/Makefile
===================================================================
--- linux-2.6.25.4.orig/drivers/net/Makefile 2008-06-07 11:00:16.000000000 +0100
+++ linux-2.6.25.4/drivers/net/Makefile 2008-06-07 11:01:08.000000000 +0100
@@ -254,3 +254,4 @@
obj-$(CONFIG_NETXEN_NIC) += netxen/
obj-$(CONFIG_NIU) += niu.o
obj-$(CONFIG_VIRTIO_NET) += virtio_net.o
+obj-$(CONFIG_IFXMIPS_MII0) += drivers/net/ifxmips_mii0.o
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment