Post-thumbnail only for specific post-types?

Use remove_post_type_support to disable features for specific post types.

add_action( 'init', 'wpa63635_init' );
function wpa63635_init() {
    remove_post_type_support( 'post', 'thumbnail' );
}