I build custom ROM for pandaboard. I would like to change/customize ro.build.version.release.
- I changed
PLATFORM_VERSION := 4.0.4.0.4.0.4inbuild/core/version_defaults.mk. The build version printed when building gets updated correctly. But after reflashing the boot image, thero.build.version.releasein the pandaboard remained the old one. - I added
BOARD_KERNEL_CMDLINE += androidbuild.version.release=4.0.4.0.19todevice/ti/panda/Boardconfig.mk, but that did not make the trick. - I ended up in adding
setprop ro.build.version.release 4.0.4.0.19toinit.omap4pandaboard.rconpost-fs-datarule, but that’s definitely not clean…
Does anyone know where this android property can be changed?
Ok, my bad. I reflashed the
bootimage although ro.build.version.release seems to be in thesystemimage. So solution 1 above was the right one…