6 lines
181 B
Bash
Executable file
6 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Turn on 2050 PA so that osmo-bts can do power ramping.
|
|
if [ `/usr/bin/sysmobts-util model-nr` == '2050' ] ; then
|
|
/usr/bin/sbts2050-util sbts2050-pwr-enable 1 1 1
|
|
fi
|