Remove the a.out DLL support, since it's been obsolete and unmaintained

for a long time now.
bitmap-optimize
Theodore Ts'o 2004-11-19 17:06:47 -05:00
parent 9c92d848a8
commit 2b5901d9c7
42 changed files with 248 additions and 1645 deletions

View File

@ -11,10 +11,9 @@ just follow the steps:
../configure
If you wish to turn on DLL shared libraries, add the option
flag --enable-dll-shlibs. If you wish to turn on ELF shared
libraries, add the option --enable-elf-shlibs. If you wish to build
profiling libraries, add the option --enable-profile.
If you wish to turn on ELF shared libraries, add the option
--enable-elf-shlibs. If you wish to build profiling libraries, add
the option --enable-profile.
4) Compile the programs

View File

@ -1,51 +0,0 @@
NOTE: This is the DLL version of the binary distribution. If you have
an ELF system, please either compile e2fsprogs from sources yourself,
or get the ELF version of the binary distribution. The ELF version
will have a filename of e2fsprogs-1.04-elfbin.tar.gz
To install the binary distribution of the second extended file
system management programs, just follow the steps:
1) Install this tar file using the following command:
gunzip < e2fsprogs-1.04-dllbin.tar.gz | (cd /; tar Sxvpf - )
2) Run ldconfig to update the shared library pointers.
As root, type /sbin/ldconfig. This will update the links to
the shared libraries included in the distribution. You can then remove
the old versions of the libraries from /lib.
3) Remove any pre-formatted man pages.
Some distributions will have pre-formatted manual pages which
will always be displayed in preference to newer man pages in /usr/man.
If this is the case, you may need to manually remove them in order to
see the correct manual pages. The shell script in
install-utils/remove_preformat_manpages may be helpful in doing so.
4) Make sure your /etc/fstab file is correct.
Some distributions install an /etc/fstab which is missing the
fifth and sixth field of filesystem entry, which are the dump
frequency, and the fsck pass number, respectively. The problem with
this is that the getmntent() library routine interprets those missing
fields as "0", and a pass number of 0 is documented as meaning that
fsck should not check that particular filesystem. If your entries in
your /etc/fstab file look liks this:
/dev/hda4 / ext2 defaults
you should add "1 1" at the end of each line, so that they look like this:
/dev/hda4 / ext2 defaults 1 1
There is a script in install-utils/convfstab (donated by
Michael Weller) that may help you correct your /etc/fstab file.
5) Cleanup files from the installation.
When you're done with the installation, you will probably want
to remove /INSTALL (this file), /README, and /install-utils from your
root directory

View File

@ -88,18 +88,6 @@ PROFILED_LIBUUID = $(LIB)/libuuid@PROFILED_LIB_EXT@ @SOCKET_LIB@
PROFILED_LIBBLKID = $(LIB)/libblkid@PROFILED_LIB_EXT@
DEPPROFILED_LIBUUID = $(LIB)/libuuid@PROFILED_LIB_EXT@
#
# Use these definitions is you use tools 2.x, x < 16
#
#DLL_BIN=/usr/dll/bin
#JUMP_PREFIX=/usr/dll/jump/
#
# Use these definitions if you use tools 2.16 or above
#
DLL_BIN=/usr/bin
JUMP_PREFIX=/usr/bin/jump
# An include directive pointing to a directory holding enough linux-like
# include files to satisfy some programs here
LINUX_INCLUDE=@LINUX_INCLUDE@
@ -158,8 +146,9 @@ MANMODE= 444
#
DEP_LIB_MAKEFILES = $(top_srcdir)/lib/Makefile.elf-lib \
$(top_srcdir)/lib/Makefile.dll-lib $(top_srcdir)/lib/Makefile.bsd-lib \
$(top_srcdir)/lib/Makefile.checker $(top_srcdir)/lib/Makefile.profile
$(top_srcdir)/lib/Makefile.bsd-lib $(top_srcdir)/lib/Makefile.darwin-lib \
$(top_srcdir)/lib/Makefile.solaris-lib $(top_srcdir)/lib/Makefile.checker \
$(top_srcdir)/lib/Makefile.profile
$(top_builddir)/config.status: $(top_srcdir)/configure
cd $(top_builddir); ./config.status --recheck

