#!/bin/sh # # This script will perform the update of the VideoFramer ucode # files found on this tape. # # YOU MUST BE SUPERUSER TO RUN THIS !! # (klaw) # # Save the old ucode files: cp /usr/video/vfr/ucode/d1_525.x /usr/video/vfr/ucode/d1_525.x.old cp /usr/video/vfr/ucode/d1_625.x /usr/video/vfr/ucode/d1_625.x.old cp /usr/video/vfr/ucode/r_y_625.x /usr/video/vfr/ucode/r_y_625.x.old cp /usr/video/vfr/ucode/rgb_625.x /usr/video/vfr/ucode/rgb_625.x.old # Update with the new files: cp d1_525.x /usr/video/vfr/ucode/d1_525.x cp d1_625.x /usr/video/vfr/ucode/d1_625.x cp r_y_625.x /usr/video/vfr/ucode/r_y_625.x cp rgb_625.x /usr/video/vfr/ucode/rgb_625.x