Jump to content

hisataro

Members
  • Content Count

    24
  • Joined

  • Last visited

Everything posted by hisataro

  1. hello, @tooz I was successful. Thank you!
  2. Hello, @tooz Thank you for your reply! I will try it and report the results.
  3. Hi, Currently, we use "balenaEtcher" to write Android OS images by connecting to a PC. Is there a way to write an image from a USB or SD card without connecting a PC?
  4. hello @tooz, After changing the allocation of the build environment memory from 20GB to 24GB, "WW_Tinker_Board2-raw.img" was successfully generated. thank you!
  5. hello @tooz, I don't see any error-like messages, and the last "create dtoverlay.imgmkfs.fat 4.1 (2017-01-24)" It seemed to fail at . --- create misc.img.... done. create uboot.img... create idbloader.img...done. create trust.img... create loader... create config.cfg... create baseparameter...done. Build dtbodone. create dtoverlay.imgmkfs.fat 4.1 (2017-01-24) Make image failed! --- The following file on Docker [CONTAINER-ID]:/source/rockdev/Image-WW_Tinker_Board_2/WW_Tinker_Board_2-raw.img ~/ was not generated.
  6. hello @tooz However, I have not been able to successfully build V2.0.8. It was an environment that could be built with V2.0.3, but...
  7. Hello, minami The manifest file seems to have changed, but the documentation has not been updated. I was able to get the repository by doing the following: $ repo init -u https://[access token]@github.com/TinkerBoard-Android/rockchip-android-manifest.git -b android11-rockchip -m tinker_board_2-android11-2.0.8.xml --config-name
  8. > https://dlcdnets.asus.com/pub/ASUS/mb/Embedded_IPC/TINKER_BOARD_2_2S/Tinker_Board_2-Android11-V2.0.1-20210805.zip Please V2.0.8 source zip!
  9. boot.img は、Android11のソースコードをビルドする出来上がることを確認しています
  10. In my case I created a launcher app in AndroidStudio and replaced it, and called it in onPostCreate() as follows to call a target app at startup. private void launchApp() { String packageName = "com.mycompany.title"; String className = "com.unity3d.player.UnityPlayerActivity"; Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setClassName(packageName, className); startActivity(intent); }
  11. I found a site that describes the APK of "Tinker Config App". https://github-wiki-see.page/m/longge-lee/doc_test/wiki/Tinker-Developer-Guide https://github.com/TinkerBoard/TinkerBoard/files/8110293/TinkerConfig_1.0.2_20220210.apk.zip Not sure if this is official. But, I installed this APK and was able to change the logo.
  12. I'm using Android 11 built from source. I want to change the startup logo, how can I get TinkerConfig?
  13. Hi @yi-hsin_hung It worked by using mraa-2.0.0.aar directly from Unity ! // Put aar to Unity Plugin Folder UnityProjectFolder/Assets/Plugin/Android/mraa-2.0.0.aar // Gpio Instance AndroidJavaClass _TinkerBoard = new AndroidJavaClass("mraa.TinkerBoard"); AndroidJavaObject _TINKERBOARD_PIN3 = _TinkerBoard.GetStatic<AndroidJavaObject>("TINKERBOARD_PIN3"); int swigValue = _TINKERBOARD_PIN3.Call<int>("swigValue"); AndroidJavaObject _Gpio = new AndroidJavaObject("mraa.Gpio", swigValue); // Dir instance AndroidJavaClass _Dir = new AndroidJavaClass("mraa.Dir"); AndroidJavaObject _DIR_IN = _Dir.GetStatic<AndroidJavaObject>("DIR_IN"); // Mode Instance AndroidJavaClass _Mode = new AndroidJavaClass("mraa.Mode"); AndroidJavaObject _MODE_PULLUP = _Mode.GetStatic<AndroidJavaObject>("MODE_PULLUP"); // Call Gpio.read() AndroidJavaObject resultDir = null; AndroidJavaObject resultMode = null; resultDir = _Gpio.Call<AndroidJavaObject>("dir", _DIR_IN); resultMode = _Gpio.Call<AndroidJavaObject>("mode", _MODE_PULLUP); int result = _Gpio.Call<int>("read"); Tahnk you.
  14. Hello @yi-hsin_hung I want to use the mraa library in Unity, can you tell me the class name? ex unity C# code) AndroidJavaObject _javaClass = new AndroidJavaObject ("com.tinkerboard.mraa"); ?
  15. Hello @yi-hsin_hung I want to use the mraa library in Unity, can you tell me the package name? ex unity C# code) AndroidJavaObject _javaClass = new AndroidJavaObject ("com.tinkerboard.mraa");
  16. Thank you for your support. @tooz > once the flashing is done, please copy the boot image to the device. the boot.img file (TB2_Android11_v2.0.6_boot_img) is re-uploaded and can be downloaded > here: https://www.asuswebstorage.com/navigate/a/#/s/50AF1C5364224C2BA8C8A5802DD779064 I created a patch from this image with Magisk and flashed it, and it succeeded in rooting! I used the "RootCheker" app to see if it was rooted. Thank you really!!
  17. Thank you for your support. @tooz > 9. Flash boot image patched by magisk in fastboot mode > > adb reboot-bootloader After this, I couldn't find the device in [fastboot devices]. But, Apply the <Android Bootloader Interface> driver from your PC's Device Manager. I could see the devices in [fastboot devices]. > fastboot flash boot magisk_patched_[random_strings].img This also seems to be successful. > fastboot reboot This also seems to be successful. However, when TinkerBoard2 starts after this, the Android Recovery mode screen will be displayed. As I asked before, I don't know what to do in Android Recovery mode ...😥
  18. Thank you for your support. @tooz "reboot fastboot" was succed. And the screen was changed to "Android Recovery". What should I do next to root TinkerBoard2?
  19. Thank you for your support > I ran "fast boot flash boot", but it said "Waiting for device" and couldn't proceed. I did adb reboot fastboot on another PC and it went on. Tinkerboard2 became the Recovery screen after booting. I don't know what to do on the Recovery screen.
  20. Thank you for your support. I have successfully modified bootanimation.zip!
  21. Thank you for your support. The boot.img you sent us was successfully patched. https://tinker-board.asus.com/forum/index.php?/topic/15098-how-to-root-android-on-tinkerboard-2/&tab=comments I'm following the steps in > 9. Flash boot image patched by magisk in fastboot mode > > adb reboot-bootloader > > fastboot flash boot magisk_patched_ [random_strings] .img > > fastboot reboot I ran "fast boot flash boot", but it said "Waiting for device" and couldn't proceed. The device was recognized as "Android download gadget" from the PC, so I tried to apply the following driver, but I could not install it. https://developer.android.com/studio/run/win-usb?hl=ja What should I do to do a "fast boot flash boot"?
  22. Magisk fails, is the procedure wrong? Unzip Tinker_Board_2-Android11-v2.0.6-20220303.zip Renamed Tinker_Board_2-Android11-v2.0.6-20220303.img to boot.img. Magisk> Magisk Install> Select Patch a File> boot.img> Let's Go fails. It is the execution result of Magisk. -Device Platform: arm64-v8a -Installing: 24.3 (243000) --Copying image to cache --Unpacking boot image ! Unable to unpacl boot image ! Installation failed
  23. I want to change the boot logo of Android 10/11. Please tell me how.
  24. Android10/11のbootロゴを変更したいです。 方法を教えてください。
×
×
  • Create New...