514
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -235,30 +235,6 @@ then
fi
AC_SUBST(EVMS_ABI_CODE)
dnl
dnl handle --enable-dll-shlibs
dnl
AC_ARG_ENABLE([dll-shlibs],
[ --enable-dll-shlibs select DLL libraries],
if test "$enableval" = "no"
then
DLL_CMT=#
MAKEFILE_DLL=/dev/null
echo "Disabling DLL shared libraries"
else
DLL_CMT=
MAKEFILE_DLL=$srcdir/lib/Makefile.dll-lib
BINARY_TYPE=dllbin
LIB_EXT=.sa
echo "Enabling DLL shared libraries"
fi
,
MAKEFILE_DLL=/dev/null
DLL_CMT=#
echo "Disabling DLL shared libraries by default"
)
AC_SUBST(DLL_CMT)
AC_SUBST_FILE(MAKEFILE_DLL)
dnl
dnl handle --enable-elf-shlibs
dnl
AC_ARG_ENABLE([elf-shlibs],

View File

@ -1,101 +0,0 @@
#
# This is a Makefile stub which handles the creation of Linux DLL-style shared
# libraries.
#
# In order to use this stub, the following makefile variables must be defined.
#
# DLL_ADDRESS = 0x80000000
# DLL_JUMPSIZE = 0x1000
# DLL_GOTSIZE = 0x1000
# DLL_VERSION = 1.0
# DLL_IMAGE = libce
# DLL_STUB = libcom_err
# DLL_MYDIR = et
# DLL_INSTALL_DIR = $(SHLIBDIR)
#
all:: jump image stubs
subdirs:: jump jump/jump.funcs jump/jump.ignore jump/jump.import \
jump/jump.params jump/jump.undefs jump/jump.vars
jump:
mkdir jump
jump/jump.funcs: dll/jump.funcs
$(CP) $< $@
jump/jump.ignore: dll/jump.ignore
$(CP) $< $@
jump/jump.import: dll/jump.import
$(CP) $< $@
jump/jump.params: dll/jump.params
$(CP) $< $@
jump/jump.undefs: dll/jump.undefs
$(CP) $< $@
jump/jump.vars: dll/jump.vars
$(CP) $< $@
#
# This is a horrible hack to try to find libgcc.a --- the DLL documentation
# states that you should just be able to do -lgcc, but modern gcc
# installation packages don't install /usr/lib/libgcc.a --- as well they
# shouldn't since libgcc.a can be gcc version dependent.
# If this hack doesn't work, try replacing it with a hardcoded path to
# libgcc.a, or -lgcc.
#
#DLL_LIBGCC ="`$(CC) -v 2>&1 | head -n 1 | \
# sed -e 's;[^/]*;;' -e 's/specs/libgcc.a/'`"
DLL_LIBGCC ="`$(CC) --print-libgcc-file-name`"
image: $(DLL_IMAGE).so.$(DLL_VERSION)
stubs: $(DLL_STUB).sa $(OBJS)
$(DLL_IMAGE).so.$(DLL_VERSION): $(OBJS)
(cd jump; export JUMP_DIR=`pwd`; \
$(DLL_BIN)/mkimage -l $(DLL_IMAGE) -v $(DLL_VERSION) \
-a $(DLL_ADDRESS) -j $(DLL_JUMPSIZE) -g $(DLL_GOTSIZE) -- \
$(OBJS) -lc $(DLL_LIBS) $(DLL_LIBGCC) -lc)
$(MV) jump/$(DLL_IMAGE).so.$(DLL_VERSION) .
$(LN) -f $(DLL_IMAGE).so.$(DLL_VERSION) \
`echo ../$(DLL_IMAGE).so.$(DLL_VERSION) | \
sed -e 's/\.[0-9]*\$$//'`
$(DLL_STUB).sa:
(cd jump; export JUMP_DIR=`pwd`; \
$(DLL_BIN)/mkstubs -l $(DLL_IMAGE) -v $(DLL_VERSION) \
-a $(DLL_ADDRESS) -j $(DLL_JUMPSIZE) -g $(DLL_GOTSIZE) \
-- $(DLL_STUB))
$(MV) jump/$(DLL_STUB).sa .
$(RM) -f ../$@
$(LN) $@ ../$@
installdirs::
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(DLL_INSTALL_DIR)
install-shlibs install:: $(DLL_IMAGE).so.$(DLL_VERSION) installdirs
$(INSTALL_PROGRAM) $(DLL_IMAGE).so.$(DLL_VERSION) \
$(DESTDIR)$(DLL_INSTALL_DIR)/$(DLL_IMAGE).so.$(DLL_VERSION)
$(STRIP) $(DESTDIR)$(DLL_INSTALL_DIR)/$(DLL_IMAGE).so.$(DLL_VERSION)
-$(LDCONFIG)
uninstall-shlibs unistall::
$(RM) $(DESTDIR)$(DLL_INSTALL_DIR)/$(DLL_IMAGE).so.$(DLL_VERSION)
install:: $(DLL_STUB).sa
$(INSTALL_DATA) $(DLL_STUB).sa $(DESTDIR)$(libdir)/$(DLL_STUB).sa
$(CHMOD) 644 $(DESTDIR)$(libdir)/$(DLL_STUB).sa
$(RANLIB) $(DESTDIR)$(libdir)/$(DLL_STUB).sa
$(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/$(DLL_STUB).sa
clean::
$(RM) -f ../$(DLL_STUB).sa $(DLL_STUB).sa \
$(DLL_IMAGE).so.$(DLL_VERSION) ../$(DLL_IMAGE).so.*
$(RM) -rf jump

View File

@ -44,7 +44,6 @@ BSDLIB_MYDIR = blkid
BSDLIB_INSTALL_DIR = $(root_libdir)
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@
@ -57,8 +56,6 @@ DEPLIBS_BLKID= $(DEPSTATIC_LIBBLKID) $(DEPSTATIC_LIBUUID)
$(CC) $(ALL_CFLAGS) -c $< -o $@
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
@DLL_CMT@ -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<

View File

@ -33,15 +33,6 @@ HFILES= e2p.h
LIBRARY= libe2p
LIBDIR= e2p
DLL_ADDRESS = 0x66980000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
DLL_VERSION = 1.3
DLL_IMAGE = libe2p
DLL_STUB = libe2p
DLL_MYDIR = e2p
DLL_INSTALL_DIR = $(root_libdir)
ELF_VERSION = 2.3
ELF_SO_VERSION = 2
ELF_IMAGE = libe2p
@ -55,7 +46,6 @@ BSDLIB_MYDIR = e2p
BSDLIB_INSTALL_DIR = $(root_libdir)
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@
@ -65,8 +55,6 @@ BSDLIB_INSTALL_DIR = $(root_libdir)
$(CC) $(ALL_CFLAGS) -c $< -o $@
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
@DLL_CMT@ -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<

View File

@ -1,18 +0,0 @@
00000000 T _fgetflags libe2p fgetflags
00000000 T _fsetflags libe2p fsetflags
00000000 T _fgetversion libe2p fgetversion
00000000 T _fsetversion libe2p fsetversion
00000000 T _getflags libe2p getflags
00000000 T _getversion libe2p getversion
00000000 T _iterate_on_dir libe2p iod
00000000 T _list_super libe2p ls
00000000 T _print_fs_errors libe2p pe
00000000 T _print_flags libe2p pf
00000000 T _print_fs_state libe2p ps
00000000 T _setflags libe2p setflags
00000000 T _setversion libe2p setversion
00000000 T _e2p_is_null_uuid libe2p uuid
00000000 T _e2p_uuid_to_str libe2p uuid
00000000 T _e2p_feature2string libe2p feature
00000000 T _e2p_string2feature libe2p feature
00000000 T _e2p_edit_feature libe2p feature

View File

@ -1,164 +0,0 @@
/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
/usr/lib/libc.sa(__libc.o):6008f060 A _AM
/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
/usr/lib/libc.sa(__libc.o):6008f064 A _BS
/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
/usr/lib/libc.sa(__libc.o):6008f068 A _CA
/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
/usr/lib/libc.sa(__libc.o):6008f06c A _DA
/usr/lib/libc.sa(__libc.o):6008f070 A _DB
/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
/usr/lib/libc.sa(__libc.o):6008f074 A _EO
/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
/usr/lib/libc.sa(__libc.o):6008f078 A _HC
/usr/lib/libc.sa(__libc.o):6008f118 A _HO
/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
/usr/lib/libc.sa(__libc.o):6008f11c A _IC
/usr/lib/libc.sa(__libc.o):6008f120 A _IM
/usr/lib/libc.sa(__libc.o):6008f080 A _IN
/usr/lib/libc.sa(__libc.o):6008f124 A _IP
/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
/usr/lib/libc.sa(__libc.o):6008f100 A _K4
/usr/lib/libc.sa(__libc.o):6008f104 A _K5
/usr/lib/libc.sa(__libc.o):6008f108 A _K6
/usr/lib/libc.sa(__libc.o):6008f10c A _K7
/usr/lib/libc.sa(__libc.o):6008f110 A _K8
/usr/lib/libc.sa(__libc.o):6008f114 A _K9
/usr/lib/libc.sa(__libc.o):6008f128 A _KD
/usr/lib/libc.sa(__libc.o):6008f12c A _KE
/usr/lib/libc.sa(__libc.o):6008f130 A _KH
/usr/lib/libc.sa(__libc.o):6008f134 A _KL
/usr/lib/libc.sa(__libc.o):6008f138 A _KR
/usr/lib/libc.sa(__libc.o):6008f13c A _KS
/usr/lib/libc.sa(__libc.o):6008f140 A _KU
/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
/usr/lib/libc.sa(__libc.o):6008f144 A _LL
/usr/lib/libc.sa(__libc.o):6008f148 A _MA
/usr/lib/libc.sa(__libc.o):6008f300 A _MCAppPath
/usr/lib/libc.sa(__libc.o):6008f084 A _MI
/usr/lib/libc.sa(__libc.o):6008f088 A _MS
/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
/usr/lib/libc.sa(__libc.o):6008f08c A _NC
/usr/lib/libc.sa(__libc.o):6008f14c A _ND
/usr/lib/libc.sa(__libc.o):6008f150 A _NL
/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
/usr/lib/libc.sa(__libc.o):6008f090 A _NS
/usr/lib/libc.sa(__libc.o):6008f094 A _OS
/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
/usr/lib/libc.sa(__libc.o):6008f154 A _RC
/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
/usr/lib/libc.sa(__libc.o):6008f158 A _SC
/usr/lib/libc.sa(__libc.o):6008f15c A _SE
/usr/lib/libc.sa(__libc.o):6008f160 A _SF
/usr/lib/libc.sa(__libc.o):6008f164 A _SO
/usr/lib/libc.sa(__libc.o):6008f168 A _SR
/usr/lib/libc.sa(__libc.o):6008f16c A _TA
/usr/lib/libc.sa(__libc.o):6008f170 A _TE
/usr/lib/libc.sa(__libc.o):6008f174 A _TI
/usr/lib/libc.sa(__libc.o):6008f178 A _UC
/usr/lib/libc.sa(__libc.o):6008f17c A _UE
/usr/lib/libc.sa(__libc.o):6008f098 A _UL
/usr/lib/libc.sa(__libc.o):6008f180 A _UP
/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
/usr/lib/libc.sa(__libc.o):6008f188 A _US
/usr/lib/libc.sa(__libc.o):6008f18c A _VB
/usr/lib/libc.sa(__libc.o):6008f194 A _VE
/usr/lib/libc.sa(__libc.o):6008f190 A _VS
/usr/lib/libc.sa(__libc.o):6008f09c A _XB
/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
/usr/lib/libc.sa(__libc.o):6008f2a4 A __IO_file_jumps
/usr/lib/libc.sa(__libc.o):6008f1f4 A __IO_list_all
/usr/lib/libc.sa(__libc.o):6008f2a8 A __IO_proc_jumps
/usr/lib/libc.sa(__libc.o):6008f1ec A __IO_stderr_
/usr/lib/libc.sa(__libc.o):6008f1e4 A __IO_stdin_
/usr/lib/libc.sa(__libc.o):6008f1e8 A __IO_stdout_
/usr/lib/libc.sa(__libc.o):6008f2ac A __IO_str_jumps
/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
/usr/lib/libc.sa(__libc.o):6008f1dc A __res
/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
/usr/lib/libc.sa(__libc.o):6008f05c A __tty
/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
/usr/lib/libc.sa(__libc.o):6008f27c A __win
/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
/usr/lib/libc.sa(__libc.o):6008f200 A _errno
/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
/usr/lib/libc.sa(__libc.o):6008f208 A _optind
/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
/usr/lib/libc.sa(__libc.o):6008f220 A _tzname

View File

@ -1,6 +0,0 @@
Name=libe2p
Text=0x66980000
Data=0x00000000
Jump=0x00001000
GOT=0x00001000
Version=1.3.0

View File

@ -1 +0,0 @@
66982040 D __NEEDS_SHRLIB_libc_4

View File

View File

@ -25,15 +25,6 @@ SHARE_FILES= et_c.awk et_h.awk
LIBRARY= libcom_err
LIBDIR= et
DLL_ADDRESS = 0x66800000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
DLL_VERSION = 1.1
DLL_IMAGE = libet
DLL_STUB = libcom_err
DLL_MYDIR = et
DLL_INSTALL_DIR = $(root_libdir)
ELF_VERSION = 2.1
ELF_SO_VERSION = 2
ELF_IMAGE = libcom_err
@ -53,13 +44,10 @@ BSDLIB_INSTALL_DIR = $(root_libdir)
$(CC) $(ALL_CFLAGS) -c $< -o $@
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
@DLL_CMT@ -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@

View File

@ -1,6 +0,0 @@
00000000 T _error_message libcom_err jump/error_message
00000000 T _init_error_table libcom_err jump/init_et
00000000 T _com_err_va libcom_err jump/com_err
00000000 T _com_err libcom_err jump/com_err
00000000 T _set_com_err_hook libcom_err jump/com_err
00000000 T _reset_com_err_hook libcom_err jump/com_err

View File

@ -1 +0,0 @@
00000000 T _error_table_name libxyzzy jump/et_name

View File

@ -1,164 +0,0 @@
/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
/usr/lib/libc.sa(__libc.o):6008f060 A _AM
/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
/usr/lib/libc.sa(__libc.o):6008f064 A _BS
/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
/usr/lib/libc.sa(__libc.o):6008f068 A _CA
/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
/usr/lib/libc.sa(__libc.o):6008f06c A _DA
/usr/lib/libc.sa(__libc.o):6008f070 A _DB
/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
/usr/lib/libc.sa(__libc.o):6008f074 A _EO
/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
/usr/lib/libc.sa(__libc.o):6008f078 A _HC
/usr/lib/libc.sa(__libc.o):6008f118 A _HO
/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
/usr/lib/libc.sa(__libc.o):6008f11c A _IC
/usr/lib/libc.sa(__libc.o):6008f120 A _IM
/usr/lib/libc.sa(__libc.o):6008f080 A _IN
/usr/lib/libc.sa(__libc.o):6008f124 A _IP
/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
/usr/lib/libc.sa(__libc.o):6008f100 A _K4
/usr/lib/libc.sa(__libc.o):6008f104 A _K5
/usr/lib/libc.sa(__libc.o):6008f108 A _K6
/usr/lib/libc.sa(__libc.o):6008f10c A _K7
/usr/lib/libc.sa(__libc.o):6008f110 A _K8
/usr/lib/libc.sa(__libc.o):6008f114 A _K9
/usr/lib/libc.sa(__libc.o):6008f128 A _KD
/usr/lib/libc.sa(__libc.o):6008f12c A _KE
/usr/lib/libc.sa(__libc.o):6008f130 A _KH
/usr/lib/libc.sa(__libc.o):6008f134 A _KL
/usr/lib/libc.sa(__libc.o):6008f138 A _KR
/usr/lib/libc.sa(__libc.o):6008f13c A _KS
/usr/lib/libc.sa(__libc.o):6008f140 A _KU
/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
/usr/lib/libc.sa(__libc.o):6008f144 A _LL
/usr/lib/libc.sa(__libc.o):6008f148 A _MA
/usr/lib/libc.sa(__libc.o):6008f300 A _MCAppPath
/usr/lib/libc.sa(__libc.o):6008f084 A _MI
/usr/lib/libc.sa(__libc.o):6008f088 A _MS
/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
/usr/lib/libc.sa(__libc.o):6008f08c A _NC
/usr/lib/libc.sa(__libc.o):6008f14c A _ND
/usr/lib/libc.sa(__libc.o):6008f150 A _NL
/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
/usr/lib/libc.sa(__libc.o):6008f090 A _NS
/usr/lib/libc.sa(__libc.o):6008f094 A _OS
/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
/usr/lib/libc.sa(__libc.o):6008f154 A _RC
/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
/usr/lib/libc.sa(__libc.o):6008f158 A _SC
/usr/lib/libc.sa(__libc.o):6008f15c A _SE
/usr/lib/libc.sa(__libc.o):6008f160 A _SF
/usr/lib/libc.sa(__libc.o):6008f164 A _SO
/usr/lib/libc.sa(__libc.o):6008f168 A _SR
/usr/lib/libc.sa(__libc.o):6008f16c A _TA
/usr/lib/libc.sa(__libc.o):6008f170 A _TE
/usr/lib/libc.sa(__libc.o):6008f174 A _TI
/usr/lib/libc.sa(__libc.o):6008f178 A _UC
/usr/lib/libc.sa(__libc.o):6008f17c A _UE
/usr/lib/libc.sa(__libc.o):6008f098 A _UL
/usr/lib/libc.sa(__libc.o):6008f180 A _UP
/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
/usr/lib/libc.sa(__libc.o):6008f188 A _US
/usr/lib/libc.sa(__libc.o):6008f18c A _VB
/usr/lib/libc.sa(__libc.o):6008f194 A _VE
/usr/lib/libc.sa(__libc.o):6008f190 A _VS
/usr/lib/libc.sa(__libc.o):6008f09c A _XB
/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
/usr/lib/libc.sa(__libc.o):6008f2a4 A __IO_file_jumps
/usr/lib/libc.sa(__libc.o):6008f1f4 A __IO_list_all
/usr/lib/libc.sa(__libc.o):6008f2a8 A __IO_proc_jumps
/usr/lib/libc.sa(__libc.o):6008f1ec A __IO_stderr_
/usr/lib/libc.sa(__libc.o):6008f1e4 A __IO_stdin_
/usr/lib/libc.sa(__libc.o):6008f1e8 A __IO_stdout_
/usr/lib/libc.sa(__libc.o):6008f2ac A __IO_str_jumps
/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
/usr/lib/libc.sa(__libc.o):6008f1dc A __res
/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
/usr/lib/libc.sa(__libc.o):6008f05c A __tty
/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
/usr/lib/libc.sa(__libc.o):6008f27c A __win
/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
/usr/lib/libc.sa(__libc.o):6008f200 A _errno
/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
/usr/lib/libc.sa(__libc.o):6008f208 A _optind
/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
/usr/lib/libc.sa(__libc.o):6008f220 A _tzname

View File

@ -1,6 +0,0 @@
Name=libet
Text=0x66800000
Data=0x00000000
Jump=0x00001000
GOT=0x00001000
Version=1.0.0

View File

@ -1 +0,0 @@
66803000 D __NEEDS_SHRLIB_libc_4

View File

@ -1,2 +0,0 @@
00000004 D __et_list libcom_err jump/error_message
00000004 D _com_err_hook libcom_err jump/com_err

View File

@ -134,16 +134,6 @@ HFILES_IN= ext2_err.h ext2_types.h
LIBRARY= libext2fs
LIBDIR= ext2fs
DLL_ADDRESS = 0x66900000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
DLL_VERSION = 1.2
DLL_IMAGE = libe2fs
DLL_STUB = libext2fs
DLL_LIBS = -L../.. -lcom_err
DLL_MYDIR = ext2fs
DLL_INSTALL_DIR = $(root_libdir)
ELF_VERSION = 2.4
ELF_SO_VERSION = 2
ELF_IMAGE = libext2fs
@ -157,7 +147,6 @@ BSDLIB_MYDIR = ext2fs
BSDLIB_INSTALL_DIR = $(root_libdir)
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@
@ -167,8 +156,6 @@ BSDLIB_INSTALL_DIR = $(root_libdir)
$(CC) $(ALL_CFLAGS) -c $< -o $@
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
@DLL_CMT@ -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<

View File

@ -1,178 +0,0 @@
00000000 T _ext2fs_open libext2fs openfs
00000000 T _ext2fs_check_desc libext2fs openfs
00000000 T _ext2fs_free libext2fs freefs
00000000 T _ext2fs_flush libext2fs closefs
00000000 T _ext2fs_close libext2fs closefs
00000000 T _ext2fs_allocate_inode_bitmap libext2fs bitmaps
00000000 T _ext2fs_allocate_block_bitmap libext2fs bitmaps
00000000 T _ext2fs_free_inode_bitmap libext2fs bitmaps
00000000 T _ext2fs_free_block_bitmap libext2fs bitmaps
00000000 T _ext2fs_fudge_inode_bitmap_end libext2fs bitmaps
00000000 T _ext2fs_fudge_block_bitmap_end libext2fs bitmaps
00000000 T _ext2fs_clear_inode_bitmap libext2fs bitmaps
00000000 T _ext2fs_clear_block_bitmap libext2fs bitmaps
00000000 T _ext2fs_write_inode_bitmap libext2fs rw_bitmaps
00000000 T _ext2fs_write_block_bitmap libext2fs rw_bitmaps
00000000 T _ext2fs_read_inode_bitmap libext2fs rw_bitmaps
00000000 T _ext2fs_read_block_bitmap libext2fs rw_bitmaps
00000000 T _ext2fs_read_bitmaps libext2fs rw_bitmaps
00000000 T _ext2fs_write_bitmaps libext2fs rw_bitmaps
00000000 T _ext2fs_open_inode_scan libext2fs inode
00000000 T _ext2fs_close_inode_scan libext2fs inode
00000000 T _ext2fs_get_next_inode libext2fs inode
00000000 T _ext2fs_read_inode libext2fs inode
00000000 T _ext2fs_write_inode libext2fs inode
00000000 T _ext2fs_get_blocks libext2fs inode
00000000 T _ext2fs_check_directory libext2fs inode
00000000 T _ext2fs_block_iterate libext2fs block
00000000 T _ext2fs_dir_iterate libext2fs namei
00000000 T _ext2fs_lookup libext2fs namei
00000000 T _ext2fs_namei libext2fs namei
00000000 T _ext2fs_new_dir_block libext2fs newdir
00000000 T _ext2fs_mkdir libext2fs mkdir
00000000 T _ext2fs_get_pathname libext2fs get_pathname
00000000 T _ext2fs_warn_bitmap libext2fs bitops
00000000 T _ext2fs_link libext2fs link
00000000 T _ext2fs_unlink libext2fs link
00000000 T _ext2fs_new_inode libext2fs alloc
00000000 T _ext2fs_new_block libext2fs alloc
00000000 T _ext2fs_get_free_blocks libext2fs alloc
00000000 T _ext2fs_expand_dir libext2fs expanddir
00000000 T _ext2fs_set_bit libext2fs inline
00000000 T _ext2fs_clear_bit libext2fs inline
00000000 T _ext2fs_test_bit libext2fs inline
00000000 T _ext2fs_mark_block_bitmap libext2fs inline
00000000 T _ext2fs_unmark_block_bitmap libext2fs inline
00000000 T _ext2fs_test_block_bitmap libext2fs inline
00000000 T _ext2fs_mark_inode_bitmap libext2fs inline
00000000 T _ext2fs_unmark_inode_bitmap libext2fs inline
00000000 T _ext2fs_test_inode_bitmap libext2fs inline
00000000 T _ext2fs_mark_super_dirty libext2fs inline
00000000 T _ext2fs_mark_changed libext2fs inline
00000000 T _ext2fs_test_changed libext2fs inline
00000000 T _ext2fs_mark_valid libext2fs inline
00000000 T _ext2fs_unmark_valid libext2fs inline
00000000 T _ext2fs_test_valid libext2fs inline
00000000 T _ext2fs_mark_ib_dirty libext2fs inline
00000000 T _ext2fs_mark_bb_dirty libext2fs inline
00000000 T _ext2fs_test_ib_dirty libext2fs inline
00000000 T _ext2fs_test_bb_dirty libext2fs inline
00000000 T _ext2fs_group_of_blk libext2fs inline
00000000 T _ext2fs_group_of_ino libext2fs inline
00000000 T _ext2fs_initialize libext2fs initialize
00000000 T _badblocks_list_create libext2fs badblocks
00000000 T _badblocks_list_free libext2fs badblocks
00000000 T _badblocks_list_add libext2fs badblocks
00000000 T _badblocks_list_test libext2fs badblocks
00000000 T _badblocks_list_iterate_begin libext2fs badblocks
00000000 T _badblocks_list_iterate libext2fs badblocks
00000000 T _badblocks_list_iterate_end libext2fs badblocks
00000000 T _ext2fs_read_bb_inode libext2fs read_bb
00000000 T _ext2fs_update_bb_inode libext2fs bb_inode
00000000 T _ext2fs_read_bb_FILE libext2fs read_bb_file
00000000 T _initialize_ext2_error_table libext2fs ext2_err
00000000 T _ext2fs_llseek libext2fs llseek
00000000 T _ext2fs_set_inode_callback libext2fs inode
00000000 T _ext2fs_compare_block_bitmap libext2fs cmp_bitmaps
00000000 T _ext2fs_compare_inode_bitmap libext2fs cmp_bitmaps
00000000 T _ext2fs_read_dir_block libext2fs dirblock
00000000 T _ext2fs_write_dir_block libext2fs dirblock
00000000 T _ext2fs_swab16 libext2fs inline
00000000 T _ext2fs_swab32 libext2fs inline
00000000 T _ext2fs_fast_mark_block_bitmap libext2fs inline
00000000 T _ext2fs_fast_unmark_block_bitmap libext2fs inline
00000000 T _ext2fs_fast_test_block_bitmap libext2fs inline
00000000 T _ext2fs_fast_mark_inode_bitmap libext2fs inline
00000000 T _ext2fs_fast_unmark_inode_bitmap libext2fs inline
00000000 T _ext2fs_fast_test_inode_bitmap libext2fs inline
00000000 T _ext2fs_get_block_bitmap_start libext2fs inline
00000000 T _ext2fs_get_inode_bitmap_start libext2fs inline
00000000 T _ext2fs_get_block_bitmap_end libext2fs inline
00000000 T _ext2fs_get_inode_bitmap_end libext2fs inline
00000000 T _ext2fs_swap_super libext2fs swapfs
00000000 T _ext2fs_swap_group_desc libext2fs swapfs
00000000 T _ext2fs_get_device_size libext2fs getsize
00000000 T _ext2fs_check_if_mounted libext2fs ismounted
00000000 T _ext2fs_allocate_tables libext2fs alloc_tables
00000000 T _ext2fs_allocate_generic_bitmap libext2fs bitmaps
00000000 T _ext2fs_warn_bitmap2 libext2fs bitops
00000000 T _ext2fs_free_generic_bitmap libext2fs freefs
00000000 T _ext2fs_mark_generic_bitmap libext2fs inline
00000000 T _ext2fs_unmark_generic_bitmap libext2fs inline
00000000 T _ext2fs_test_generic_bitmap libext2fs inline
00000000 T _ext2fs_namei_follow libext2fs namei
00000000 T _ext2fs_follow_link libext2fs namei
00000000 T _ext2fs_native_flag libext2fs native
00000000 T _ext2fs_swap_inode libext2fs swapfs
00000000 T _ext2fs_block_iterate2 libext2fs block
00000000 T _ext2fs_inode_scan_goto_blockgroup libext2fs inode
00000000 T _ext2fs_badblocks_list_create libext2fs badblocks
00000000 T _ext2fs_badblocks_list_add libext2fs badblocks
00000000 T _ext2fs_badblocks_list_test libext2fs badblocks
00000000 T _ext2fs_badblocks_list_iterate_begin libext2fs badblocks
00000000 T _ext2fs_badblocks_list_iterate libext2fs badblocks
00000000 T _ext2fs_badblocks_list_iterate_end libext2fs badblocks
#00000000 U _ext2fs_brel_memarray_create libext2fs brel_ma
00000000 T __DUMMY__ libext2fs brel_ma
00000000 T _ext2fs_badblocks_list_free libext2fs closefs
00000000 T _ext2fs_free_dblist libext2fs closefs
00000000 T _ext2fs_get_num_dirs libext2fs dblist
00000000 T _ext2fs_init_dblist libext2fs dblist
00000000 T _ext2fs_add_dir_block libext2fs dblist
00000000 T _ext2fs_dblist_iterate libext2fs dblist
00000000 T _ext2fs_dblist_dir_iterate libext2fs dblist_dir
00000000 T _ext2fs_process_dir_block libext2fs dir_iterate
00000000 T _ext2fs_test_block_bitmap_range libext2fs inline
00000000 T _ext2fs_fast_test_block_bitmap_range libext2fs inline
00000000 T _ext2fs_mark_block_bitmap_range libext2fs inline
00000000 T _ext2fs_fast_mark_block_bitmap_range libext2fs inline
00000000 T _ext2fs_unmark_block_bitmap_range libext2fs inline
00000000 T _ext2fs_fast_unmark_block_bitmap_range libext2fs inline
00000000 T _ext2fs_inode_scan_flags libext2fs inode
#00000000 U _ext2fs_irel_memarray_create libext2fs irel_ma
00000000 U __DUMMY__ libext2fs irel_ma
00000000 T _ext2fs_resize_generic_bitmap libext2fs rs_bitmap
00000000 T _ext2fs_inode_has_valid_blocks libext2fs valid_blk
00000000 T _ext2fs_free_icount libext2fs icount
00000000 T _ext2fs_create_icount libext2fs icount
00000000 T _ext2fs_icount_fetch libext2fs icount
00000000 T _ext2fs_icount_increment libext2fs icount
00000000 T _ext2fs_icount_decrement libext2fs icount
00000000 T _ext2fs_icount_store libext2fs icount
00000000 T _ext2fs_get_icount_size libext2fs icount
00000000 T _ext2fs_create_icount2 libext2fs icount
00000000 T _ext2fs_get_library_version libext2fs version
00000000 T _ext2fs_parse_version_string libext2fs version
00000000 T _ext2fs_set_dir_block libext2fs dblist
00000000 T _ext2fs_badblocks_copy libext2fs badblocks
00000000 T _ext2fs_copy_bitmap libext2fs bitmaps
00000000 T _ext2fs_bg_has_super libext2fs closefs
00000000 T _ext2fs_copy_dblist libext2fs dblist
00000000 T _ext2fs_dup_handle libext2fs dupfs
00000000 T _ext2fs_icount_validate libext2fs icount
00000000 T _ext2fs_resize_inode_bitmap libext2fs rs_bitmap
00000000 T _ext2fs_resize_block_bitmap libext2fs rs_bitmap
00000000 T _ext2fs_dblist_count libext2fs dblist
00000000 T _ext2fs_alloc_block libext2fs alloc
00000000 T _ext2fs_allocate_group_table libext2fs alloc_tables
00000000 T _ext2fs_set_bitmap_padding libext2fs bitmaps
00000000 T _ext2fs_bmap libext2fs bmap
#00000000 T _ext2fs_move_blocks libext2fs bmove
00000000 T __DUMMY__ libext2fs bmove
00000000 T _ext2fs_file_open libext2fs fileio
00000000 T _ext2fs_file_get_fs libext2fs fileio
00000000 T _ext2fs_file_close libext2fs fileio
00000000 T _ext2fs_file_read libext2fs fileio
00000000 T _ext2fs_file_write libext2fs fileio
00000000 T _ext2fs_file_lseek libext2fs fileio
00000000 T _ext2fs_file_get_size libext2fs fileio
00000000 T _ext2fs_file_set_size libext2fs fileio
00000000 T _ext2fs_get_mem libext2fs inline
00000000 T _ext2fs_free_mem libext2fs inline
00000000 T _ext2fs_resize_mem libext2fs inline
00000000 T _ext2fs_read_bb_FILE2 libext2fs read_bb_file
00000000 T _ext2fs_write_bb_FILE libext2fs write_bb_file
00000000 T _ext2fs_badblocks_equal libext2fs badblocks
00000000 T _ext2fs_update_dynamic_rev libext2fs closefs
00000000 T _ext2fs_sync_device libext2fs flushb

View File

@ -1,166 +0,0 @@
00000004 D __et_list libcom_err jump/error_message
00000004 D _com_err_hook libcom_err jump/com_err
/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
/usr/lib/libc.sa(__libc.o):6008f060 A _AM
/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
/usr/lib/libc.sa(__libc.o):6008f064 A _BS
/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
/usr/lib/libc.sa(__libc.o):6008f068 A _CA
/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
/usr/lib/libc.sa(__libc.o):6008f06c A _DA
/usr/lib/libc.sa(__libc.o):6008f070 A _DB
/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
/usr/lib/libc.sa(__libc.o):6008f074 A _EO
/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
/usr/lib/libc.sa(__libc.o):6008f078 A _HC
/usr/lib/libc.sa(__libc.o):6008f118 A _HO
/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
/usr/lib/libc.sa(__libc.o):6008f11c A _IC
/usr/lib/libc.sa(__libc.o):6008f120 A _IM
/usr/lib/libc.sa(__libc.o):6008f080 A _IN
/usr/lib/libc.sa(__libc.o):6008f124 A _IP
/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
/usr/lib/libc.sa(__libc.o):6008f100 A _K4
/usr/lib/libc.sa(__libc.o):6008f104 A _K5
/usr/lib/libc.sa(__libc.o):6008f108 A _K6
/usr/lib/libc.sa(__libc.o):6008f10c A _K7
/usr/lib/libc.sa(__libc.o):6008f110 A _K8
/usr/lib/libc.sa(__libc.o):6008f114 A _K9
/usr/lib/libc.sa(__libc.o):6008f128 A _KD
/usr/lib/libc.sa(__libc.o):6008f12c A _KE
/usr/lib/libc.sa(__libc.o):6008f130 A _KH
/usr/lib/libc.sa(__libc.o):6008f134 A _KL
/usr/lib/libc.sa(__libc.o):6008f138 A _KR
/usr/lib/libc.sa(__libc.o):6008f13c A _KS
/usr/lib/libc.sa(__libc.o):6008f140 A _KU
/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
/usr/lib/libc.sa(__libc.o):6008f144 A _LL
/usr/lib/libc.sa(__libc.o):6008f148 A _MA
/usr/lib/libc.sa(__libc.o):6008f300 A _MCAppPath
/usr/lib/libc.sa(__libc.o):6008f084 A _MI
/usr/lib/libc.sa(__libc.o):6008f088 A _MS
/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
/usr/lib/libc.sa(__libc.o):6008f08c A _NC
/usr/lib/libc.sa(__libc.o):6008f14c A _ND
/usr/lib/libc.sa(__libc.o):6008f150 A _NL
/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
/usr/lib/libc.sa(__libc.o):6008f090 A _NS
/usr/lib/libc.sa(__libc.o):6008f094 A _OS
/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
/usr/lib/libc.sa(__libc.o):6008f154 A _RC
/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
/usr/lib/libc.sa(__libc.o):6008f158 A _SC
/usr/lib/libc.sa(__libc.o):6008f15c A _SE
/usr/lib/libc.sa(__libc.o):6008f160 A _SF
/usr/lib/libc.sa(__libc.o):6008f164 A _SO
/usr/lib/libc.sa(__libc.o):6008f168 A _SR
/usr/lib/libc.sa(__libc.o):6008f16c A _TA
/usr/lib/libc.sa(__libc.o):6008f170 A _TE
/usr/lib/libc.sa(__libc.o):6008f174 A _TI
/usr/lib/libc.sa(__libc.o):6008f178 A _UC
/usr/lib/libc.sa(__libc.o):6008f17c A _UE
/usr/lib/libc.sa(__libc.o):6008f098 A _UL
/usr/lib/libc.sa(__libc.o):6008f180 A _UP
/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
/usr/lib/libc.sa(__libc.o):6008f188 A _US
/usr/lib/libc.sa(__libc.o):6008f18c A _VB
/usr/lib/libc.sa(__libc.o):6008f194 A _VE
/usr/lib/libc.sa(__libc.o):6008f190 A _VS
/usr/lib/libc.sa(__libc.o):6008f09c A _XB
/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
/usr/lib/libc.sa(__libc.o):6008f2a4 A __IO_file_jumps
/usr/lib/libc.sa(__libc.o):6008f1f4 A __IO_list_all
/usr/lib/libc.sa(__libc.o):6008f2a8 A __IO_proc_jumps
/usr/lib/libc.sa(__libc.o):6008f1ec A __IO_stderr_
/usr/lib/libc.sa(__libc.o):6008f1e4 A __IO_stdin_
/usr/lib/libc.sa(__libc.o):6008f1e8 A __IO_stdout_
/usr/lib/libc.sa(__libc.o):6008f2ac A __IO_str_jumps
/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
/usr/lib/libc.sa(__libc.o):6008f1dc A __res
/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
/usr/lib/libc.sa(__libc.o):6008f05c A __tty
/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
/usr/lib/libc.sa(__libc.o):6008f27c A __win
/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
/usr/lib/libc.sa(__libc.o):6008f200 A _errno
/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
/usr/lib/libc.sa(__libc.o):6008f208 A _optind
/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
/usr/lib/libc.sa(__libc.o):6008f220 A _tzname

View File

@ -1,6 +0,0 @@
Name=libe2fs
Text=0x66900000
Data=0x00000000
Jump=0x00001000
GOT=0x00001000
Version=1.2.0

View File

@ -1,2 +0,0 @@
6690b080 D __NEEDS_SHRLIB_libc_4
6690b098 D __NEEDS_SHRLIB_libet_1

View File

@ -1,6 +0,0 @@
00000004 D _unix_io_manager libext2fs unix_io
00000004 D _test_io_manager libext2fs test_io
00000004 D _test_io_backing_manager libext2fs test_io
00000004 D _test_io_cb_read_blk libext2fs test_io
00000004 D _test_io_cb_write_blk libext2fs test_io
00000004 D _test_io_cb_set_blksize libext2fs test_io

View File

@ -15,16 +15,6 @@ DLOPEN_LIB = @DLOPEN_LIB@
LIBRARY= libss
LIBDIR= ss
DLL_ADDRESS = 0x66880000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
DLL_VERSION = 1.0
DLL_IMAGE = libss
DLL_STUB = libss
DLL_LIBS = -L../.. -lcom_err $(DLOPEN_LIB)
DLL_MYDIR = ss
DLL_INSTALL_DIR = $(root_libdir)
ELF_VERSION = 2.0
ELF_SO_VERSION = 2
ELF_IMAGE = libss
@ -50,8 +40,6 @@ XTRA_CFLAGS= -I$(srcdir)/../et
$(CC) $(ALL_CFLAGS) -c $<
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) \
@DLL_CMT@ $(ALL_CFLAGS) -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -DSHARED_ELF_LIB -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<
@ -77,7 +65,6 @@ SRCS= $(srcdir)/invocation.c $(srcdir)/help.c \
all:: mk_cmds
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@

View File

@ -1,26 +0,0 @@
00000000 T _initialize_ss_error_table libss jump/ss_err
00000000 T _ss_create_invocation libss jump/invocation
00000000 T _ss_delete_invocation libss jump/invocation
00000000 T _ss_help libss jump/help
00000000 T _ss_add_info_dir libss jump/help
00000000 T _ss_delete_info_dir libss jump/help
00000000 T _ss_execute_command libss jump/execute_cmd
00000000 T _ss_execute_line libss jump/execute_cmd
00000000 T _ss_listen libss jump/listen
00000000 T _ss_abort_subsystem libss jump/listen
00000000 T _ss_quit libss jump/listen
00000000 T _ss_parse libss jump/parse
00000000 T _ss_name libss jump/error
00000000 T _ss_error libss jump/error
00000000 T _ss_perror libss jump/error
00000000 T _ss_set_prompt libss jump/prompt
00000000 T _ss_get_prompt libss jump/prompt
00000000 T _ss_add_request_table libss jump/request_tbl
00000000 T _ss_delete_request_table libss jump/request_tbl
00000000 T _ss_list_requests libss jump/list_rqs
00000000 T _ss_pager_create libss jump/pager
00000000 T _ss_page_stdin libss jump/pager
00000000 T _ss_self_identify libss jump/requests
00000000 T _ss_subsystem_name libss jump/requests
00000000 T _ss_subsystem_version libss jump/requests
00000000 T _ss_unimplemented libss jump/requests

View File

View File

@ -1,166 +0,0 @@
00000004 D __et_list libcom_err jump/error_message
00000004 D _com_err_hook libcom_err jump/com_err
/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
/usr/lib/libc.sa(__libc.o):6008f060 A _AM
/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
/usr/lib/libc.sa(__libc.o):6008f064 A _BS
/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
/usr/lib/libc.sa(__libc.o):6008f068 A _CA
/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
/usr/lib/libc.sa(__libc.o):6008f06c A _DA
/usr/lib/libc.sa(__libc.o):6008f070 A _DB
/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
/usr/lib/libc.sa(__libc.o):6008f074 A _EO
/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
/usr/lib/libc.sa(__libc.o):6008f078 A _HC
/usr/lib/libc.sa(__libc.o):6008f118 A _HO
/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
/usr/lib/libc.sa(__libc.o):6008f11c A _IC
/usr/lib/libc.sa(__libc.o):6008f120 A _IM
/usr/lib/libc.sa(__libc.o):6008f080 A _IN
/usr/lib/libc.sa(__libc.o):6008f124 A _IP
/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
/usr/lib/libc.sa(__libc.o):6008f100 A _K4
/usr/lib/libc.sa(__libc.o):6008f104 A _K5
/usr/lib/libc.sa(__libc.o):6008f108 A _K6
/usr/lib/libc.sa(__libc.o):6008f10c A _K7
/usr/lib/libc.sa(__libc.o):6008f110 A _K8
/usr/lib/libc.sa(__libc.o):6008f114 A _K9
/usr/lib/libc.sa(__libc.o):6008f128 A _KD
/usr/lib/libc.sa(__libc.o):6008f12c A _KE
/usr/lib/libc.sa(__libc.o):6008f130 A _KH
/usr/lib/libc.sa(__libc.o):6008f134 A _KL
/usr/lib/libc.sa(__libc.o):6008f138 A _KR
/usr/lib/libc.sa(__libc.o):6008f13c A _KS
/usr/lib/libc.sa(__libc.o):6008f140 A _KU
/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
/usr/lib/libc.sa(__libc.o):6008f144 A _LL
/usr/lib/libc.sa(__libc.o):6008f148 A _MA
/usr/lib/libc.sa(__libc.o):6008f300 A _MCAppPath
/usr/lib/libc.sa(__libc.o):6008f084 A _MI
/usr/lib/libc.sa(__libc.o):6008f088 A _MS
/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
/usr/lib/libc.sa(__libc.o):6008f08c A _NC
/usr/lib/libc.sa(__libc.o):6008f14c A _ND
/usr/lib/libc.sa(__libc.o):6008f150 A _NL
/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
/usr/lib/libc.sa(__libc.o):6008f090 A _NS
/usr/lib/libc.sa(__libc.o):6008f094 A _OS
/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
/usr/lib/libc.sa(__libc.o):6008f154 A _RC
/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
/usr/lib/libc.sa(__libc.o):6008f158 A _SC
/usr/lib/libc.sa(__libc.o):6008f15c A _SE
/usr/lib/libc.sa(__libc.o):6008f160 A _SF
/usr/lib/libc.sa(__libc.o):6008f164 A _SO
/usr/lib/libc.sa(__libc.o):6008f168 A _SR
/usr/lib/libc.sa(__libc.o):6008f16c A _TA
/usr/lib/libc.sa(__libc.o):6008f170 A _TE
/usr/lib/libc.sa(__libc.o):6008f174 A _TI
/usr/lib/libc.sa(__libc.o):6008f178 A _UC
/usr/lib/libc.sa(__libc.o):6008f17c A _UE
/usr/lib/libc.sa(__libc.o):6008f098 A _UL
/usr/lib/libc.sa(__libc.o):6008f180 A _UP
/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
/usr/lib/libc.sa(__libc.o):6008f188 A _US
/usr/lib/libc.sa(__libc.o):6008f18c A _VB
/usr/lib/libc.sa(__libc.o):6008f194 A _VE
/usr/lib/libc.sa(__libc.o):6008f190 A _VS
/usr/lib/libc.sa(__libc.o):6008f09c A _XB
/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
/usr/lib/libc.sa(__libc.o):6008f2a4 A __IO_file_jumps
/usr/lib/libc.sa(__libc.o):6008f1f4 A __IO_list_all
/usr/lib/libc.sa(__libc.o):6008f2a8 A __IO_proc_jumps
/usr/lib/libc.sa(__libc.o):6008f1ec A __IO_stderr_
/usr/lib/libc.sa(__libc.o):6008f1e4 A __IO_stdin_
/usr/lib/libc.sa(__libc.o):6008f1e8 A __IO_stdout_
/usr/lib/libc.sa(__libc.o):6008f2ac A __IO_str_jumps
/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
/usr/lib/libc.sa(__libc.o):6008f1dc A __res
/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
/usr/lib/libc.sa(__libc.o):6008f05c A __tty
/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
/usr/lib/libc.sa(__libc.o):6008f27c A __win
/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
/usr/lib/libc.sa(__libc.o):6008f200 A _errno
/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
/usr/lib/libc.sa(__libc.o):6008f208 A _optind
/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
/usr/lib/libc.sa(__libc.o):6008f220 A _tzname

View File

@ -1,6 +0,0 @@
Name=libss
Text=0x66880000
Data=0x00000000
Jump=0x00001000
GOT=0x00001000
Version=1.0.0

View File

@ -1,2 +0,0 @@
66885010 D __NEEDS_SHRLIB_libc_4
66885028 D __NEEDS_SHRLIB_libet_1

View File

@ -1,3 +0,0 @@
00000020 K _ss_std_requests libss jump/std_rqs
00000004 D __ss_table libss jump/data
00000004 D __ss_pager_name libss jump/data

View File

@ -41,15 +41,6 @@ SRCS= $(srcdir)/clear.c \
LIBRARY= libuuid
LIBDIR= uuid
DLL_ADDRESS = 0x67900000
DLL_JUMPSIZE = 0x1000
DLL_GOTSIZE = 0x1000
DLL_VERSION = 0.1
DLL_IMAGE = libuuid
DLL_STUB = libuuid
DLL_MYDIR = uuid
DLL_INSTALL_DIR = $(root_libdir)
ELF_VERSION = 1.2
ELF_SO_VERSION = 1
ELF_IMAGE = libuuid
@ -63,7 +54,6 @@ BSDLIB_MYDIR = uuid
BSDLIB_INSTALL_DIR = $(root_libdir)
@MAKEFILE_LIBRARY@
@MAKEFILE_DLL@
@MAKEFILE_ELF@
@MAKEFILE_BSDLIB@
@MAKEFILE_PROFILE@
@ -73,8 +63,6 @@ BSDLIB_INSTALL_DIR = $(root_libdir)
$(CC) $(ALL_CFLAGS) -c $< -o $@
@PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $<
@CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
@DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \
@DLL_CMT@ -o jump/$*.o -c $<)
@ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $<
@BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<

