. leave out hardware-fp code from library
. minor packman usage tweaks . kernel feature for printing version number . removed some verbose debug messages from vfs/mfs
This commit is contained in:
parent
7dd225ffb2
commit
a2b1a5134b
30 changed files with 7 additions and 29 deletions
|
@ -46,14 +46,16 @@ cdpackages=""
|
|||
if [ -n "$cddrive" ]
|
||||
then pack=${cddrive}p2
|
||||
umount $pack >/dev/null 2>&1 || true
|
||||
if mount -r $pack $CDMP
|
||||
echo "Checking for CD in $pack."
|
||||
if mount -r $pack $CDMP 2>/dev/null
|
||||
then fn="$CDPACK/List"
|
||||
echo "Found."
|
||||
cdpackages=$fn
|
||||
if [ ! -f $cdpackages ]
|
||||
then cdpackages=""
|
||||
echo "No package list found on CD in $fn."
|
||||
fi
|
||||
else echo "CD mount failed."
|
||||
else echo "Not found."
|
||||
fi
|
||||
else echo "Don't know where the install CD is. You can set it in $RC."
|
||||
fi
|
||||
|
|
|
@ -14,7 +14,7 @@ CC = exec cc
|
|||
CPP = $l/cpp
|
||||
LD = $(CC) -.o
|
||||
CPPFLAGS=-I$i -I$a/include
|
||||
CFLAGS=$(CPROFILE) $(CPPFLAGS)
|
||||
CFLAGS=$(CPROFILE) $(CPPFLAGS) $(EXTRA_OPTS)
|
||||
LDFLAGS=-i
|
||||
|
||||
# first-stage, arch-dependent startup code
|
||||
|
|
|
@ -5,39 +5,21 @@ CFLAGS="-O -D_MINIX -D_POSIX_SOURCE -Was-ack"
|
|||
LIBRARIES=libe
|
||||
|
||||
libe_FILES=" \
|
||||
em_adf4.s \
|
||||
em_adf8.s \
|
||||
em_adi.s \
|
||||
em_and.s \
|
||||
em_blm.s \
|
||||
em_cff4.s \
|
||||
em_cff8.s \
|
||||
em_cfi.s \
|
||||
em_cfu.s \
|
||||
em_cif4.s \
|
||||
em_cif8.s \
|
||||
em_cii.s \
|
||||
em_cmf4.s \
|
||||
em_cmf8.s \
|
||||
em_cms.s \
|
||||
em_com.s \
|
||||
em_csa4.s \
|
||||
em_csb4.s \
|
||||
em_cuf4.s \
|
||||
em_cuf8.s \
|
||||
em_cuu.s \
|
||||
em_dup.s \
|
||||
em_dvf4.s \
|
||||
em_dvf8.s \
|
||||
em_dvi.s \
|
||||
em_dvu.s \
|
||||
em_error.s \
|
||||
em_exg.s \
|
||||
em_fat.s \
|
||||
em_fef4.s \
|
||||
em_fef8.s \
|
||||
em_fif4.s \
|
||||
em_fif8.s \
|
||||
em_fp8087.s \
|
||||
em_gto.s \
|
||||
em_hol0.s \
|
||||
|
@ -48,12 +30,8 @@ libe_FILES=" \
|
|||
em_isar.s \
|
||||
em_lar4.s \
|
||||
em_loi.s \
|
||||
em_mlf4.s \
|
||||
em_mlf8.s \
|
||||
em_mli.s \
|
||||
em_mon.s \
|
||||
em_ngf4.s \
|
||||
em_ngf8.s \
|
||||
em_ngi.s \
|
||||
em_nop.s \
|
||||
em_print.s \
|
||||
|
@ -63,8 +41,6 @@ libe_FILES=" \
|
|||
em_rol.s \
|
||||
em_ror.s \
|
||||
em_sar4.s \
|
||||
em_sbf4.s \
|
||||
em_sbf8.s \
|
||||
em_sbi.s \
|
||||
em_set.s \
|
||||
em_sli.s \
|
||||
|
|
|
@ -243,7 +243,6 @@ printf("%s, %d\n", __FILE__, __LINE__);
|
|||
}
|
||||
else {
|
||||
put_inode(dir_ip);
|
||||
printf("%s, %d\n", __FILE__, __LINE__);
|
||||
return(NIL_INODE);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -294,7 +294,6 @@ PRIVATE int mount_fs(endpoint_t fs_e)
|
|||
|
||||
/* Issue request */
|
||||
if ((r = req_readsuper(&sreq, &sres)) != OK) {
|
||||
printf("VFSmount: reading superblock error dev: %d\n", dev);
|
||||
dev_close(dev);
|
||||
return r;
|
||||
}
|
||||
|
|
|
@ -316,9 +316,11 @@ struct vnode **vpp;
|
|||
|
||||
if (res.inode_nr == 0)
|
||||
{
|
||||
#if 0
|
||||
printf("lookup_vp: lookup returned no inode\n");
|
||||
printf("lookup_res = %d, last = '%s'\n\n",
|
||||
lookup_res, lookup_req->lastc);
|
||||
#endif
|
||||
*vpp= NULL;
|
||||
return lookup_res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue