diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-26 10:33:32 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-26 10:33:32 +0000 |
commit | 94756d4adc16a70d53f4db8fec8248aae2256af9 (patch) | |
tree | b1a6b2b8bf2ee89d8a00610f25347828df4846fb /openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c | |
parent | f26476c862bc76370a3884555d8677c9886eb792 (diff) |
uncompress patches, requested by Kaloz
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@460 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c')
-rw-r--r-- | openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c b/openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c new file mode 100644 index 0000000000..ef6dfe7717 --- /dev/null +++ b/openwrt/package/linux/kernel-patches/011-arch_mips_kernel_setup_c @@ -0,0 +1,22 @@ +--- linux-mips-cvs/arch/mips/kernel/setup.c 2005-01-13 22:15:57.000000000 +0100 ++++ linux-broadcom/arch/mips/kernel/setup.c 2005-01-31 13:13:14.000000000 +0100 +@@ -493,6 +493,7 @@ + void swarm_setup(void); + void hp_setup(void); + void au1x00_setup(void); ++ void brcm_setup(void); + void frame_info_init(void); + + frame_info_init(); +@@ -691,6 +692,11 @@ + pmc_yosemite_setup(); + break; + #endif ++#if defined(CONFIG_BCM4710) || defined(CONFIG_BCM4310) ++ case MACH_GROUP_BRCM: ++ brcm_setup(); ++ break; ++#endif + default: + panic("Unsupported architecture"); + } |