Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
70de6562
Commit
70de6562
authored
Jul 07, 2005
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Make kernel boot after moving the directories
Make kernel boot after moving the directories
parent
394a46e7
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
17 additions
and
63 deletions
+17
-63
arch/arm/Kconfig
arch/arm/Kconfig
+3
-1
arch/arm/Makefile
arch/arm/Makefile
+5
-1
arch/arm/mach-omap1/Kconfig
arch/arm/mach-omap1/Kconfig
+1
-1
arch/arm/mach-omap1/board-generic.c
arch/arm/mach-omap1/board-generic.c
+1
-2
arch/arm/mach-omap1/board-h2.c
arch/arm/mach-omap1/board-h2.c
+1
-2
arch/arm/mach-omap1/board-h3.c
arch/arm/mach-omap1/board-h3.c
+1
-2
arch/arm/mach-omap1/board-innovator.c
arch/arm/mach-omap1/board-innovator.c
+1
-2
arch/arm/mach-omap1/board-netstar.c
arch/arm/mach-omap1/board-netstar.c
+1
-2
arch/arm/mach-omap1/board-osk.c
arch/arm/mach-omap1/board-osk.c
+1
-3
arch/arm/mach-omap1/board-perseus2.c
arch/arm/mach-omap1/board-perseus2.c
+1
-2
arch/arm/mach-omap1/board-voiceblue.c
arch/arm/mach-omap1/board-voiceblue.c
+1
-2
arch/arm/mach-omap1/io.c
arch/arm/mach-omap1/io.c
+0
-2
arch/arm/plat-omap/Kconfig
arch/arm/plat-omap/Kconfig
+0
-2
arch/arm/plat-omap/Makefile
arch/arm/plat-omap/Makefile
+0
-3
arch/arm/plat-omap/common.h
arch/arm/plat-omap/common.h
+0
-36
No files found.
arch/arm/Kconfig
View file @
70de6562
...
...
@@ -223,7 +223,9 @@ source "arch/arm/mach-pxa/Kconfig"
source "arch/arm/mach-sa1100/Kconfig"
source "arch/arm/mach-omap/Kconfig"
source "arch/arm/plat-omap/Kconfig"
source "arch/arm/mach-omap1/Kconfig"
source "arch/arm/mach-s3c2410/Kconfig"
...
...
arch/arm/Makefile
View file @
70de6562
...
...
@@ -91,7 +91,8 @@ textaddr-$(CONFIG_ARCH_FORTUNET) := 0xc0008000
machine-$(CONFIG_ARCH_IOP3XX)
:=
iop3xx
machine-$(CONFIG_ARCH_IXP4XX)
:=
ixp4xx
machine-$(CONFIG_ARCH_IXP2000)
:=
ixp2000
machine-$(CONFIG_ARCH_OMAP)
:=
omap
machine-$(CONFIG_ARCH_OMAP1)
:=
omap1
incdir-$(CONFIG_ARCH_OMAP)
:=
omap
machine-$(CONFIG_ARCH_S3C2410)
:=
s3c2410
machine-$(CONFIG_ARCH_LH7A40X)
:=
lh7a40x
machine-$(CONFIG_ARCH_VERSATILE)
:=
versatile
...
...
@@ -142,6 +143,9 @@ core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/
core-$(CONFIG_FPE_FASTFPE)
+=
$(FASTFPE_OBJ)
core-$(CONFIG_VFP)
+=
arch
/arm/vfp/
# If we have a common platform directory, then include it in the build.
core-$(CONFIG_ARCH_OMAP)
+=
arch
/arm/plat-omap/
drivers-$(CONFIG_OPROFILE)
+=
arch
/arm/oprofile/
drivers-$(CONFIG_ARCH_CLPS7500)
+=
drivers/acorn/char/
drivers-$(CONFIG_ARCH_L7200)
+=
drivers/acorn/char/
...
...
arch/arm/mach-omap1/Kconfig
View file @
70de6562
...
...
@@ -142,5 +142,5 @@ config OMAP_ARM_30MHZ
help
Enable 30MHz clock for OMAP CPU. If unsure, say N.
source "arch/arm/
mach
-omap/dsp/Kconfig"
source "arch/arm/
plat
-omap/dsp/Kconfig"
arch/arm/mach-omap1/board-generic.c
View file @
70de6562
...
...
@@ -26,8 +26,7 @@
#include <asm/arch/mux.h>
#include <asm/arch/usb.h>
#include <asm/arch/board.h>
#include "../common.h"
#include <asm/arch/common.h>
static
int
__initdata
generic_serial_ports
[
OMAP_MAX_NR_PORTS
]
=
{
1
,
1
,
1
};
...
...
arch/arm/mach-omap1/board-h2.c
View file @
70de6562
...
...
@@ -36,8 +36,7 @@
#include <asm/arch/mux.h>
#include <asm/arch/tc.h>
#include <asm/arch/usb.h>
#include "../common.h"
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
...
...
arch/arm/mach-omap1/board-h3.c
View file @
70de6562
...
...
@@ -37,8 +37,7 @@
#include <asm/arch/mux.h>
#include <asm/arch/tc.h>
#include <asm/arch/usb.h>
#include "../common.h"
#include <asm/arch/common.h>
extern
int
omap_gpio_init
(
void
);
...
...
arch/arm/mach-omap1/board-innovator.c
View file @
70de6562
...
...
@@ -34,8 +34,7 @@
#include <asm/arch/gpio.h>
#include <asm/arch/tc.h>
#include <asm/arch/usb.h>
#include "../common.h"
#include <asm/arch/common.h>
static
int
__initdata
innovator_serial_ports
[
OMAP_MAX_NR_PORTS
]
=
{
1
,
1
,
1
};
...
...
arch/arm/mach-omap1/board-netstar.c
View file @
70de6562
...
...
@@ -26,8 +26,7 @@
#include <asm/arch/gpio.h>
#include <asm/arch/mux.h>
#include <asm/arch/usb.h>
#include "common.h"
#include <asm/arch/common.h>
extern
void
__init
omap_init_time
(
void
);
extern
int
omap_gpio_init
(
void
);
...
...
arch/arm/mach-omap1/board-osk.c
View file @
70de6562
...
...
@@ -42,9 +42,7 @@
#include <asm/arch/usb.h>
#include <asm/arch/mux.h>
#include <asm/arch/tc.h>
#include "../common.h"
#include <asm/arch/common.h>
static
int
__initdata
osk_serial_ports
[
OMAP_MAX_NR_PORTS
]
=
{
1
,
0
,
0
};
...
...
arch/arm/mach-omap1/board-perseus2.c
View file @
70de6562
...
...
@@ -27,8 +27,7 @@
#include <asm/arch/gpio.h>
#include <asm/arch/mux.h>
#include <asm/arch/fpga.h>
#include "../common.h"
#include <asm/arch/common.h>
static
struct
resource
smc91x_resources
[]
=
{
[
0
]
=
{
...
...
arch/arm/mach-omap1/board-voiceblue.c
View file @
70de6562
...
...
@@ -32,8 +32,7 @@
#include <asm/arch/tc.h>
#include <asm/arch/mux.h>
#include <asm/arch/usb.h>
#include "../common.h"
#include <asm/arch/common.h>
extern
void
omap_init_time
(
void
);
extern
int
omap_gpio_init
(
void
);
...
...
arch/arm/mach-omap1/io.c
View file @
70de6562
...
...
@@ -17,8 +17,6 @@
#include <asm/io.h>
#include <asm/arch/tc.h>
#include "../clock.h"
extern
void
omap_check_revision
(
void
);
extern
void
omap_sram_init
(
void
);
...
...
arch/arm/plat-omap/Kconfig
View file @
70de6562
...
...
@@ -17,8 +17,6 @@ config ARCH_OMAP2
endchoice
source "arch/arm/mach-omap/omap1/Kconfig"
comment "OMAP Feature Selections"
config OMAP_RESET_CLOCKS
...
...
arch/arm/plat-omap/Makefile
View file @
70de6562
...
...
@@ -8,9 +8,6 @@ obj-m :=
obj-n
:=
obj-
:=
# OMAP System type support
obj-$(CONFIG_ARCH_OMAP1)
+=
omap1/
# OCPI interconnect support for 1710, 1610 and 5912
obj-$(CONFIG_ARCH_OMAP16XX)
+=
ocpi.o
...
...
arch/arm/plat-omap/common.h
View file @
70de6562
/*
* linux/arch/arm/mach-omap/common.h
*
* Header for code common to all OMAP machines.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __ARCH_ARM_MACH_OMAP_COMMON_H
#define __ARCH_ARM_MACH_OMAP_COMMON_H
struct
sys_timer
;
extern
void
omap_map_common_io
(
void
);
extern
struct
sys_timer
omap_timer
;
extern
void
omap_serial_init
(
int
ports
[]);
#endif
/* __ARCH_ARM_MACH_OMAP_COMMON_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment