diff options
author | abial <abial@FreeBSD.org> | 1999-05-05 08:37:46 +0000 |
---|---|---|
committer | abial <abial@FreeBSD.org> | 1999-05-05 08:37:46 +0000 |
commit | a56a225db698c8b1e1075e986315c7b0c473dae9 (patch) | |
tree | ccee85a6716b6834e213aee6d6f253eb78610f2d /release/picobsd | |
parent | fd47563fe449bc68eedf485677029899cbb99171 (diff) | |
download | FreeBSD-src-a56a225db698c8b1e1075e986315c7b0c473dae9.zip FreeBSD-src-a56a225db698c8b1e1075e986315c7b0c473dae9.tar.gz |
Deal with MAKEDEV's braindedness.
Submitted by: Patrick Powell <papowell@astart4.astart.com>
Reviewed by: abial
Diffstat (limited to 'release/picobsd')
-rw-r--r-- | release/picobsd/dial/mfs.tree/Makefile | 10 | ||||
-rw-r--r-- | release/picobsd/isp/mfs.tree/Makefile | 12 | ||||
-rw-r--r-- | release/picobsd/net/mfs.tree/Makefile | 8 | ||||
-rw-r--r-- | release/picobsd/router/mfs.tree/Makefile | 8 |
4 files changed, 26 insertions, 12 deletions
diff --git a/release/picobsd/dial/mfs.tree/Makefile b/release/picobsd/dial/mfs.tree/Makefile index 44f3b75..8a2d9f8 100644 --- a/release/picobsd/dial/mfs.tree/Makefile +++ b/release/picobsd/dial/mfs.tree/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1998/09/22 15:41:05 abial Exp $ +# $Id: Makefile,v 1.5 1998/10/28 16:26:29 abial Exp $ # DESTDIR?=/mnt @@ -62,8 +62,10 @@ links: tree # We don't do it under 'all' because it's needed only on non-DEVFS systems devnodes: tree (cd ${DESTDIR}/dev; \ - /dev/MAKEDEV std sysmouse tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 pty0; \ - /dev/MAKEDEV psm0; \ - /dev/MAKEDEV wd0s1h wd0s2 wd0s3 wd0s4 wd1s1h wd1s2 wd1s3 wd1s4) + ln -s /dev/MAKEDEV; \ + ./MAKEDEV std sysmouse tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 pty0; \ + ./MAKEDEV psm0; \ + ./MAKEDEV wd0s1h wd0s2 wd0s3 wd0s4 wd1s1h wd1s2 wd1s3 wd1s4; \ + rm MAKEDEV) clean: diff --git a/release/picobsd/isp/mfs.tree/Makefile b/release/picobsd/isp/mfs.tree/Makefile index a7c4d84..40bffa4 100644 --- a/release/picobsd/isp/mfs.tree/Makefile +++ b/release/picobsd/isp/mfs.tree/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $ +# $Id: Makefile,v 1.2 1998/09/20 00:46:25 abial Exp $ # DESTDIR?=/mnt @@ -33,6 +33,10 @@ links: tree # We don't do it under 'all' because it's needed only on non-DEVFS systems devnodes: tree (cd ${DESTDIR}/dev; \ - /dev/MAKEDEV std tun2 vty10 fd0 wd0s1h pty0; \ - /dev/MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 cuaa4; \ - /dev/MAKEDEV cuaa5 cuaa6 cuaa7 cuaa8 cuaa9) + ln -s /dev/MAKEDEV; \ + ./MAKEDEV std tun2 vty10 fd0 wd0s1h pty0; \ + ./MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 cuaa4; \ + ./MAKEDEV cuaa5 cuaa6 cuaa7 cuaa8 cuaa9; \ + rm MAKEDEV) + +clean: diff --git a/release/picobsd/net/mfs.tree/Makefile b/release/picobsd/net/mfs.tree/Makefile index 4681e74..bbae94d 100644 --- a/release/picobsd/net/mfs.tree/Makefile +++ b/release/picobsd/net/mfs.tree/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $ +# $Id: Makefile,v 1.2 1998/09/20 00:46:26 abial Exp $ # DESTDIR?=/mnt @@ -33,4 +33,8 @@ links: tree # We don't do it under 'all' because it's needed only on non-DEVFS systems devnodes: tree (cd ${DESTDIR}/dev; \ - /dev/MAKEDEV std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0) + ln -s /dev/MAKEDEV; \ + ./MAKEDEV std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0; \ + rm MAKEDEV) + +clean: diff --git a/release/picobsd/router/mfs.tree/Makefile b/release/picobsd/router/mfs.tree/Makefile index e55ba62..e7e8e91 100644 --- a/release/picobsd/router/mfs.tree/Makefile +++ b/release/picobsd/router/mfs.tree/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $ +# $Id: Makefile,v 1.2 1998/09/20 00:46:27 abial Exp $ # DESTDIR?=/mnt @@ -33,4 +33,8 @@ links: tree # We don't do it under 'all' because it's needed only on non-DEVFS systems devnodes: tree (cd ${DESTDIR}/dev; \ - /dev/MAKEDEV std tun2 vty3 fd0 pty0 cuaa0 cuaa1 cuaa2) + ln -s MAKEDEV; \ + ./MAKEDEV std tun2 vty3 fd0 pty0 cuaa0 cuaa1 cuaa2; \ + rm MAKEDEV) + +clean: |