diff options
author | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
---|---|---|
committer | Lukas Gorris <lukas.gorris@gmail.com> | 2009-03-30 21:20:14 +0200 |
commit | a93dfebb9e7a34ffba9b1ae5e8e496dfab4c3c43 (patch) | |
tree | 6c38a4617c92398269e6603a0509fc3006811368 /recipes/linux/linux-wrt-2.4.30/011-arch_mips_kernel_setup_c | |
parent | 4255898da29e7e0c521d064afedbc4075b3e8155 (diff) | |
parent | d7fdcef3d8c8b80926d579c2db179b594429cebe (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/linux/linux-wrt-2.4.30/011-arch_mips_kernel_setup_c')
-rw-r--r-- | recipes/linux/linux-wrt-2.4.30/011-arch_mips_kernel_setup_c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/linux/linux-wrt-2.4.30/011-arch_mips_kernel_setup_c b/recipes/linux/linux-wrt-2.4.30/011-arch_mips_kernel_setup_c new file mode 100644 index 0000000000..ef6dfe7717 --- /dev/null +++ b/recipes/linux/linux-wrt-2.4.30/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"); + } |