![reinoud](/assets/img/avatar_default.png)
The IOMD/VIDC combination is now moved to arch/arm/iomd together. These files still need a lot of cleaning up :( .... esp. the RC7500 support that is still dormant in it; this needs either to be removed or split out for RC7500's ``VIDC'' video/audio variant. Apart from the RC7500 support wich is still in arch/arm32 the iomd,vidc,riscpc and podulebus subdirectories of arch/arm32 can be removed. This split still uses some small parts of arch/arm32 .... those are the MI parts that haven't been moved yet. RiscPC/A7000 have been tested and confirmed to build as should NC.
36 lines
783 B
Bash
36 lines
783 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: import-BtNetBSD,v 1.1 2001/10/05 22:28:00 reinoud Exp $
|
|
# creates all uue file from the binaries to get them in the source tree
|
|
# to be run in the directory next to the directory NetBSD
|
|
#
|
|
|
|
chmod -R a+r BtNetBSD
|
|
cd BtNetBSD
|
|
|
|
# unixfs is copied at install time
|
|
rm -rf unixfs
|
|
|
|
cp -Rf \!BtNetBSD/* pling.BtNetBSD
|
|
rm -R \!BtNetBSD
|
|
|
|
cd pling.BtNetBSD
|
|
|
|
uuencode Banner < Banner > Banner,uue && rm Banner
|
|
|
|
uuencode MemFix < MemFix > MemFix,uue && rm MemFix
|
|
|
|
uuencode \!Sprites < \!Sprites > pling.Sprites,uue && rm \!Sprites
|
|
|
|
uuencode \!Sprites22 < \!Sprites22 > pling.Sprites22,uue && rm \!Sprites22
|
|
|
|
cd native
|
|
uuencode unixfs_res < unixfs_res > unixfs_res,uue && rm unixfs_res
|
|
|
|
cd ../src/Banner
|
|
uuencode Sprite < Sprite > sprite,uue && rm Sprite
|
|
cd ../..
|
|
|
|
cd ../..
|
|
|