예제 #1
0
/* Partition init must be after NAND init, so we put the fastboot
 * partition init here in the board late init.
 */
int board_late_init(void)
{
	fastboot_partition_init();
	set_boot_type_arg();
	check_android_misc();
	return 0;
}
/*
************************************************************************************************************
*
*                                             function
*
*    name          :
*
*    parmeters     :
*
*    return        :
*
*    note          :
*
*
************************************************************************************************************
*/
int board_late_init(void)
{
	fastboot_partition_init();
	check_android_misc();

#ifdef  CONFIG_ARCH_HOMELET
	update_user_data();
#endif
	return 0;
}
예제 #3
0
/*
************************************************************************************************************
*
*                                             function
*
*    name          :
*
*    parmeters     :
*
*    return        :
*
*    note          :
*
*
************************************************************************************************************
*/
int board_late_init(void)
{
	fastboot_partition_init();

#ifdef  CONFIG_ARCH_HOMELET
	respond_physical_key_action();
#endif
#ifndef CONFIG_SUNXI_SPINOR_PLATFORM
	check_android_misc();
#endif
#ifdef  CONFIG_ARCH_HOMELET
	update_user_data();
#endif
	return 0;
}