View File

@ -1,14 +0,0 @@
00000000 T _uuid_clear libuuid clear
00000000 T _uuid_compare libuuid compare
00000000 T _uuid_copy libuuid copy
00000000 T _uuid_generate libuuid gen_uuid
00000000 T _uuid_is_null libuuid isnull
00000000 T _uuid_pack libuuid pack
00000000 T _uuid_parse libuuid parse
00000000 T _uuid_unpack libuuid unpack
00000000 T _uuid_unparse libuuid unparse
00000000 T _uuid_generate_time libuuid gen_uuid
00000000 T _uuid_generate_random libuuid gen_uuid
00000000 T _uuid_time libuuid uuid_time
00000000 T _uuid_type libuuid uuid_time
00000000 T _uuid_variant libuuid uuid_time

View File

@ -1,163 +0,0 @@
/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
/usr/lib/libc.sa(__libc.o):6008f060 A _AM
/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
/usr/lib/libc.sa(__libc.o):6008f064 A _BS
/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
/usr/lib/libc.sa(__libc.o):6008f068 A _CA
/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
/usr/lib/libc.sa(__libc.o):6008f06c A _DA
/usr/lib/libc.sa(__libc.o):6008f070 A _DB
/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
/usr/lib/libc.sa(__libc.o):6008f074 A _EO
/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
/usr/lib/libc.sa(__libc.o):6008f078 A _HC
/usr/lib/libc.sa(__libc.o):6008f118 A _HO
/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
/usr/lib/libc.sa(__libc.o):6008f11c A _IC
/usr/lib/libc.sa(__libc.o):6008f120 A _IM
/usr/lib/libc.sa(__libc.o):6008f080 A _IN
/usr/lib/libc.sa(__libc.o):6008f124 A _IP
/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
/usr/lib/libc.sa(__libc.o):6008f100 A _K4
/usr/lib/libc.sa(__libc.o):6008f104 A _K5
/usr/lib/libc.sa(__libc.o):6008f108 A _K6
/usr/lib/libc.sa(__libc.o):6008f10c A _K7
/usr/lib/libc.sa(__libc.o):6008f110 A _K8
/usr/lib/libc.sa(__libc.o):6008f114 A _K9
/usr/lib/libc.sa(__libc.o):6008f128 A _KD
/usr/lib/libc.sa(__libc.o):6008f12c A _KE
/usr/lib/libc.sa(__libc.o):6008f130 A _KH
/usr/lib/libc.sa(__libc.o):6008f134 A _KL
/usr/lib/libc.sa(__libc.o):6008f138 A _KR
/usr/lib/libc.sa(__libc.o):6008f13c A _KS
/usr/lib/libc.sa(__libc.o):6008f140 A _KU
/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
/usr/lib/libc.sa(__libc.o):6008f144 A _LL
/usr/lib/libc.sa(__libc.o):6008f148 A _MA
/usr/lib/libc.sa(__libc.o):6008f300 A _MCAppPath
/usr/lib/libc.sa(__libc.o):6008f084 A _MI
/usr/lib/libc.sa(__libc.o):6008f088 A _MS
/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
/usr/lib/libc.sa(__libc.o):6008f08c A _NC
/usr/lib/libc.sa(__libc.o):6008f14c A _ND
/usr/lib/libc.sa(__libc.o):6008f150 A _NL
/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
/usr/lib/libc.sa(__libc.o):6008f090 A _NS
/usr/lib/libc.sa(__libc.o):6008f094 A _OS
/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
/usr/lib/libc.sa(__libc.o):6008f154 A _RC
/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
/usr/lib/libc.sa(__libc.o):6008f158 A _SC
/usr/lib/libc.sa(__libc.o):6008f15c A _SE
/usr/lib/libc.sa(__libc.o):6008f160 A _SF
/usr/lib/libc.sa(__libc.o):6008f164 A _SO
/usr/lib/libc.sa(__libc.o):6008f168 A _SR
/usr/lib/libc.sa(__libc.o):6008f16c A _TA
/usr/lib/libc.sa(__libc.o):6008f170 A _TE
/usr/lib/libc.sa(__libc.o):6008f174 A _TI
/usr/lib/libc.sa(__libc.o):6008f178 A _UC
/usr/lib/libc.sa(__libc.o):6008f17c A _UE
/usr/lib/libc.sa(__libc.o):6008f098 A _UL
/usr/lib/libc.sa(__libc.o):6008f180 A _UP
/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
/usr/lib/libc.sa(__libc.o):6008f188 A _US
/usr/lib/libc.sa(__libc.o):6008f18c A _VB
/usr/lib/libc.sa(__libc.o):6008f194 A _VE
/usr/lib/libc.sa(__libc.o):6008f190 A _VS
/usr/lib/libc.sa(__libc.o):6008f09c A _XB
/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
/usr/lib/libc.sa(__libc.o):6008f2a4 A __IO_file_jumps
/usr/lib/libc.sa(__libc.o):6008f1f4 A __IO_list_all
/usr/lib/libc.sa(__libc.o):6008f2a8 A __IO_proc_jumps
/usr/lib/libc.sa(__libc.o):6008f1ec A __IO_stderr_
/usr/lib/libc.sa(__libc.o):6008f1e4 A __IO_stdin_
/usr/lib/libc.sa(__libc.o):6008f1e8 A __IO_stdout_
/usr/lib/libc.sa(__libc.o):6008f2ac A __IO_str_jumps
/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
/usr/lib/libc.sa(__libc.o):6008f1dc A __res
/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
/usr/lib/libc.sa(__libc.o):6008f05c A __tty
/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
/usr/lib/libc.sa(__libc.o):6008f27c A __win
/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
/usr/lib/libc.sa(__libc.o):6008f200 A _errno
/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
/usr/lib/libc.sa(__libc.o):6008f208 A _optind
/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
/usr/lib/libc.sa(__libc.o):6008f220 A _tzname

View File

@ -1,6 +0,0 @@
Name=libuuid
Text=0x67900000
Data=0x00000000
Jump=0x00001000
GOT=0x00001000
Version=0.1.0

View File

@ -1 +0,0 @@
67903014 D __NEEDS_SHRLIB_libc_4

View File