The log-normal distribution of germination times is parameterised as:
$$ P(t) = d * pnorm(b*(log(t + 0.000001) - log(d)))$$
where 't' is the time and 'P(t)' is the proportion of germinated seeds at time = t. LogNormalSurv is parameterised as usual in survival analysis:
$$ P(t) = d * pnorm(b*(log(t + 0.000001) - d))$$
i.e. with 'e' on a log-scale and a log-link on 'b'. With no cured fraction (d = 1), logNormalSurv gives same results as 'survereg' in the 'survival package', with 'dist = "lognormal"'.