Commit e9177f1b authored by Christoffer Ackelman's avatar Christoffer Ackelman

Fixed pkg builds after e44b37b0

parent e44b37b0
......@@ -27,7 +27,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -49,12 +49,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -194,15 +194,3 @@ cp $pkgsrc/postinst $pkgroot/etc/pwr$ver
tar -czf ../$packagename *
rm -r $pkgroot
......@@ -25,7 +25,7 @@ cp /usr/pwr$ver/$pwre_target/exp/cnf/user/pwrstart ~/
chmod a+x ~/pwrstart
cp /usr/pwr$ver/$pwre_target/exp/cnf/user/Proview.lnk $USERPROFILE/Desktop
cp /usr/pwr$ver/$pwre_target/exp/cnf/user/proview_icon.ico $USERPROFILE/Download
#chmod u+s /usr/pwr$ver/$pwre_target/exp/exe/rt_ini
#chmod u+s /usr/pwr$ver/$pwre_target/exp/exe/rt_rtt
#chmod u+s /usr/pwr$ver/$pwre_target/exp/exe/rt_xtt
......@@ -87,9 +87,3 @@ if [ ! -e /usr/local/pwrp ]; then
# chgrp pwrp /usr/local/pwrp
# chmod g+w /usr/local/pwrp
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 999
qcomBusId 999
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /var/www
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
PWR(1) Proview Manuals PWR(1)
NAME
pwr - start and stop Proview runtime environment
......@@ -25,4 +24,4 @@ AUTHOR
SEE ALSO
pwr(5)
Proview Last change: Nov 2003
Proview Last change: Nov 2003
......@@ -74,15 +74,3 @@ cp $pkgsrc/postinst $pkgroot/etc/pwrdemo$ver
tar -czf ../$packagename *
rm -r $pkgroot
......@@ -68,11 +68,3 @@ if [ -e $USERPROFILE/Desktop ]; then
cp /usr/pwrp/pwrdemo$ver/cnf/ProviewDemo.lnk $USERPROFILE/Desktop
cp /usr/pwrp/pwrdemo$ver/cnf/proview_icon.ico $USERPROFILE/Download
fi
......@@ -215,7 +215,6 @@ if ! grep -q "/etc/pwrrt/pwr start" /etc/rc.local; then
EOF
fi
# Create project
new_project=0
if [ ! -e $proot ]; then
......@@ -237,7 +236,7 @@ if [ ! -e $proot ]; then
chown -R pwrp $proot
chgrp -R pwrp $proot
fi
if [ ! -e $aroot/db ]; then
......@@ -305,7 +304,6 @@ EOF
EOF
fi
if ! egrep -q "Alias[ ]+/pwr_doc/" /etc/apache2/apache2.conf; then
cat >> /etc/apache2/apache2.conf <<-EOF
......@@ -337,7 +335,6 @@ if [ -e /lib/udev/devices/pbus2 ]; then
chown pwrp:pwrp /lib/udev/devices/pbus2
fi
changes=0
if [ $new_user -eq 1 ]; then
changes=1
......@@ -373,14 +370,3 @@ if [ $changes -ne 0 ]; then
echo "***********************************************************"
echo ""
fi
#!/bin/sh
set -e
# Automatically added by dh_installdocs
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/pwrtest ]; then
rm -f /usr/doc/pwrtest
......@@ -16,7 +15,7 @@ echo -n "Do you wan't to remove project and users (y/n) [n] "
read remove_all
if [ "$remove_all" = "y" ]; then
# Check that any user that is to be remoted isn't logged in
set +e
user_found=0
......
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 517
qcomBusId 517
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /pwrp/common/web
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
......@@ -30,7 +30,7 @@ create_killer()
echo "#!/bin/bash" > $killer
echo "source /etc/pwrp_profile" >> $killer
echo "umask 002" >> $killer
echo "`ps ax | grep "rt_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "rs_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "ra_" | awk '{ print "kill -9 "$1}'`" >> $killer
......@@ -46,7 +46,7 @@ create_killer()
echo " source $pwrp_exe/pwrp_stop.sh" >> $killer
echo "fi" >> $killer
echo "rm /tmp/pwr*\$PWR_BUS_ID" >> $killer
chmod a+rx $killer
if [ ! -e $killer ] ;then
echo "$killer not writable, check permissions"
......@@ -54,7 +54,6 @@ create_killer()
fi
}
pwr_start()
{
create_wrapper
......@@ -78,8 +77,8 @@ pwr_stop()
if [ -e $pwrp_exe/pwrp_stop.sh ]; then
sudo -u pwrp source $pwrp_exe/pwrp_stop.sh
fi
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
}
pwr_reload()
......@@ -98,14 +97,14 @@ pwr_kill()
$killer
else
sudo -u pwrp $killer
fi
fi
}
case "$1"
in
start)
echo "Start Proview Runtime Environment."
pwr_start
pwr_start
echo "Done."
;;
stop)
......
......@@ -2,7 +2,7 @@
.SH NAME
rt_rtt - Proview Runtime Terminal Tool
.SH SYNOPSIS
.B rt_rtt
.B rt_rtt
[user] [script] [configuration]
.SH DESCRIPTION
Examine and navigate in the realtime database from a VT100 terminal.
......@@ -24,17 +24,3 @@ A RttConfig object that configures the session.
Written by cs.
.SH "SEE ALSO"
.BR rt_xtt(1)
......@@ -2,16 +2,16 @@
.SH NAME
rt_xtt - Proview Operator Environment
.SH SYNOPSIS
.B rt_xtt
.B rt_xtt
[\fIOPTION\fR] [opplace]
.SH DESCRIPTION
The Proview Operator Environment contains a set of utitlities to display information
about the process and the Proview system:
.RS
.RS
\- Operator window.
.RE
.RS
.RS
\- Process Graphics drawn in the Ge editor.
.RE
.RS
......@@ -36,7 +36,7 @@ The name of the OpPlace object for the operator place.
.HP
\fB\-l\fR
.IP
Language.
Language.
.RS
en_us English
......@@ -72,10 +72,3 @@ Written by cs.
.SH "SEE ALSO"
.BR pwr(1),
.BR rt_ini(1)
......@@ -10,7 +10,6 @@ endif
.SUFFIXES:
.PHONY : all init copy lib exe clean realclean \
$(clean_ge)
......@@ -34,22 +33,22 @@ dirs : $(bld_dir)$(dir_ext)
$(bld_dir)$(dir_ext) :
@ $(mkdir) -p $(mkdirflags) $(basename $@)
$(bld_dir)/control_pwrrt : ../../../pwrrt/control
$(bld_dir)/control_pwrrt : ../pwrrt/control
@ echo "build $(target)"
@ ../../../pwrrt/build.sh
@ ../pwrrt/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwr : ../../../pwr/control
$(bld_dir)/control_pwr : ../pwr/control
@ echo "build $(target)"
@ ../../../pwr/build.sh
@ ../pwr/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrdemo : ../../../pwrdemo/control
$(bld_dir)/control_pwrdemo : ../pwrdemo/control
@ echo "build $(target)"
@ ../../../pwrdemo/build.sh
@ ../pwrdemo/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrsev : ../../../pwrsev/control
$(bld_dir)/control_pwrsev : ../pwrsev/control
@ echo "build $(target)"
@ ../../../pwrsev/build.sh
@ ../pwrsev/build.sh
@ cp $(source) $(target)
......@@ -3,7 +3,6 @@
# Startscript fr PWR av Ulf Ljungdahl
#
#test -x /sbin/ipchains || exit 0
#test -x /sbin/ipchains-restore || exit 0
#test -x /sbin/ipchains-save || exit 0
......@@ -12,7 +11,6 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
. /etc/pwrp_profile
save ()
{
echo -n "Saving IP chains: "
......@@ -25,7 +23,7 @@ save ()
pwr_start()
{
$pwr_exe/rt_ini &
sleep 5
sleep 5
/usr/sbin/setrtprio `ps ax | grep "plc" | grep -v "grep" | awk '{ print $1}'`
}
......@@ -66,7 +64,7 @@ pwr_stop()
fi
rm /tmp/pwr*$PWR_BUS_ID
#rm -f /tmp/pwr*
#id=`ipcs -s | grep $user | awk '{print $2}'`
#id1=`echo $id | awk '{print $1}'`
......@@ -88,26 +86,26 @@ case "$1"
in
start)
echo "Startar PWR..."
#if [ 'test -x ps aux | grep plc | grep -v grep' ]
# then
# echo "PWR kr, stoppar det frst.."
# pwr_stop
# fi
pwr_start
pwr_start
echo "Klar."
;;
stop)
echo "Stoppar PWR..."
pwr_stop
# if [ "${SAVEONCE}" != "yes" ]
# then
# save
# echo -n "ipchains-save"
# else
# echo -n "Clearing IP chains:"
# fi
# fi
echo "Klar"
;;
restart)
......
......@@ -102,7 +102,6 @@ pwra_set_func()
}
pwra_help_func()
{
......@@ -119,7 +118,6 @@ EOF
}
pwra_parse ()
{
unamestr=`eval uname`
......
......@@ -66,7 +66,7 @@ pwra_set_func()
echo "Unable to find project '$2'"
return
fi
baseroot=`eval cat $pwra_db/pwr_projectlist.dat | grep "[[:<:]]"$basename"[[:>:]]" | grep "^"%base"[[:>:]]" | awk '{print $3}'`
if [ -z $baseroot ]; then
echo "Unable to find base '$2'"
......@@ -83,7 +83,7 @@ pwra_set_func()
fi
source $baseroot/$os/$hw/exp/exe/pwrp_env.sh set baseroot $baseroot
source $baseroot/$os/$hw/exp/exe/pwrp_env.sh set project $project
export PS1='\u@\h/$pwrp_projectname/-.\W> '
export PS1='\u@\h/$pwrp_projectname/-.\W> '
fi
return
fi
......@@ -94,8 +94,7 @@ pwra_set_func()
fi
source $pwr_exe/pwrp_env.sh set $1 $2 $3
}
}
pwra_help_func()
{
......@@ -113,7 +112,6 @@ EOF
}
pwra_parse ()
{
unamestr=`eval uname`
......@@ -131,7 +129,7 @@ pwra_parse ()
if [ $machine != "x86_64" ]; then
machine="x86"
fi
os="os_linux"
os="os_linux"
hw="hw_"$machine
fi
......
......@@ -42,7 +42,6 @@ Menu DefaultWindowMenu
Close _C Alt<Key>F4 f.kill
}
!!
!! Default Key Bindings
!!
......@@ -72,7 +71,7 @@ Buttons DefaultButtonBindings
<Btn3Down> icon|frame f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
}
!!
!! These are some example bindings that you might use if your
!! keyboardFocusPolicy is "explicit". Note that to use these, you'll
......
......@@ -27,7 +27,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -49,12 +49,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -205,15 +205,3 @@ else
fi
rm -r $pkgroot
......@@ -120,9 +120,3 @@ if [ ! -e /usr/local/pwrp ]; then
chgrp pwrp /usr/local/pwrp
chmod g+w /usr/local/pwrp
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 999
qcomBusId 999
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /var/www
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
PWR(1) Proview Manuals PWR(1)
NAME
pwr - start and stop Proview runtime environment
......@@ -25,4 +24,4 @@ AUTHOR
SEE ALSO
pwr(5)
Proview Last change: Nov 2003
Proview Last change: Nov 2003
......@@ -93,15 +93,3 @@ else
fi
rm -r $pkgroot
......@@ -74,11 +74,3 @@ if [ -e /home/pwrp/Desktop ]; then
chown pwrp:pwrp /home/pwrp/Desktop/proviewdemo$ver.desktop
chmod a+x /home/pwrp/Desktop/proviewdemo$ver.desktop
fi
......@@ -63,7 +63,6 @@ tar -xf $tarfile
rm $tarfile
cd $currentdir
# Copy adm files to cnf
#echo "pwrp set base V${ver:0:1}.${ver:1:1}" >> $pkgroot/usr/pwr$ver/$pwre_target/exp/cnf/pwr_setup.sh
......@@ -76,15 +75,3 @@ else
fi
rm -r $pkgroot
......@@ -15,7 +15,6 @@ fi
aroot="/usr/pwrp/adm"
echo "Change owner of files to pwrp"
chown -R pwrp /usr/pwr$ver
chgrp -R pwrp /usr/pwr$ver
......@@ -37,8 +36,3 @@ chmod u+s /usr/pwr$ver/$pwre_target/exp/exe/rt_rtt
# Change group to pwrp
chmod a+w /usr/pwr$ver/$pwre_target/exp/load/*.dbs
......@@ -25,7 +25,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -47,12 +47,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -97,7 +97,6 @@ fi
pkgroot=$pwre_broot/$pwre_target/bld/pkg/pwrrt
pkgsrc=$pwre_sroot/tools/pkg/deb/pwrrt
# Create directories
echo "-- Create package tree"
mkdir -p $pkgroot/DEBIAN
......@@ -189,4 +188,3 @@ else
fi
rm -r $pkgroot
......@@ -7,7 +7,6 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/jdk
. /etc/pwrp_profile
gdh_start()
{
export LD_LIBRARY_PATH=$pwr_exe
......@@ -17,7 +16,7 @@ gdh_start()
sleep 2
sudo -u pwrp $pwr_exe/rt_webmonmh.sh &
#su pwrp <java jpwr.rt.GdhServer &
#sudo -u pwrp java jpwr.rt.GdhServer &
}
......@@ -30,13 +29,13 @@ case "$1"
in
start)
echo "Startar GDH server..."
#if [ 'test -x ps aux | grep plc | grep -v grep' ]
# then
# echo "PWR kr, stoppar det frst.."
# pwr_stop
# fi
gdh_start
gdh_start
echo "Klar."
;;
stop)
......@@ -62,6 +61,3 @@ case "$1"
esac
exit 0
......@@ -243,7 +243,7 @@ if [ ! -e $proot ]; then
chown -R pwrp $proot
chgrp -R pwrp $proot
chmod g+w $proot/common/log
fi
if [ ! -e $aroot/db ]; then
......@@ -307,7 +307,6 @@ EOF
EOF
fi
if ! egrep -q "Alias[ ]+/pwr_doc/" /etc/apache2/apache2.conf; then
cat >> /etc/apache2/apache2.conf <<-EOF
......@@ -355,9 +354,9 @@ BEGIN {
inserver = 0;
done = 1;
}
else
else
printf( "%s\n", $0);
}
}
else
printf( "%s\n", $0);
}
......@@ -385,7 +384,6 @@ if [ -e /lib/udev/devices/pbus2 ]; then
chown pwrp:pwrp /lib/udev/devices/pbus2
fi
changes=0
if [ $new_user -eq 1 ]; then
changes=1
......@@ -421,14 +419,3 @@ if [ $changes -ne 0 ]; then
echo "***********************************************************"
echo ""
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 517
qcomBusId 517
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /pwrp/common/web
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
......@@ -40,7 +40,7 @@ create_killer()
echo "#!/bin/bash" > $killer
echo "source /etc/pwrp_profile" >> $killer
echo "umask 002" >> $killer
echo "`ps ax | grep "rt_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "rs_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "ra_" | awk '{ print "kill -9 "$1}'`" >> $killer
......@@ -60,8 +60,8 @@ create_killer()
stored_ifs=$IFS
IFS=' ,'
while read appid appname appload apprun appfile appprio appdebug apparg; do
if [ -n "$appid" ] && [ "${appid:0:1}" != "#" ]; then
if [ $appid != "pwr_neth" ] &&
if [ -n "$appid" ] && [ "${appid:0:1}" != "#" ]; then
if [ $appid != "pwr_neth" ] &&
[ $appid != "pwr_qmon" ] &&
[ $appid != "pwr_nacp" ] &&
[ $appid != "pwr_io" ] &&
......@@ -110,7 +110,6 @@ create_killer()
fi
}
pwr_start()
{
create_wrapper
......@@ -134,8 +133,8 @@ pwr_stop()
if [ -e $pwrp_exe/pwrp_stop.sh ]; then
sudo -u pwrp source $pwrp_exe/pwrp_stop.sh
fi
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
}
pwr_reload()
......@@ -154,14 +153,14 @@ pwr_kill()
$killer
else
sudo -u pwrp $killer
fi
fi
}
case "$1"
in
start)
echo "Start Proview Runtime Environment."
pwr_start
pwr_start
echo "Done."
;;
stop)
......
......@@ -2,7 +2,7 @@
.SH NAME
rt_rtt - Proview Runtime Terminal Tool
.SH SYNOPSIS
.B rt_rtt
.B rt_rtt
[user] [script] [configuration]
.SH DESCRIPTION
Examine and navigate in the realtime database from a VT100 terminal.
......@@ -24,17 +24,3 @@ A RttConfig object that configures the session.
Written by cs.
.SH "SEE ALSO"
.BR rt_xtt(1)
......@@ -2,16 +2,16 @@
.SH NAME
rt_xtt - Proview Operator Environment
.SH SYNOPSIS
.B rt_xtt
.B rt_xtt
[\fIOPTION\fR] [opplace]
.SH DESCRIPTION
The Proview Operator Environment contains a set of utitlities to display information
about the process and the Proview system:
.RS
.RS
\- Operator window.
.RE
.RS
.RS
\- Process Graphics drawn in the Ge editor.
.RE
.RS
......@@ -36,7 +36,7 @@ The name of the OpPlace object for the operator place.
.HP
\fB\-l\fR
.IP
Language.
Language.
.RS
en_us English
......@@ -72,10 +72,3 @@ Written by cs.
.SH "SEE ALSO"
.BR pwr(1),
.BR rt_ini(1)
......@@ -28,7 +28,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -50,12 +50,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -97,7 +97,6 @@ fi
pkgroot=$pwre_broot/$pwre_target/bld/pkg/pwrsev
pkgsrc=$pwre_sroot/tools/pkg/$hw/pwrsev
# Create directories
echo "-- Create package tree"
mkdir -p $pkgroot/DEBIAN
......@@ -188,4 +187,3 @@ else
fi
rm -r $pkgroot
......@@ -50,7 +50,6 @@ else
fi
if getent passwd pwrp > /dev/null; then
echo "-- user pwrp already exist"
else
......@@ -216,7 +215,7 @@ if [ ! -e $proot ]; then
chown -R pwrp $proot
chgrp -R pwrp $proot
fi
if [ ! -e $aroot/db ]; then
......@@ -261,14 +260,3 @@ if [ $changes -ne 0 ]; then
echo "***********************************************************"
echo ""
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 517
qcomBusId 517
#
# Web directory
#
......@@ -12,5 +12,3 @@ webDirectory /pwrp/common/web
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
......@@ -74,8 +74,3 @@ alias boot="/usr/bin/sudo /sbin/reboot"
if [ -e $pwrp_exe/profile ]; then
source $pwrp_exe/profile
fi
......@@ -30,7 +30,7 @@ create_killer()
echo "#!/bin/bash" > $killer
echo "source /etc/pwrp_profile" >> $killer
echo "umask 002" >> $killer
echo "`ps ax | grep "rt_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "sev_" | awk '{ print "kill -9 "$1}'`" >> $killer
......@@ -38,7 +38,7 @@ create_killer()
echo "eval `ipcs -q|grep ^0x|grep "[ \t]pwrp[ \t]"|awk '{printf "ipcrm msg %s;", $2}'`" >> $killer
echo "eval `ipcs -m|grep ^0x|grep "[ \t]pwrp[ \t]"|awk '{printf "ipcrm shm %s;", $2}'`" >> $killer
echo "rm /tmp/pwr*\$PWR_BUS_ID" >> $killer
chmod a+rx $killer
if [ ! -e $killer ] ;then
echo "$killer not writable, check permissions"
......@@ -46,7 +46,6 @@ create_killer()
fi
}
pwr_start()
{
create_wrapper
......@@ -70,8 +69,8 @@ pwr_stop()
if [ -e $pwrp_exe/pwrp_stop.sh ]; then
sudo -u pwrp source $pwrp_exe/pwrp_stop.sh
fi
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
}
pwr_reload()
......@@ -90,14 +89,14 @@ pwr_kill()
$killer
else
sudo -u pwrp $killer
fi
fi
}
case "$1"
in
start)
echo "Start Proview Storage Environment."
pwr_start
pwr_start
echo "Done."
;;
stop)
......
......@@ -2,7 +2,7 @@
.SH NAME
sev_xtt - Proview Storage Operator
.SH SYNOPSIS
.B sev_xtt
.B sev_xtt
[\fIOPTION\fR] [opplace]
.SH DESCRIPTION
The Proview Storage Operator Environment contains a set of utitlities to handle the
......@@ -17,7 +17,7 @@ The name of the OpPlace object for the operator place.
.HP
\fB\-l\fR
.IP
Language.
Language.
.RS
en_us English
......@@ -41,10 +41,3 @@ Written by cs.
.SH "SEE ALSO"
.BR sevpwr(1),
.BR sev_ini(1)
......@@ -10,7 +10,6 @@ endif
.SUFFIXES:
.PHONY : all init copy lib exe clean realclean \
$(clean_ge)
......@@ -34,27 +33,27 @@ dirs : $(bld_dir)$(dir_ext)
$(bld_dir)$(dir_ext) :
@ $(mkdir) -p $(mkdirflags) $(basename $@)
$(bld_dir)/control_pwrrt : ../../../pwrrt/control
$(bld_dir)/control_pwrrt : ../pwrrt/control
@ echo "build $(target)"
@ ../../../pwrrt/build.sh
@ ../pwrrt/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwr : ../../../pwr/control
$(bld_dir)/control_pwr : ../pwr/control
@ echo "build $(target)"
@ ../../../pwr/build.sh
@ ../pwr/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrdemo : ../../../pwrdemo/control
$(bld_dir)/control_pwrdemo : ../pwrdemo/control
@ echo "build $(target)"
@ ../../../pwrdemo/build.sh
@ ../pwrdemo/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrsev : ../../../pwrsev/control
$(bld_dir)/control_pwrsev : ../pwrsev/control
@ echo "build $(target)"
@ ../../../pwrsev/build.sh
@ ../pwrsev/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrrpi : ../../../pwrrpi/control
$(bld_dir)/control_pwrrpi : ../pwrrpi/control
@ echo "build $(target)"
@ ../../../pwrrpi/build.sh
@ ../pwrrpi/build.sh
@ cp $(source) $(target)
......@@ -3,7 +3,6 @@
# Startscript fr PWR av Ulf Ljungdahl
#
#test -x /sbin/ipchains || exit 0
#test -x /sbin/ipchains-restore || exit 0
#test -x /sbin/ipchains-save || exit 0
......@@ -12,7 +11,6 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
. /etc/pwrp_profile
save ()
{
echo -n "Saving IP chains: "
......@@ -25,7 +23,7 @@ save ()
pwr_start()
{
$pwr_exe/rt_ini &
sleep 5
sleep 5
/usr/sbin/setrtprio `ps ax | grep "plc" | grep -v "grep" | awk '{ print $1}'`
}
......@@ -66,7 +64,7 @@ pwr_stop()
fi
rm /tmp/pwr*$PWR_BUS_ID
#rm -f /tmp/pwr*
#id=`ipcs -s | grep $user | awk '{print $2}'`
#id1=`echo $id | awk '{print $1}'`
......@@ -88,26 +86,26 @@ case "$1"
in
start)
echo "Startar PWR..."
#if [ 'test -x ps aux | grep plc | grep -v grep' ]
# then
# echo "PWR kr, stoppar det frst.."
# pwr_stop
# fi
pwr_start
pwr_start
echo "Klar."
;;
stop)
echo "Stoppar PWR..."
pwr_stop
# if [ "${SAVEONCE}" != "yes" ]
# then
# save
# echo -n "ipchains-save"
# else
# echo -n "Clearing IP chains:"
# fi
# fi
echo "Klar"
;;
restart)
......
......@@ -10,7 +10,6 @@ Menu DefaultRootMenu
"RTT" f.exec "/usr/bin/X11/xterm -T RTT -e ~/.rtt_start &"
"PSS-kort" f.exec "/usr/bin/X11/xterm -T PSS_Kort -e /usr/bin/minicom &"
"Xterm" f.exec "/usr/bin/X11/xterm -T XTerm -sb -right &"
"Klocka" f.exec "/usr/bin/X11/xclock &"
"Miniraknare" f.exec "/usr/bin/X11/xcalc &"
......@@ -44,7 +43,6 @@ Menu DefaultWindowMenu
Close _C Alt<Key>F4 f.kill
}
!!
!! Default Key Bindings
!!
......@@ -74,7 +72,7 @@ Buttons DefaultButtonBindings
<Btn3Down> icon|frame f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
}
!!
!! These are some example bindings that you might use if your
!! keyboardFocusPolicy is "explicit". Note that to use these, you'll
......
......@@ -42,7 +42,6 @@ Menu DefaultWindowMenu
Close _C Alt<Key>F4 f.kill
}
!!
!! Default Key Bindings
!!
......@@ -72,7 +71,7 @@ Buttons DefaultButtonBindings
<Btn3Down> icon|frame f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
}
!!
!! These are some example bindings that you might use if your
!! keyboardFocusPolicy is "explicit". Note that to use these, you'll
......
......@@ -27,7 +27,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -49,12 +49,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -205,15 +205,3 @@ else
fi
rm -r $pkgroot
......@@ -120,9 +120,3 @@ if [ ! -e /usr/local/pwrp ]; then
chgrp pwrp /usr/local/pwrp
chmod g+w /usr/local/pwrp
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 999
qcomBusId 999
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /var/www
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
PWR(1) Proview Manuals PWR(1)
NAME
pwr - start and stop Proview runtime environment
......@@ -25,4 +24,4 @@ AUTHOR
SEE ALSO
pwr(5)
Proview Last change: Nov 2003
Proview Last change: Nov 2003
......@@ -74,11 +74,3 @@ if [ -e /home/pwrp/Desktop ]; then
chown pwrp:pwrp /home/pwrp/Desktop/proviewdemo$ver.desktop
chmod a+x /home/pwrp/Desktop/proviewdemo$ver.desktop
fi
......@@ -25,7 +25,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -47,12 +47,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -97,7 +97,6 @@ fi
pkgroot=$pwre_broot/$pwre_target/bld/pkg/pwrrt
pkgsrc=$pwre_sroot/tools/pkg/raspbian/pwrrt
# Create directories
echo "-- Create package tree"
mkdir -p $pkgroot/DEBIAN
......@@ -189,4 +188,3 @@ else
fi
rm -r $pkgroot
......@@ -7,7 +7,6 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/jdk
. /etc/pwrp_profile
gdh_start()
{
export LD_LIBRARY_PATH=$pwr_exe
......@@ -17,7 +16,7 @@ gdh_start()
sleep 2
sudo -u pwrp $pwr_exe/rt_webmonmh.sh &
#su pwrp <java jpwr.rt.GdhServer &
#sudo -u pwrp java jpwr.rt.GdhServer &
}
......@@ -30,13 +29,13 @@ case "$1"
in
start)
echo "Startar GDH server..."
#if [ 'test -x ps aux | grep plc | grep -v grep' ]
# then
# echo "PWR kr, stoppar det frst.."
# pwr_stop
# fi
gdh_start
gdh_start
echo "Klar."
;;
stop)
......@@ -62,6 +61,3 @@ case "$1"
esac
exit 0
......@@ -243,7 +243,7 @@ if [ ! -e $proot ]; then
chown -R pwrp $proot
chgrp -R pwrp $proot
chmod g+w $proot/common/log
fi
if [ ! -e $aroot/db ]; then
......@@ -307,7 +307,6 @@ EOF
EOF
fi
if ! egrep -q "Alias[ ]+/pwr_doc/" /etc/apache2/apache2.conf; then
cat >> /etc/apache2/apache2.conf <<-EOF
......@@ -337,7 +336,6 @@ if [ -e /lib/udev/devices/pbus2 ]; then
chown pwrp:pwrp /lib/udev/devices/pbus2
fi
changes=0
if [ $new_user -eq 1 ]; then
changes=1
......@@ -373,14 +371,3 @@ if [ $changes -ne 0 ]; then
echo "***********************************************************"
echo ""
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 1
qcomBusId 517
#
# Web directory
#
......@@ -12,7 +12,3 @@ webDirectory /pwrp/common/web
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
......@@ -40,7 +40,7 @@ create_killer()
echo "#!/bin/bash" > $killer
echo "source /etc/pwrp_profile" >> $killer
echo "umask 002" >> $killer
echo "`ps ax | grep "rt_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "rs_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "ra_" | awk '{ print "kill -9 "$1}'`" >> $killer
......@@ -64,7 +64,6 @@ create_killer()
fi
}
pwr_start()
{
create_wrapper
......@@ -88,8 +87,8 @@ pwr_stop()
if [ -e $pwrp_exe/pwrp_stop.sh ]; then
sudo -u pwrp source $pwrp_exe/pwrp_stop.sh
fi
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
}
pwr_reload()
......@@ -108,14 +107,14 @@ pwr_kill()
$killer
else
sudo -u pwrp $killer
fi
fi
}
case "$1"
in
start)
echo "Start Proview Runtime Environment."
pwr_start
pwr_start
echo "Done."
;;
stop)
......
......@@ -2,7 +2,7 @@
.SH NAME
rt_rtt - Proview Runtime Terminal Tool
.SH SYNOPSIS
.B rt_rtt
.B rt_rtt
[user] [script] [configuration]
.SH DESCRIPTION
Examine and navigate in the realtime database from a VT100 terminal.
......@@ -24,17 +24,3 @@ A RttConfig object that configures the session.
Written by cs.
.SH "SEE ALSO"
.BR rt_xtt(1)
......@@ -2,16 +2,16 @@
.SH NAME
rt_xtt - Proview Operator Environment
.SH SYNOPSIS
.B rt_xtt
.B rt_xtt
[\fIOPTION\fR] [opplace]
.SH DESCRIPTION
The Proview Operator Environment contains a set of utitlities to display information
about the process and the Proview system:
.RS
.RS
\- Operator window.
.RE
.RS
.RS
\- Process Graphics drawn in the Ge editor.
.RE
.RS
......@@ -36,7 +36,7 @@ The name of the OpPlace object for the operator place.
.HP
\fB\-l\fR
.IP
Language.
Language.
.RS
en_us English
......@@ -72,10 +72,3 @@ Written by cs.
.SH "SEE ALSO"
.BR pwr(1),
.BR rt_ini(1)
......@@ -28,7 +28,7 @@ fi
{
let printout=0
while read line; do
if [ "${line:0:9}" = "Package: " ]; then
if [ "${line:0:9}" = "Package: " ]; then
package=${line#Package: }
fi
if [ "${line:0:9}" = "Version: " ]; then
......@@ -50,12 +50,12 @@ fi
echo "Copyright 2005-${d:0:4} SSAB EMEA AB"
echo ""
echo "This program is free software; you can redistribute it and/or"
echo "modify it under the terms of the GNU General Public License as"
echo "modify it under the terms of the GNU General Public License as"
echo "published by the Free Software Foundation, either version 2 of"
echo "the License, or (at your option) any later version."
echo ""
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "This program is distributed in the hope that it will be useful"
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of"
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
echo "For more details, see the"
echo "GNU General Public License. <weblink> http://www.proview.se/gpllicense.html"
......@@ -97,7 +97,6 @@ fi
pkgroot=$pwre_broot/$pwre_target/bld/pkg/pwrsev
pkgsrc=$pwre_sroot/tools/pkg/$hw/pwrsev
# Create directories
echo "-- Create package tree"
mkdir -p $pkgroot/DEBIAN
......@@ -188,4 +187,3 @@ else
fi
rm -r $pkgroot
......@@ -50,7 +50,6 @@ else
fi
if getent passwd pwrp > /dev/null; then
echo "-- user pwrp already exist"
else
......@@ -216,7 +215,7 @@ if [ ! -e $proot ]; then
chown -R pwrp $proot
chgrp -R pwrp $proot
fi
if [ ! -e $aroot/db ]; then
......@@ -261,14 +260,3 @@ if [ $changes -ne 0 ]; then
echo "***********************************************************"
echo ""
fi
......@@ -3,7 +3,7 @@
#
# Default QCOM Bus Id
#
qcomBusId 517
qcomBusId 517
#
# Web directory
#
......@@ -12,5 +12,3 @@ webDirectory /pwrp/common/web
# Default privileges for SevXtt: Read, Admin or None
#
sevXttDefaultPriv Read
......@@ -74,8 +74,3 @@ alias boot="/usr/bin/sudo /sbin/reboot"
if [ -e $pwrp_exe/profile ]; then
source $pwrp_exe/profile
fi
......@@ -30,7 +30,7 @@ create_killer()
echo "#!/bin/bash" > $killer
echo "source /etc/pwrp_profile" >> $killer
echo "umask 002" >> $killer
echo "`ps ax | grep "rt_" | awk '{ print "kill -9 "$1}'`" >> $killer
echo "`ps ax | grep "sev_" | awk '{ print "kill -9 "$1}'`" >> $killer
......@@ -38,7 +38,7 @@ create_killer()
echo "eval `ipcs -q|grep ^0x|grep "[ \t]pwrp[ \t]"|awk '{printf "ipcrm msg %s;", $2}'`" >> $killer
echo "eval `ipcs -m|grep ^0x|grep "[ \t]pwrp[ \t]"|awk '{printf "ipcrm shm %s;", $2}'`" >> $killer
echo "rm /tmp/pwr*\$PWR_BUS_ID" >> $killer
chmod a+rx $killer
if [ ! -e $killer ] ;then
echo "$killer not writable, check permissions"
......@@ -46,7 +46,6 @@ create_killer()
fi
}
pwr_start()
{
create_wrapper
......@@ -70,8 +69,8 @@ pwr_stop()
if [ -e $pwrp_exe/pwrp_stop.sh ]; then
sudo -u pwrp source $pwrp_exe/pwrp_stop.sh
fi
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
fi
while [ "`ps aux | grep -v grep | grep rt_`" != "" ] ; do sleep 1; done
}
pwr_reload()
......@@ -90,14 +89,14 @@ pwr_kill()
$killer
else
sudo -u pwrp $killer
fi
fi
}
case "$1"
in
start)
echo "Start Proview Storage Environment."
pwr_start
pwr_start
echo "Done."
;;
stop)
......
......@@ -2,7 +2,7 @@
.SH NAME
sev_xtt - Proview Storage Operator
.SH SYNOPSIS
.B sev_xtt
.B sev_xtt
[\fIOPTION\fR] [opplace]
.SH DESCRIPTION
The Proview Storage Operator Environment contains a set of utitlities to handle the
......@@ -17,7 +17,7 @@ The name of the OpPlace object for the operator place.
.HP
\fB\-l\fR
.IP
Language.
Language.
.RS
en_us English
......@@ -41,10 +41,3 @@ Written by cs.
.SH "SEE ALSO"
.BR sevpwr(1),
.BR sev_ini(1)
......@@ -10,7 +10,6 @@ endif
.SUFFIXES:
.PHONY : all init copy lib exe clean realclean \
$(clean_ge)
......@@ -33,22 +32,22 @@ dirs : $(bld_dir)$(dir_ext)
$(bld_dir)$(dir_ext) :
@ $(mkdir) -p $(mkdirflags) $(basename $@)
$(bld_dir)/control_pwrrt : ../../../pwrrt/control
$(bld_dir)/control_pwrrt : ../pwrrt/control
@ echo "build $(target)"
@ ../../../pwrrt/build.sh
@ ../pwrrt/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwr : ../../../pwr/control
$(bld_dir)/control_pwr : ../pwr/control
@ echo "build $(target)"
@ ../../../pwr/build.sh
@ ../pwr/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrdemo : ../../../pwrdemo/control
$(bld_dir)/control_pwrdemo : ../pwrdemo/control
@ echo "build $(target)"
@ ../../../pwrdemo/build.sh
@ ../pwrdemo/build.sh
@ cp $(source) $(target)
$(bld_dir)/control_pwrsev : ../../../pwrsev/control
$(bld_dir)/control_pwrsev : ../pwrsev/control
@ echo "build $(target)"
@ ../../../pwrsev/build.sh
@ ../pwrsev/build.sh
@ cp $(source) $(target)
......@@ -3,7 +3,6 @@
# Startscript fr PWR av Ulf Ljungdahl
#
#test -x /sbin/ipchains || exit 0
#test -x /sbin/ipchains-restore || exit 0
#test -x /sbin/ipchains-save || exit 0
......@@ -12,7 +11,6 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
. /etc/pwrp_profile
save ()
{
echo -n "Saving IP chains: "
......@@ -25,7 +23,7 @@ save ()
pwr_start()
{
$pwr_exe/rt_ini &
sleep 5
sleep 5
/usr/sbin/setrtprio `ps ax | grep "plc" | grep -v "grep" | awk '{ print $1}'`
}
......@@ -66,7 +64,7 @@ pwr_stop()
fi
rm /tmp/pwr*$PWR_BUS_ID
#rm -f /tmp/pwr*
#id=`ipcs -s | grep $user | awk '{print $2}'`
#id1=`echo $id | awk '{print $1}'`
......@@ -88,26 +86,26 @@ case "$1"
in
start)
echo "Startar PWR..."
#if [ 'test -x ps aux | grep plc | grep -v grep' ]
# then
# echo "PWR kr, stoppar det frst.."
# pwr_stop
# fi
pwr_start
pwr_start
echo "Klar."
;;
stop)
echo "Stoppar PWR..."
pwr_stop
# if [ "${SAVEONCE}" != "yes" ]
# then
# save
# echo -n "ipchains-save"
# else
# echo -n "Clearing IP chains:"
# fi
# fi
echo "Klar"
;;
restart)
......
......@@ -10,7 +10,6 @@ Menu DefaultRootMenu
"RTT" f.exec "/usr/bin/X11/xterm -T RTT -e ~/.rtt_start &"
"PSS-kort" f.exec "/usr/bin/X11/xterm -T PSS_Kort -e /usr/bin/minicom &"
"Xterm" f.exec "/usr/bin/X11/xterm -T XTerm -sb -right &"
"Klocka" f.exec "/usr/bin/X11/xclock &"
"Miniraknare" f.exec "/usr/bin/X11/xcalc &"
......@@ -44,7 +43,6 @@ Menu DefaultWindowMenu
Close _C Alt<Key>F4 f.kill
}
!!
!! Default Key Bindings
!!
......@@ -74,7 +72,7 @@ Buttons DefaultButtonBindings
<Btn3Down> icon|frame f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
}
!!
!! These are some example bindings that you might use if your
!! keyboardFocusPolicy is "explicit". Note that to use these, you'll
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment