Skip to content

Commit

Permalink
omap: headers: Create headers necessary for compile under mach-omap1 …
Browse files Browse the repository at this point in the history
…and mach-omap2

Create the headers needed for compiling under
mach-omap1/include/mach and mach-omap2/include/mach.

This was done with the following script:

#!/bin/bash
mach_files="clkdev.h gpio.h hardware.h io.h irqs.h memory.h \
smp.h system.h timex.h uncompress.h vmalloc.h"
omaps="mach-omap1 mach-omap2"

mach_dir_old="arch/arm/plat-omap/include/mach"
plat_dir_new="arch/arm/plat-omap/include/plat"

mkdir -p $plat_dir_new
git add $plat_dir_new

for dir in $omaps; do
	mach_dir_new="arch/arm/$dir/include/mach"
	for header in $mach_files; do
		file="$mach_dir_new/$header"
		if [ ! -f $file ]; then
			echo -ne "/*\n * $file\n */\n\n#include <plat/$header>\n" > $file
			git add $file
			if [ ! -f $plat_dir_new/$header ]; then
				git mv $mach_dir_old/$header $plat_dir_new/$header
			fi
		fi
	done
done

Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Tony Lindgren committed Oct 20, 2009
1 parent 1e79ab8 commit 3eff851
Show file tree
Hide file tree
Showing 30 changed files with 100 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/clkdev.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/clkdev.h
*/

#include <plat/clkdev.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/gpio.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/gpio.h
*/

#include <plat/gpio.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/hardware.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/hardware.h
*/

#include <plat/hardware.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/io.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/io.h
*/

#include <plat/io.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/irqs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/irqs.h
*/

#include <plat/irqs.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/memory.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/memory.h
*/

#include <plat/memory.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/smp.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/smp.h
*/

#include <plat/smp.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/system.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/system.h
*/

#include <plat/system.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/timex.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/timex.h
*/

#include <plat/timex.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap1/include/mach/uncompress.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap1/include/mach/uncompress.h
*/

#include <plat/uncompress.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/clkdev.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/clkdev.h
*/

#include <plat/clkdev.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/gpio.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/gpio.h
*/

#include <plat/gpio.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/hardware.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/hardware.h
*/

#include <plat/hardware.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/io.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/io.h
*/

#include <plat/io.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/irqs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/irqs.h
*/

#include <plat/irqs.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/memory.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/memory.h
*/

#include <plat/memory.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/smp.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/smp.h
*/

#include <plat/smp.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/system.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/system.h
*/

#include <plat/system.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/timex.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/timex.h
*/

#include <plat/timex.h>
5 changes: 5 additions & 0 deletions arch/arm/mach-omap2/include/mach/uncompress.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* arch/arm/mach-omap2/include/mach/uncompress.h
*/

#include <plat/uncompress.h>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3eff851

Please sign in to comment.