mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 1a91088e389bd3bbf5d9ee1f3a15edd9edb84eb6 Mon Sep 17 00:00:00 2001
|
|
From: Enric Balletbo i Serra <eballetbo@iseebcn.com>
|
|
Date: Wed, 16 Jun 2010 17:41:26 +0200
|
|
Subject: [PATCH] omap3: init MUX for OMAP3 IGEP module.
|
|
|
|
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
|
|
---
|
|
arch/arm/mach-omap2/board-igep0030.c | 10 ++++++++++
|
|
1 files changed, 10 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-igep0030.c b/arch/arm/mach-omap2/board-igep0030.c
|
|
index aa99236..425b2ec 100644
|
|
--- a/arch/arm/mach-omap2/board-igep0030.c
|
|
+++ b/arch/arm/mach-omap2/board-igep0030.c
|
|
@@ -420,8 +420,18 @@ static void __init igep3_init_wifi_bt(void)
|
|
pr_warning("IGEP: Could not obtain gpio GPIO_BT_NRESET\n");
|
|
}
|
|
|
|
+#ifdef CONFIG_OMAP_MUX
|
|
+static struct omap_board_mux board_mux[] __initdata = {
|
|
+ { .reg_offset = OMAP_MUX_TERMINATOR },
|
|
+};
|
|
+#else
|
|
+#define board_mux NULL
|
|
+#endif
|
|
+
|
|
static void __init igep3_init(void)
|
|
{
|
|
+ omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
|
|
+
|
|
omap_serial_init();
|
|
usb_musb_init(&musb_board_data);
|
|
usb_ehci_init(&ehci_pdata);
|
|
--
|
|
1.7.0.4
|
|
|