From 80a9eba5d52df2d7cd2570e92e333e4a766a8bae Mon Sep 17 00:00:00 2001 From: Kees Jongenburger Date: Mon, 18 Jun 2012 21:23:57 +0200 Subject: [PATCH] Perform the /usr/src update in 2 steps * post shared libraries era * post cross building era --- projects/autoinstall/post-install.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/projects/autoinstall/post-install.sh b/projects/autoinstall/post-install.sh index 639e293..7340d7b 100755 --- a/projects/autoinstall/post-install.sh +++ b/projects/autoinstall/post-install.sh @@ -65,9 +65,28 @@ set -x #exit cd /usr/src git pull + + ## first update to the post shared library era + ## and make world + git checkout ade7dc8ded18e69bcb4908663cb226e7cc88f44f #see docs updating 20120402 make -C usr.bin/genassym install make clean world + + + # + # Update to the post cross building era + # + git checkout master + # 20120608: + # New install and mk files require the following steps: + cp /usr/src/share/mk/*.mk /usr/share/mk + cd /usr/src + make -C usr.bin/xinstall all + cp usr.bin/xinstall/xinstall /usr/bin/install + rm /bin/install + + make clean world ) #