diff options
author | codeworkx <codeworkx@cyanogenmod.org> | 2013-03-13 17:00:06 +0000 |
---|---|---|
committer | codeworkx <codeworkx@cyanogenmod.org> | 2013-03-13 17:00:06 +0000 |
commit | 993cbfb1a7a1b5da53bd3aaee92cd0d84bbb2dfa (patch) | |
tree | 2ca493617ce1f9b7b80d16c46ebf0cc107f0c7f9 /configs | |
parent | eb026762b713e43135b543e509540dee0bb81043 (diff) | |
download | device_samsung_smdk4412-common-993cbfb1a7a1b5da53bd3aaee92cd0d84bbb2dfa.zip device_samsung_smdk4412-common-993cbfb1a7a1b5da53bd3aaee92cd0d84bbb2dfa.tar.gz device_samsung_smdk4412-common-993cbfb1a7a1b5da53bd3aaee92cd0d84bbb2dfa.tar.bz2 |
smdk4412-common: add camera firmwares for all 4412 devices
Change-Id: I63b69670aebacf9ca672e000eccde1a524319e73
Diffstat (limited to 'configs')
-rw-r--r-- | configs/80cfw | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/configs/80cfw b/configs/80cfw new file mode 100644 index 0000000..637142d --- /dev/null +++ b/configs/80cfw @@ -0,0 +1,15 @@ +#!/system/bin/sh +# +# Copy camera firmware to /data/cfw +# + +busybox cp /system/vendor/firmware/SlimISP_GD.bin /data/cfw/SlimISP_GD.bin +busybox cp /system/vendor/firmware/SlimISP_GH.bin /data/cfw/SlimISP_GH.bin +busybox cp /system/vendor/firmware/SlimISP_GK.bin /data/cfw/SlimISP_GK.bin +busybox cp /system/vendor/firmware/SlimISP_ZD.bin /data/cfw/SlimISP_ZD.bin +busybox cp /system/vendor/firmware/SlimISP_ZH.bin /data/cfw/SlimISP_ZH.bin +busybox cp /system/vendor/firmware/SlimISP_ZK.bin /data/cfw/SlimISP_ZK.bin + +busybox chown system /data/cfw/* +busybox chgrp media /data/cfw/* +busybox chmod 0775 /data/cfw/* |