I'm a complete newby to Pi and to Servo's. But I got it to work with wiringPi.
It says here that we're looking to create pulse of 1ms to 2ms in length, every 20ms or so. 
          Assuming this 19.2Mhz base clock is indeed correct, setting pwm clock to 400 and pwm range to 1000, should give a pulse at 48Hz or every 20.8 ms. 
          Then setting pwm value to 48 should give you a 1ms long pulse and a pwm value of 96 should give you a 2ms long pulse. 
          But you need to set the chip in pwm-ms mode. 
          (Lots of shoulds here, since I do not have an osciolloscope either)
So to set it up:
- gpio mode 1 pwm
 - gpio pwm-ms
 - gpio pwmc 400
 - gpio pwmr 1000
 
And then you can turn the servo from left to right via
- gpio pwm 1 48
 - gpio pwm 1 96
 
(Actually, the servo I got worked from 28 up to 118; could be the servo) (The setup sequence seems important; could be a bug)