1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-04-14 07:50:43 +00:00

- remove origin hack when installing sh.s and init.s

- build sh.s in src/cmd/mak
This commit is contained in:
tim.newsham
2008-05-17 17:53:41 +00:00
parent b35ecb7838
commit 3d137ac204
2 changed files with 5 additions and 2 deletions

View File

@@ -109,6 +109,7 @@ unix usyms : $(KSRCS)
@mv a.out unix
# build a prototype filesystems
# XXX has hack to fix our orig hack in sh.s and init.s
root usr protofs : $(ALLSRCS) init.0405 sh.0405
@echo Building filesystems...
@$(TREECOPY) ../fs/root .
@@ -116,7 +117,8 @@ root usr protofs : $(ALLSRCS) init.0405 sh.0405
@$(TREECOPY) ../fs/usr .
@$(TREECOPY) ../fs/new/usr .
@$(TREECOPY) ../src usr
@cp init.s sh.s usr/src/cmd
@sed '/40014/d' < sh.s > usr/src/cmd/sh.s
@sed '/40014/d' < init.s > usr/src/cmd/init.s
@cp $(KSRCS) usr/sys
@cp init.0405 root/etc/init
@cp sh.0405 root/bin/sh

View File

@@ -15,6 +15,7 @@ echo init.s; as init.s; mv a.out init
echo ln.s; as ln.s; mv a.out ln
echo login.s; as login.s; mv a.out login
echo ls.s; as ls.s; mv a.out ls
echo sh.s; as sh.s; mv a.out sh
echo db; as db?.s; mv a.out db
echo ld; as ld?.s; mv a.out ld
echo as2; as as2?.s; mv a.out as2
@@ -30,4 +31,4 @@ echo ... install new "as" to build dc
echo You can rm ':' acct ar cat chmod chown
echo You can rm cmp date df dsw dusg fstrip getty
echo You can rm init ln login ls as as2 db ld
echo You can rm init ln login ls sh as as2 db ld