Added a static Netscript that is launched from the Bootscript. Everything commented out currently, more like a temporary tutorial on how to setup everything.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12291 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -62,6 +62,12 @@ launchscript $SCRIPTS/SetupEnvironment
|
|||||||
# Sets timezone etc.
|
# Sets timezone etc.
|
||||||
runprog beos/bin/clockconfig
|
runprog beos/bin/clockconfig
|
||||||
|
|
||||||
|
# Init Network
|
||||||
|
if [ "$SAFEMODE" != "yes" ]
|
||||||
|
then
|
||||||
|
launchscript $SCRIPTS/Netscript
|
||||||
|
fi
|
||||||
|
|
||||||
# Launch servers
|
# Launch servers
|
||||||
|
|
||||||
# We must wait for the app_server and registrar to be ready
|
# We must wait for the app_server and registrar to be ready
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# This loads the net_stack_driver that loads and provides the interface to the networking core.
|
||||||
|
#ls /dev/net_stack
|
||||||
|
|
||||||
|
# That is a static version of the network interface setup.
|
||||||
|
# You have to edit it to match your driver/ip/subnet.
|
||||||
|
#ifconfig rtl81690 192.168.0.10 up netmask 255.255.255.0
|
||||||
|
|
||||||
|
# This adds the default gateway. Edit it for your needs
|
||||||
|
#route add default 192.168.0.1
|
||||||
@@ -11,7 +11,7 @@ export GROUP=users
|
|||||||
BUILDHOME=/boot/develop
|
BUILDHOME=/boot/develop
|
||||||
|
|
||||||
case `uname -m` in
|
case `uname -m` in
|
||||||
BePC|Intel)
|
BePC|Intel|unknown)
|
||||||
BE_HOST_CPU=x86
|
BE_HOST_CPU=x86
|
||||||
BETOOLS="$BUILDHOME/bin"
|
BETOOLS="$BUILDHOME/bin"
|
||||||
BELIBRARIES="$BUILDHOME/lib/$BE_HOST_CPU"
|
BELIBRARIES="$BUILDHOME/lib/$BE_HOST_CPU"
|
||||||
|
|||||||
Reference in New Issue
Block a user