mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
strip the kernel version suffix from target directories, except for brcm-2.4 (the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
diff -Nur linux-2.6.21.1/arch/arm/mach-ixp4xx/pronghornmetro-setup.c linux-2.6.21.1-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
||||
--- linux-2.6.21.1/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-06-10 14:10:24.000000000 +0200
|
||||
+++ linux-2.6.21.1-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-06-10 14:10:15.000000000 +0200
|
||||
@@ -17,6 +17,7 @@
|
||||
#include <linux/serial.h>
|
||||
#include <linux/tty.h>
|
||||
#include <linux/serial_8250.h>
|
||||
+#include <linux/mtd/mtd.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include <asm/types.h>
|
||||
@@ -122,11 +123,34 @@
|
||||
.resource = &res_mac1,
|
||||
};
|
||||
|
||||
+struct npe_ucode_platform_data pronghornmetro_npe_ucode_data = {
|
||||
+ .mtd_partition = "RedBoot",
|
||||
+};
|
||||
+
|
||||
+static struct platform_device pronghornmetro_npe_ucode = {
|
||||
+ .name = "ixp4xx_npe_ucode",
|
||||
+ .id = 0,
|
||||
+ .dev.platform_data = &pronghornmetro_npe_ucode_data,
|
||||
+};
|
||||
+
|
||||
static struct platform_device *pronghornmetro_devices[] __initdata = {
|
||||
&pronghornmetro_flash,
|
||||
&pronghornmetro_uart,
|
||||
&mac0,
|
||||
&mac1,
|
||||
+ &pronghornmetro_npe_ucode,
|
||||
+};
|
||||
+
|
||||
+static void pronghornmetro_flash_add(struct mtd_info *mtd)
|
||||
+{
|
||||
+}
|
||||
+
|
||||
+static void pronghornmetro_flash_remove(struct mtd_info *mtd) {
|
||||
+}
|
||||
+
|
||||
+static struct mtd_notifier pronghornmetro_flash_notifier = {
|
||||
+ .add = pronghornmetro_flash_add,
|
||||
+ .remove = pronghornmetro_flash_remove,
|
||||
};
|
||||
|
||||
static void __init pronghornmetro_init(void)
|
||||
@@ -140,6 +164,8 @@
|
||||
*IXP4XX_EXP_CS1 = *IXP4XX_EXP_CS0;
|
||||
|
||||
platform_add_devices(pronghornmetro_devices, ARRAY_SIZE(pronghornmetro_devices));
|
||||
+
|
||||
+ register_mtd_user(&pronghornmetro_flash_notifier);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MACH_PRONGHORNMETRO
|
||||
Reference in New Issue
Block a user