mirror of
https://github.com/wfjm/w11.git
synced 2026-01-28 05:07:39 +00:00
- added support for Nexys4 and Basys3 boards - added RL11 disk support - lots of documentation updated
66 lines
1.5 KiB
Bash
Executable File
66 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# $Id: xtwi 641 2015-02-01 22:12:15Z mueller $
|
|
#
|
|
# Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
# License disclaimer see LICENSE_gpl_v2.txt in $RETROBASE directory
|
|
#
|
|
# Xilinx Tool Wrapper script for ISE:
|
|
# define XTWI_PATH
|
|
# usage xwti <ise command>
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2013-10-12 539 1.0 Initial version
|
|
#
|
|
# Note: For Xilinx ISE installations with an install path <ipath> holds
|
|
# <ipath>/ISE_DS dir with settings(32|64).sh
|
|
# <ipath>/ISE_DS/ISE XILINX env var will point here
|
|
#
|
|
|
|
# store arg list on vars (will be dropped later to source scripts)
|
|
arglist_val=$@
|
|
arglist_num=$#
|
|
#
|
|
# check whether ISE already setup ($XILINX defined)
|
|
if [ -z "$XILINX" ]
|
|
then
|
|
# check whether $XTWI_PATH defined
|
|
if [ -z "$XTWI_PATH" ]
|
|
then
|
|
echo "XTWI_PATH not defined"
|
|
exit 1
|
|
fi
|
|
|
|
# check whether 32 or 64 bit system (uname -m gives 'i686' or 'x86_64')
|
|
if [ `uname -m` = "x86_64" ]
|
|
then
|
|
settings_filename=$XTWI_PATH/ISE_DS/settings64.sh
|
|
else
|
|
settings_filename=$XTWI_PATH/ISE_DS/settings32.sh
|
|
fi
|
|
if [ ! -e "$settings_filename" ]
|
|
then
|
|
echo "can't locate init script '$settings_filename'"
|
|
exit 1
|
|
fi
|
|
|
|
# drop arg list, suppress output
|
|
set --
|
|
. $settings_filename > /dev/null
|
|
|
|
# check that XILINX defined
|
|
if [ -z "$XILINX" ]
|
|
then
|
|
echo "Failed to setup XILINX"
|
|
exit 1
|
|
fi
|
|
|
|
else
|
|
echo "XILINX already defined"
|
|
fi
|
|
|
|
if [ $arglist_num != 0 ]
|
|
then
|
|
exec $arglist_val
|
|
fi
|