~clint-fewbar/ubuntu/precise/erlang/merge-15b

« back to all changes in this revision

Viewing changes to lib/sasl/test/release_handler_SUITE_data/start

  • Committer: Package Import Robot
  • Author(s): Sergei Golovan
  • Date: 2011-12-15 19:20:10 UTC
  • mfrom: (1.1.18) (3.5.15 sid)
  • mto: (3.5.16 sid)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20111215192010-jnxcfe3tbrpp0big
Tags: 1:15.b-dfsg-1
* New upstream release.
* Upload to experimental because this release breaks external drivers
  API along with ABI, so several applications are to be fixed.
* Removed SSL patch because the old SSL implementation is removed from
  the upstream distribution.
* Removed never used patch which added native code to erlang beam files.
* Removed the erlang-docbuilder binary package because the docbuilder
  application was dropped by upstream.
* Documented dropping ${erlang-docbuilder:Depends} substvar in
  erlang-depends(1) manpage.
* Made erlang-base and erlang-base-hipe provide virtual package
  erlang-abi-15.b (the number means the first erlang version, which
  provides current ABI).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This program invokes the erlang emulator by calling run_erl.
 
4
# It should only be used at an embedded target system.
 
5
# It should be modified to give the correct flags to erl (via start_erl),
 
6
# e.g -mode embedded -sname XXX
 
7
#
 
8
# Usage: start [Data]
 
9
#
 
10
ROOTDIR=%ROOT%
 
11
 
 
12
if [ "x${NODENAME}" = "x" ]
 
13
then
 
14
    echo "ERROR: Variable \$NODENAME is not set!!"
 
15
    exit 1
 
16
fi
 
17
 
 
18
if [ -z "$RELDIR" ]
 
19
then
 
20
   RELDIR=$ROOTDIR/releases
 
21
fi
 
22
 
 
23
HEART_COMMAND=$ROOTDIR/bin/start
 
24
HW_WD_DISABLE=true
 
25
export HW_WD_DISABLE HEART_COMMAND
 
26
 
 
27
START_ERL_DATA=${1:-$RELDIR/start_erl.data}
 
28
 
 
29
$ROOTDIR/bin/run_erl /tmp/ $ROOTDIR/log "exec $ROOTDIR/bin/start_erl $ROOTDIR $RELDIR $START_ERL_DATA -heart -sname $NODENAME" > $ROOTDIR/log/run_erl.out 2>&1  &