blob: ea0be27badffcf34fd1b84b291e87523fc3cc0c7 (
plain)
1
2
3
4
5
6
7
8
|
To build kernel including MFC fw
1. Make ihex file using command as below
: objcopy -I binary -O ihex s5pc110-mfc.fw s5pc110-mfc.fw.ihex
: Add s5pc110-mfc.fw.ihex in the $kernel_root/firmware
2. Add configuration on the Makefile(in $kernel_root/firmware)
: fw-shipped-$(CONFIG_VIDEO_SAMSUNG_S5P_MFC) += s5pc110-mfc.fw
3. Run 'make' in the $kernel_root
|