FreeBSD Bugzilla – Attachment 55427 Details for
Bug 83770
New port: emulators/skyeye
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
file.shar
file.shar (text/plain), 21.39 KB, created by
RuanWei
on 2005-07-20 08:00:27 UTC
(
hide
)
Description:
file.shar
Filename:
MIME Type:
Creator:
RuanWei
Created:
2005-07-20 08:00:27 UTC
Size:
21.39 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># skyeye ># skyeye/Makefile ># skyeye/files ># skyeye/files/patch-sim_arm_armdefs.h ># skyeye/files/patch-sim_arm_skyeye-ne2k.c ># skyeye/files/patch-sim_arm_skyeye_net_vnet.c ># skyeye/files/patch-etc_Makefile.in ># skyeye/files/patch-Makefile.in ># skyeye/files/patch-tcl_unix_Makefile.in ># skyeye/files/patch-sim_arm_skyeye_net_tuntap.c ># skyeye/files/patch-gdb_doc_Makefile.in ># skyeye/files/patch-usegtk-2.0.sh ># skyeye/files/patch-usegtk-1.2.sh ># skyeye/files/patch-sim_arm_configure ># skyeye/pkg-descr ># skyeye/distinfo ># skyeye/pkg-plist ># >echo c - skyeye >mkdir -p skyeye > /dev/null 2>&1 >echo x - skyeye/Makefile >sed 's/^X//' >skyeye/Makefile << 'END-of-skyeye/Makefile' >X# Ports collection makefile for: skyeye >X# Date created: Mon July 18, 2005 >X# Whom: Ruan Wei (iamayan@gmail.com) >X# >X# $FreeBSD$ >X# >X >XPORTNAME= skyeye >XPORTVERSION= 0.9.5 >XCATEGORIES?= emulators >XMASTER_SITES= http://gro.clinux.org/frs/download/php/1035/ >X >XMAINTAINER= iamayan@gmail.com >XCOMMENT= An environment simulates typical ARM-base embedded computer systems >X >XBUILD_DEPENDS= tclsh8.3:${PORTSDIR}/lang/tcl83 >X >XUSE_GMAKE= yes >XGNU_CONFIGURE= yes >XUSE_BZIP2= yes >XUSE_GNOME= gtk20 >X >XWRKSRC= ${WRKDIR}/skyeye >X >XMAN1= arm-elf-gdb.1 arm-elf-run.1 >XINFO= mmalloc >X >XSKYEYETARGET?= arm-elf >XCONFIGURE_ARGS+= --target=${SKYEYETARGET} \ >X --without-gtk-prefix \ >X --without-gtk-exec-prefix \ >X --disable-gtktest >X.include <bsd.port.mk> >END-of-skyeye/Makefile >echo c - skyeye/files >mkdir -p skyeye/files > /dev/null 2>&1 >echo x - skyeye/files/patch-sim_arm_armdefs.h >sed 's/^X//' >skyeye/files/patch-sim_arm_armdefs.h << 'END-of-skyeye/files/patch-sim_arm_armdefs.h' >X--- sim/arm/armdefs.h.orig Wed May 11 22:10:09 2005 >X+++ sim/arm/armdefs.h Sat Jul 16 18:25:48 2005 >X@@ -22,6 +22,13 @@ >X #include <stdlib.h> >X #include <errno.h> >X >X+ >X+#ifdef __FreeBSD__ >X+#include <sys/select.h> >X+#define MAP_ANONYMOUS MAP_ANON >X+#endif >X+ >X+ >X //teawater add for arm2x86 2005.02.14------------------------------------------- >X #include <sys/mman.h> >X //AJ2D-------------------------------------------------------------------------- >X@@ -63,6 +70,7 @@ >X typedef unsigned char uint8_t; >X typedef unsigned short uint16_t; >X typedef unsigned int uint32_t; >X+typedef int int32_t; >X #if defined (__x86_64__) >X typedef unsigned long uint64_t; >X #else >END-of-skyeye/files/patch-sim_arm_armdefs.h >echo x - skyeye/files/patch-sim_arm_skyeye-ne2k.c >sed 's/^X//' >skyeye/files/patch-sim_arm_skyeye-ne2k.c << 'END-of-skyeye/files/patch-sim_arm_skyeye-ne2k.c' >X--- sim/arm/skyeye-ne2k.c.orig Tue Mar 1 14:51:24 2005 >X+++ sim/arm/skyeye-ne2k.c Sat Jul 16 18:17:14 2005 >X@@ -26,13 +26,23 @@ >X * 02/25/2003 initial version >X * yangye <yangye@163.net> >X */ >X- >X+#ifdef __linux__ >X //#include <linux/if.h> >X #include <net/if.h> >X #include <linux/if_tun.h> >X //#include <sys/types.h> >X //#include <sys/stat.h> >X //#include <fcntl.h> >X+#endif >X+ >X+#ifdef __FreeBSD__ >X+#include <sys/types.h> >X+#include <sys/socket.h> >X+#include <net/if.h> >X+#include <net/if_tun.h> >X+#endif >X+ >X+ >X #include <sys/ioctl.h> >X #include <armdefs.h> >X #include <clps7110.h> >END-of-skyeye/files/patch-sim_arm_skyeye-ne2k.c >echo x - skyeye/files/patch-sim_arm_skyeye_net_vnet.c >sed 's/^X//' >skyeye/files/patch-sim_arm_skyeye_net_vnet.c << 'END-of-skyeye/files/patch-sim_arm_skyeye_net_vnet.c' >X--- sim/arm/skyeye_net_vnet.c.orig Tue Mar 1 14:51:24 2005 >X+++ sim/arm/skyeye_net_vnet.c Sat Jul 16 18:23:34 2005 >X@@ -26,6 +26,12 @@ >X * chenyu <chenyu@hpclab.cs.tsinghua.edu.cn> >X */ >X #include <fcntl.h> >X+ >X+#ifdef __FreeBSD__ >X+#include <sys/socket.h> >X+#endif >X+ >X+ >X #include <net/if.h> >X //#include <linux/if_tun.h> >X #include <sys/ioctl.h> >END-of-skyeye/files/patch-sim_arm_skyeye_net_vnet.c >echo x - skyeye/files/patch-etc_Makefile.in >sed 's/^X//' >skyeye/files/patch-etc_Makefile.in << 'END-of-skyeye/files/patch-etc_Makefile.in' >X--- etc/Makefile.in.orig Tue Jul 19 23:03:00 2005 >X+++ etc/Makefile.in Tue Jul 19 23:03:14 2005 >X@@ -52,7 +52,7 @@ >X all: >X >X # We want install to imply install-info as per GNU standards. >X-install: install-info >X+install: >X >X uninstall: >X >END-of-skyeye/files/patch-etc_Makefile.in >echo x - skyeye/files/patch-Makefile.in >sed 's/^X//' >skyeye/files/patch-Makefile.in << 'END-of-skyeye/files/patch-Makefile.in' >X--- Makefile.in.orig Tue Jul 19 22:33:06 2005 >X+++ Makefile.in Tue Jul 19 22:36:07 2005 >X@@ -668,7 +668,6 @@ >X install-autoconf \ >X install-automake \ >X install-bash \ >X- install-bfd \ >X install-bzip2 \ >X install-opcodes \ >X install-binutils \ >X@@ -693,9 +692,6 @@ >X install-gzip \ >X install-hello \ >X install-indent \ >X- install-intl \ >X- install-tcl \ >X- install-itcl \ >X install-ld \ >X install-libgui \ >X install-libiberty \ >X@@ -707,7 +703,6 @@ >X install-perl \ >X install-prms \ >X install-rcs \ >X- install-readline \ >X install-recode \ >X install-sed \ >X install-send-pr \ >X@@ -748,10 +743,7 @@ >X INSTALL_X11_MODULES = \ >X install-gdb \ >X install-guile \ >X- install-expect \ >X- install-tclX \ >X- install-tk \ >X- install-tix >X+ install-expect >X >X # This is a list of the targets for all of the modules which are compiled >X # using $(TARGET_FLAGS_TO_PASS). >X@@ -1755,8 +1747,8 @@ >X all-target-libiberty: configure-target-libiberty >X all-target: $(ALL_TARGET_MODULES) >X install-target: $(INSTALL_TARGET_MODULES) >X-install-gdb: install-tcl install-tk install-itcl install-tix install-libgui >X-install-sid: install-tcl install-tk >X+install-gdb: >X+install-sid: >X ### other supporting targets >X >X MAKEDIRS= \ >END-of-skyeye/files/patch-Makefile.in >echo x - skyeye/files/patch-tcl_unix_Makefile.in >sed 's/^X//' >skyeye/files/patch-tcl_unix_Makefile.in << 'END-of-skyeye/files/patch-tcl_unix_Makefile.in' >X*** tcl/unix/Makefile.in.orig Tue Jul 19 00:29:52 2005 >X--- tcl/unix/Makefile.in Mon Jul 18 00:08:02 2005 >X*************** >X*** 194,200 **** >X # once we have created the initial executable, but in some cases you >X # may want to use a target without having made tclsh on these sources >X # (like for make genstubs) >X! TCL_EXE = tclsh >X >X # The symbols below provide support for dynamic loading and shared >X # libraries. See configure.in for a description of what the >X--- 194,200 ---- >X # once we have created the initial executable, but in some cases you >X # may want to use a target without having made tclsh on these sources >X # (like for make genstubs) >X! TCL_EXE = tclsh${VERSION} >X >X # The symbols below provide support for dynamic loading and shared >X # libraries. See configure.in for a description of what the >END-of-skyeye/files/patch-tcl_unix_Makefile.in >echo x - skyeye/files/patch-sim_arm_skyeye_net_tuntap.c >sed 's/^X//' >skyeye/files/patch-sim_arm_skyeye_net_tuntap.c << 'END-of-skyeye/files/patch-sim_arm_skyeye_net_tuntap.c' >X--- sim/arm/skyeye_net_tuntap.c.orig Tue Mar 1 14:51:24 2005 >X+++ sim/arm/skyeye_net_tuntap.c Sat Jul 16 18:22:57 2005 >X@@ -26,8 +26,19 @@ >X * chenyu <chenyu@hpclab.cs.tsinghua.edu.cn> >X */ >X >X+#ifdef __linux__ >X #include <net/if.h> >X #include <linux/if_tun.h> >X+#endif >X+ >X+#ifdef __FreeBSD__ >X+#include <sys/socket.h> >X+#include <net/if.h> >X+#include <net/if_tun.h> >X+#include <fcntl.h> >X+#endif >X+ >X+ >X #include <sys/ioctl.h> >X #include "armdefs.h" >X >X@@ -51,7 +62,7 @@ >X DBG_PRINT("tapif_init begin\n"); >X >X firsttime++; >X- >X+#ifdef __linux__ >X //tapif_fd = open("/dev/net/tun", O_RDWR); >X tapif_fd = open("/dev/net/tun", 2); >X DBG_PRINT("tapif_init: fd %d\n", tapif_fd); >X@@ -68,13 +79,36 @@ >X exit(1); >X //return ; >X } >X+#endif >X >X+#ifdef __FreeBSD__ >X+ tapif_fd = open("/dev/tap", O_RDWR); >X+ DBG_PRINT("tapif_init: fd %d\n", tapif_fd); >X+ if(tapif_fd == -1) { >X+ perror("tapif_init:open"); >X+ printf("-----------------------------------------------------------\n"); >X+ printf("NOTICE: You should run as root if you require network\n"); >X+ printf("NOTICE: load the kernel tap module with 'kldload if_tap'\n"); >X+ printf("NOTICE: and execute 'cat /dev/tap'. there should be a \n"); >X+ printf("NOTICE: device node under /dev/ (e.g. /dev/tap0).\n"); >X+ printf("-----------------------------------------------------------\n"); >X+ exit(1); >X+ } >X+#endif >X+ >X+#if !defined(__FreeBSD__)&&!defined(__linux__) >X+ printf("NOTICE: No network support for your OS(yet). Bugging out!\n"); >X+ exit(1); >X+#endif >X+ >X+#ifndef __FreeBSD__ >X memset(&ifr, 0, sizeof(ifr)); >X ifr.ifr_flags = IFF_TAP|IFF_NO_PI; >X if (ioctl(tapif_fd, TUNSETIFF, (void *) &ifr) < 0) { >X perror("tapif_init: icotl TUNSETIFF error"); >X exit(-1); >X } >X+#endif >X >X if(firsttime==1){ >X snprintf(buf, sizeof(buf), "ifconfig tap0 inet %d.%d.%d.%d", >END-of-skyeye/files/patch-sim_arm_skyeye_net_tuntap.c >echo x - skyeye/files/patch-gdb_doc_Makefile.in >sed 's/^X//' >skyeye/files/patch-gdb_doc_Makefile.in << 'END-of-skyeye/files/patch-gdb_doc_Makefile.in' >X--- gdb/doc/Makefile.in.orig Tue Jul 19 22:38:16 2005 >X+++ gdb/doc/Makefile.in Tue Jul 19 22:38:36 2005 >X@@ -449,6 +449,6 @@ >X maintainer-clean realclean: distclean >X rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf >X >X-install: install-info >X+install: >X >X uninstall: uninstall-info >END-of-skyeye/files/patch-gdb_doc_Makefile.in >echo x - skyeye/files/patch-usegtk-2.0.sh >sed 's/^X//' >skyeye/files/patch-usegtk-2.0.sh << 'END-of-skyeye/files/patch-usegtk-2.0.sh' >X--- usegtk-2.0.sh.orig Wed Jul 20 13:28:03 2005 >X+++ usegtk-2.0.sh Wed Jul 20 13:25:21 2005 >X@@ -1,5 +1,5 @@ >X #! /bin/sh >X cp gdb/Makefile.in.gtk-2.0 gdb/Makefile.in >X cp sim/arm/Makefile.in.gtk-2.0 sim/arm/Makefile.in >X-cp sim/arm/configure.gtk-2.0 sim/arm/configure >X+cp sim/arm/configure.gtk2.0 sim/arm/configure >X >END-of-skyeye/files/patch-usegtk-2.0.sh >echo x - skyeye/files/patch-usegtk-1.2.sh >sed 's/^X//' >skyeye/files/patch-usegtk-1.2.sh << 'END-of-skyeye/files/patch-usegtk-1.2.sh' >X--- usegtk-1.2.sh.orig Wed Jul 20 13:28:34 2005 >X+++ usegtk-1.2.sh Wed Jul 20 13:29:18 2005 >X@@ -1,5 +1,5 @@ >X #! /bin/sh >X cp gdb/Makefile.in.gtk-1.2 gdb/Makefile.in >X cp sim/arm/Makefile.in.gtk-1.2 sim/arm/Makefile.in >X-cp sim/arm/configure.gtk-1.2 sim/arm/configure >X+cp sim/arm/configure.gtk1.2 sim/arm/configure >X >END-of-skyeye/files/patch-usegtk-1.2.sh >echo x - skyeye/files/patch-sim_arm_configure >sed 's/^X//' >skyeye/files/patch-sim_arm_configure << 'END-of-skyeye/files/patch-sim_arm_configure' >X--- sim/arm/configure.orig Wed Jul 20 13:40:44 2005 >X+++ sim/arm/configure Wed Jul 20 13:42:23 2005 >X@@ -3620,7 +3620,8 @@ >X echo "$ac_t""no" 1>&6 >X fi >X #2004-09-29 chy define GTK_CONFIG >X- GTK_CONFIG=/usr/bin/pkg-config >X+# GTK_CONFIG=/usr/bin/pkg-config >X+ GTK_CONFIG=/usr/local/bin/pkg-config >X min_gtk_version=1.1.3 >X echo $ac_n "checking for GTK - version >= $min_gtk_version""... $ac_c" 1>&6 >X echo "configure:3626: checking for GTK - version >= $min_gtk_version" >&5 >END-of-skyeye/files/patch-sim_arm_configure >echo x - skyeye/pkg-descr >sed 's/^X//' >skyeye/pkg-descr << 'END-of-skyeye/pkg-descr' >XSkyEye is an Open Source Software Project. The goal of SkyEye is to provide an integrated simulation environment in Linux and Windows. SkyEye environment simulates typical Embedded Computer Systems (Now it supports Atmel AT91 board based on ARM7TDMI CPU, board based on ARM720T CPU, board based on StrongARM (SA1100/SA1110). You can run some Embedded Operation System such as ARM Linux, uClinux, uc/OS-II (ucos-ii) etc in SkyEye, and analyze or debug them at source level. >X >XWWW: http://www.skyeye.org/ >END-of-skyeye/pkg-descr >echo x - skyeye/distinfo >sed 's/^X//' >skyeye/distinfo << 'END-of-skyeye/distinfo' >XMD5 (skyeye-0.9.5.tar.bz2) = 3976381bcb83bb0fe4c57175c2e3b602 >XSIZE (skyeye-0.9.5.tar.bz2) = 18134145 >END-of-skyeye/distinfo >echo x - skyeye/pkg-plist >sed 's/^X//' >skyeye/pkg-plist << 'END-of-skyeye/pkg-plist' >Xbin/arm-elf-run >Xbin/skyeye >Xbin/skyinsight >Xlib/insight1.0/plugins.tcl >Xlib/libarm-elf-sim.a >Xlib/libiberty.a >Xlib/libmmalloc.a >Xshare/insight1.0/about.tcl >Xshare/insight1.0/actiondlg.tcl >Xshare/insight1.0/attachdlg.itb >Xshare/insight1.0/attachdlg.ith >Xshare/insight1.0/blockframe.itb >Xshare/insight1.0/blockframe.ith >Xshare/insight1.0/bpwin.itb >Xshare/insight1.0/bpwin.ith >Xshare/insight1.0/browserwin.itb >Xshare/insight1.0/browserwin.ith >Xshare/insight1.0/console.itb >Xshare/insight1.0/console.ith >Xshare/insight1.0/data.itb >Xshare/insight1.0/data.ith >Xshare/insight1.0/debugwin.itb >Xshare/insight1.0/debugwin.ith >Xshare/insight1.0/download.itb >Xshare/insight1.0/download.ith >Xshare/insight1.0/editor.tcl >Xshare/insight1.0/ehandler.itb >Xshare/insight1.0/ehandler.ith >Xshare/insight1.0/embeddedwin.ith >Xshare/insight1.0/gdbevent.itb >Xshare/insight1.0/gdbevent.ith >Xshare/insight1.0/gdbmenubar.itcl >Xshare/insight1.0/gdbtoolbar.itcl >Xshare/insight1.0/gdbwin.ith >Xshare/insight1.0/globalpref.itb >Xshare/insight1.0/globalpref.ith >Xshare/insight1.0/help/breakpoint.html >Xshare/insight1.0/help/browser.html >Xshare/insight1.0/help/console.html >Xshare/insight1.0/help/debug.html >Xshare/insight1.0/help/gbl_pref.html >Xshare/insight1.0/help/help.html >Xshare/insight1.0/help/images/frame_info.gif >Xshare/insight1.0/help/images/index.gif >Xshare/insight1.0/help/images/mem_menu.gif >Xshare/insight1.0/help/images/mem_popup.gif >Xshare/insight1.0/help/images/mem_pref.gif >Xshare/insight1.0/help/images/src_bal.gif >Xshare/insight1.0/help/images/src_bp_bal.gif >Xshare/insight1.0/help/images/src_bpop.gif >Xshare/insight1.0/help/images/src_menu.gif >Xshare/insight1.0/help/images/src_pop.gif >Xshare/insight1.0/help/images/src_stat.gif >Xshare/insight1.0/help/images/src_thread.gif >Xshare/insight1.0/help/images/src_toolbar.gif >Xshare/insight1.0/help/index.html >Xshare/insight1.0/help/license.html >Xshare/insight1.0/help/locals.html >Xshare/insight1.0/help/memory.html >Xshare/insight1.0/help/reg_pref.html >Xshare/insight1.0/help/register.html >Xshare/insight1.0/help/session.html >Xshare/insight1.0/help/source.html >Xshare/insight1.0/help/src_pref.html >Xshare/insight1.0/help/stack.html >Xshare/insight1.0/help/target.html >Xshare/insight1.0/help/thread.html >Xshare/insight1.0/help/trace/console.html >Xshare/insight1.0/help/trace/gbl_pref.html >Xshare/insight1.0/help/trace/help.html >Xshare/insight1.0/help/trace/index.toc >Xshare/insight1.0/help/trace/license.html >Xshare/insight1.0/help/trace/locals.html >Xshare/insight1.0/help/trace/memory.html >Xshare/insight1.0/help/trace/reg_pref.html >Xshare/insight1.0/help/trace/register.html >Xshare/insight1.0/help/trace/source.html >Xshare/insight1.0/help/trace/src_pref.html >Xshare/insight1.0/help/trace/stack.html >Xshare/insight1.0/help/trace/target.html >Xshare/insight1.0/help/trace/tdump.html >Xshare/insight1.0/help/trace/tp.html >Xshare/insight1.0/help/trace/tracedlg.html >Xshare/insight1.0/help/trace/watch.html >Xshare/insight1.0/help/watch.html >Xshare/insight1.0/helpviewer.itb >Xshare/insight1.0/helpviewer.ith >Xshare/insight1.0/images/Movie_off.gif >Xshare/insight1.0/images/Movie_on.gif >Xshare/insight1.0/images/back.gif >Xshare/insight1.0/images/bottom.gif >Xshare/insight1.0/images/bp.gif >Xshare/insight1.0/images/build.gif >Xshare/insight1.0/images/check.gif >Xshare/insight1.0/images/console.gif >Xshare/insight1.0/images/continue.gif >Xshare/insight1.0/images/down.gif >Xshare/insight1.0/images/edit.gif >Xshare/insight1.0/images/file.gif >Xshare/insight1.0/images/finish.gif >Xshare/insight1.0/images/fore.gif >Xshare/insight1.0/images/gdbtk.gif >Xshare/insight1.0/images/gdbtk_icon.gif >Xshare/insight1.0/images/help.gif >Xshare/insight1.0/images/home.gif >Xshare/insight1.0/images/icons.txt >Xshare/insight1.0/images/insight.gif >Xshare/insight1.0/images/less.gif >Xshare/insight1.0/images/memory.gif >Xshare/insight1.0/images/more.gif >Xshare/insight1.0/images/next.gif >Xshare/insight1.0/images/next_check.gif >Xshare/insight1.0/images/next_frame.gif >Xshare/insight1.0/images/next_hit.gif >Xshare/insight1.0/images/next_line.gif >Xshare/insight1.0/images/nexti.gif >Xshare/insight1.0/images/open.gif >Xshare/insight1.0/images/opt.gif >Xshare/insight1.0/images/prev_hit.gif >Xshare/insight1.0/images/reg.gif >Xshare/insight1.0/images/rewind.gif >Xshare/insight1.0/images/run.gif >Xshare/insight1.0/images/run_expt.gif >Xshare/insight1.0/images/src.gif >Xshare/insight1.0/images/stack.gif >Xshare/insight1.0/images/step.gif >Xshare/insight1.0/images/stepi.gif >Xshare/insight1.0/images/stop.gif >Xshare/insight1.0/images/tdump.gif >Xshare/insight1.0/images/tools.gif >Xshare/insight1.0/images/tools2_3d.gif >Xshare/insight1.0/images/tp.gif >Xshare/insight1.0/images/up.gif >Xshare/insight1.0/images/vars.gif >Xshare/insight1.0/images/vmake.gif >Xshare/insight1.0/images/watch.gif >Xshare/insight1.0/images/watch_movie.gif >Xshare/insight1.0/images2/Movie_off.gif >Xshare/insight1.0/images2/Movie_on.gif >Xshare/insight1.0/images2/back.gif >Xshare/insight1.0/images2/bottom.gif >Xshare/insight1.0/images2/bp.gif >Xshare/insight1.0/images2/build.gif >Xshare/insight1.0/images2/check.gif >Xshare/insight1.0/images2/console.gif >Xshare/insight1.0/images2/continue.gif >Xshare/insight1.0/images2/down.gif >Xshare/insight1.0/images2/edit.gif >Xshare/insight1.0/images2/file.gif >Xshare/insight1.0/images2/finish.gif >Xshare/insight1.0/images2/fore.gif >Xshare/insight1.0/images2/function.gif >Xshare/insight1.0/images2/gdbtk.gif >Xshare/insight1.0/images2/gdbtk_icon.gif >Xshare/insight1.0/images2/help.gif >Xshare/insight1.0/images2/home.gif >Xshare/insight1.0/images2/icons.txt >Xshare/insight1.0/images2/insight.gif >Xshare/insight1.0/images2/less.gif >Xshare/insight1.0/images2/load.gif >Xshare/insight1.0/images2/memory.gif >Xshare/insight1.0/images2/more.gif >Xshare/insight1.0/images2/next.gif >Xshare/insight1.0/images2/next_check.gif >Xshare/insight1.0/images2/next_frame.gif >Xshare/insight1.0/images2/next_hit.gif >Xshare/insight1.0/images2/next_line.gif >Xshare/insight1.0/images2/nexti.gif >Xshare/insight1.0/images2/open.gif >Xshare/insight1.0/images2/opt.gif >Xshare/insight1.0/images2/prev_hit.gif >Xshare/insight1.0/images2/reg.gif >Xshare/insight1.0/images2/rewind.gif >Xshare/insight1.0/images2/run.gif >Xshare/insight1.0/images2/run_expt.gif >Xshare/insight1.0/images2/src.gif >Xshare/insight1.0/images2/stack.gif >Xshare/insight1.0/images2/step.gif >Xshare/insight1.0/images2/stepi.gif >Xshare/insight1.0/images2/stop.gif >Xshare/insight1.0/images2/target.gif >Xshare/insight1.0/images2/tdump.gif >Xshare/insight1.0/images2/tools.gif >Xshare/insight1.0/images2/tools2_3d.gif >Xshare/insight1.0/images2/tp.gif >Xshare/insight1.0/images2/up.gif >Xshare/insight1.0/images2/vars.gif >Xshare/insight1.0/images2/vmake.gif >Xshare/insight1.0/images2/watch.gif >Xshare/insight1.0/images2/watch_movie.gif >Xshare/insight1.0/interface.tcl >Xshare/insight1.0/kod.itb >Xshare/insight1.0/kod.ith >Xshare/insight1.0/locals.tcl >Xshare/insight1.0/main.tcl >Xshare/insight1.0/managedwin.itb >Xshare/insight1.0/managedwin.ith >Xshare/insight1.0/mempref.itb >Xshare/insight1.0/mempref.ith >Xshare/insight1.0/memwin.itb >Xshare/insight1.0/memwin.ith >Xshare/insight1.0/modal.tcl >Xshare/insight1.0/pluginwin.itcl >Xshare/insight1.0/prefs.tcl >Xshare/insight1.0/process.itb >Xshare/insight1.0/process.ith >Xshare/insight1.0/regwin.itb >Xshare/insight1.0/regwin.ith >Xshare/insight1.0/session.tcl >Xshare/insight1.0/srcbar.itcl >Xshare/insight1.0/srcpref.itb >Xshare/insight1.0/srcpref.ith >Xshare/insight1.0/srctextwin.itb >Xshare/insight1.0/srctextwin.ith >Xshare/insight1.0/srcwin.itb >Xshare/insight1.0/srcwin.ith >Xshare/insight1.0/stackwin.itb >Xshare/insight1.0/stackwin.ith >Xshare/insight1.0/targetselection.itb >Xshare/insight1.0/targetselection.ith >Xshare/insight1.0/tclIndex >Xshare/insight1.0/tdump.tcl >Xshare/insight1.0/tfind_args.tcl >Xshare/insight1.0/toolbar.tcl >Xshare/insight1.0/toplevelwin.ith >Xshare/insight1.0/tracedlg.tcl >Xshare/insight1.0/tty.tcl >Xshare/insight1.0/util.tcl >Xshare/insight1.0/variables.tcl >Xshare/insight1.0/warning.tcl >Xshare/insight1.0/watch.tcl >Xshare/locale/da/LC_MESSAGES/opcodes.mo >Xshare/locale/de/LC_MESSAGES/opcodes.mo >Xshare/locale/es/LC_MESSAGES/opcodes.mo >Xshare/locale/fr/LC_MESSAGES/opcodes.mo >Xshare/locale/id/LC_MESSAGES/opcodes.mo >Xshare/locale/pt_BR/LC_MESSAGES/opcodes.mo >Xshare/locale/sv/LC_MESSAGES/opcodes.mo >Xshare/locale/tr/LC_MESSAGES/opcodes.mo >Xshare/redhat/gui/advice.tcl >Xshare/redhat/gui/balloon.tcl >Xshare/redhat/gui/bbox.tcl >Xshare/redhat/gui/bgerror.tcl >Xshare/redhat/gui/bindings.tcl >Xshare/redhat/gui/canvas.tcl >Xshare/redhat/gui/center.tcl >Xshare/redhat/gui/cframe.tcl >Xshare/redhat/gui/combobox.tcl >Xshare/redhat/gui/debug.tcl >Xshare/redhat/gui/def.tcl >Xshare/redhat/gui/font.tcl >Xshare/redhat/gui/gensym.tcl >Xshare/redhat/gui/gettext.tcl >Xshare/redhat/gui/hooks.tcl >Xshare/redhat/gui/internet.tcl >Xshare/redhat/gui/lframe.tcl >Xshare/redhat/gui/list.tcl >Xshare/redhat/gui/looknfeel.tcl >Xshare/redhat/gui/menu.tcl >Xshare/redhat/gui/mono.tcl >Xshare/redhat/gui/multibox.tcl >Xshare/redhat/gui/pane.tcl >Xshare/redhat/gui/panedwindow.tcl >Xshare/redhat/gui/parse_args.tcl >Xshare/redhat/gui/path.tcl >Xshare/redhat/gui/pkgIndex.tcl >Xshare/redhat/gui/postghost.tcl >Xshare/redhat/gui/prefs.tcl >Xshare/redhat/gui/print.tcl >Xshare/redhat/gui/sendpr.tcl >Xshare/redhat/gui/tclIndex >Xshare/redhat/gui/toolbar.tcl >Xshare/redhat/gui/topbind.tcl >Xshare/redhat/gui/ulset.tcl >Xshare/redhat/gui/ventry.tcl >Xshare/redhat/gui/wframe.tcl >Xshare/redhat/gui/wingrab.tcl >X@dirrm share/redhat/gui >X@dirrm share/redhat >X@dirrm share/nls/en_US.US-ASCII >X@dirrm share/nls/POSIX >X@dirrm share/insight1.0/images2 >X@dirrm share/insight1.0/images >X@dirrm share/insight1.0/help/trace >X@dirrm share/insight1.0/help/images >X@dirrm share/insight1.0/help >X@dirrm share/insight1.0 >X@dirrm lib/insight1.0 >END-of-skyeye/pkg-plist >exit
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 83770
: 55427