#!/bin/sh

. /etc/openwrt_release
. /etc/lime_release

sed -i -e s/"^DISTRIB_ID=.*"/"DISTRIB_ID='$LIME_ID'"/g \
	-e s/"^DISTRIB_RELEASE=.*"/"DISTRIB_RELEASE='$LIME_RELEASE'"/g \
	-e s/"^DISTRIB_REVISION=.*"/"DISTRIB_REVISION='$LIME_REVISION'"/g \
	-e s/"^DISTRIB_CODENAME=.*"/"DISTRIB_CODENAME='$LIME_CODENAME'"/g \
	-e s/"^DISTRIB_DESCRIPTION=.*"/"DISTRIB_DESCRIPTION='$LIME_DESCRIPTION'"/g \
	/etc/openwrt_release

exit 0
