Add init.htc.rc and modify ADB sideload messages
This commit is contained in:
@@ -43,14 +43,24 @@ static void
|
||||
set_usb_driver(bool enabled) {
|
||||
int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
|
||||
if (fd < 0) {
|
||||
/* These error messages show when built in older Android branches (e.g. Gingerbread)
|
||||
It's not a critical error so we're disabling the error messages.
|
||||
ui->Print("failed to open driver control: %s\n", strerror(errno));
|
||||
*/
|
||||
LOGI("failed to open driver control: %s\n", strerror(errno));
|
||||
return;
|
||||
}
|
||||
if (write(fd, enabled ? "1" : "0", 1) < 0) {
|
||||
/*
|
||||
ui->Print("failed to set driver control: %s\n", strerror(errno));
|
||||
*/
|
||||
LOGI("failed to set driver control: %s\n", strerror(errno));
|
||||
}
|
||||
if (close(fd) < 0) {
|
||||
/*
|
||||
ui->Print("failed to close driver control: %s\n", strerror(errno));
|
||||
*/
|
||||
LOGI("failed to close driver control: %s\n", strerror(errno));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user