blob: 51ebe9d24bf27c459bf347b24ca6d91f7e73f023 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
SYSCTL=kern.ipc.shm_allow_removed
if [ "`/sbin/sysctl -n $SYSCTL`" = 0 ] ; then
cat << EOMSG
For correct operation, shared memory support has to be enabled
in Chromium by performing the following command as root :
sysctl $SYSCTL=1
To preserve this setting across reboots, append the following
to /etc/sysctl.conf :
$SYSCTL=1
EOMSG
exit 1
fi
ulimit -c 0
exec %%PREFIX%%/share/chromium/chrome ${1+"$@"}
|