sparc: copy sparc64 specific files to asm-sparc
authorSam Ravnborg <sam@ravnborg.org>
Thu, 19 Jun 2008 18:26:19 +0000 (20:26 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Jul 2008 04:44:53 +0000 (21:44 -0700)
Used the following script to copy the files:
cd include
set -e
SPARC64=`ls asm-sparc64`
for FILE in ${SPARC64}; do
if [ -f asm-sparc/$FILE ]; then
echo $FILE exist in asm-sparc
else
git mv asm-sparc64/$FILE asm-sparc/$FILE
printf "#include <asm-sparc/$FILE>\n" > asm-sparc64/$FILE
git add asm-sparc64/$FILE
fi
done

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

No differences found