Jump to content

rforcen

Members
  • Posts

    36
  • Joined

  • Last visited

Everything posted by rforcen

  1. latest release works for me (Armbian_20.10_Arm-64_bullseye_current_5.9.0_desktop.img.xz) extlinux.conf: ------------------------------------------------------------------------------------------------------------------------ LABEL Armbian LINUX /zImage INITRD /uInitrd FDT /dtb/amlogic/meson-g12a-x96-max.dtb APPEND root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 ------------------------------------------------------------------------------------------------------------------------ rename u-boot-s905x2-s922 to u-boot.ext
  2. https://androidpc.es/firmware-x88-pro-x3/
  3. found a general arm nn sdk: https://github.com/ARM-software/armnn
  4. from https://www.cnx-software.com/2019/04/10/amlogic-s905x3-s905y3-s905d3-quad-core-cortex-a55-ai-processors/ The “AI processor” is extra and likely the same 2.5/5.0 TOPS neural network accelerator as found in the upcoming Amlogic S922D processor. so it seems that the S905x3 contains AI hw but it must be the -NON version, to download the toolkit you must be a khadas registered user... anyone has tried this before?
  5. please read previous posts or google before enquiring
  6. if it's the s905w version use dtb: meson-gxl-s905w-tx3-mini.dtb with a kernel 5.5
  7. please read the product Q&A or google it before posting here: Question: Does anyone know if this works with ubuntu 14.04? Answer: No! The "real" TP-WN725N will, but these (thought advertised as a WN725N) are "NOT" the WN725N, but are made by Archer, and they don't work with LINUX, Ubuntu or LINUX Mint. If you get a real TP-WN725N and plug it in, it will work right out of the box!!
  8. i've got 5 wifi dongles and all work, the latest is a ac600 "free driver" working with the rtl8821CU driver , Bus 003 Device 008: ID 0bda:c811 Realtek Semiconductor Corp. 802.11ac NIC others: Bus 003 Device 005: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless Adapter Bus 003 Device 006: ID 2001:3319 D-Link Corp. Wireless N Nano USB Adapter better to install realtek drivers sudo apt search realtek
  9. not really worth it spending much time with this as it can be solved with a cheap wifi dongle & bt, also solved sound issues with dlna, broadcom is the original dtb posting, (don't ask me why)
  10. i've done many successful installations by now, but if it bricks, to recover you will need 1. x96max+ android 9 firmware, i downloaded from http://geekbuying.mediafire.com/file/n6pu4qiqalf56d1/aml_upgrade_package.img/file 2. male-2-male type A usb cable 3. win10 apps. and instrutions provided by wechipbox.com hope this helps
  11. using bash integrated arithmetics: ANDROID_SIZE=1500 # size in MB of android image file BOOT_SIZE=$(($ANDROID_SIZE+512)); BOOT_SIZE1=$(($BOOT_SIZE+1)) parted -s "${DEV_EMMC}" mkpart primary fat32 "$ANDROID_SIZE"M "$BOOT_SIZE"M parted -s "${DEV_EMMC}" mkpart primary ext4 "$BOOT_SIZE1"M 100%
  12. in a more general form: ANDROID_SIZE=1500 # size in MB of android image file BOOT_SIZE=`echo $ANDROID_SIZE+512|bc` BOOT_SIZE1=`echo $BOOT_SIZE+1|bc` parted -s "${DEV_EMMC}" mkpart primary fat32 "$ANDROID_SIZE"M "$BOOT_SIZE"M parted -s "${DEV_EMMC}" mkpart primary ext4 "$BOOT_SIZE1"M 100%
  13. just added the complete patched script, enjoy!
  14. just extend android gap to 1.5G in partition section of script, ---- parted -s "${DEV_EMMC}" mkpart primary fat32 1700M 2212M # 1.7G here but only 1.5G required parted -s "${DEV_EMMC}" mkpart primary ext4 2213M 100% ---- complete patched script install-aml.sh
  15. hmmm, meson-g12a-x96-max.dtb works on mine maybe different hw versions on this deivce?
  16. on my x96max+2 i have to extend the android gap in the install-aml.sh partition section to match the 1.5G android size.
  17. this is my working config for x96max2+ (s905x3 - 4G/64G): extlinux/extlinux.conf: ---------------------------------------------------------------------- LABEL Armbian LINUX /zImage INITRD /uInitrd FDT /dtb/amlogic/meson-g12a-x96-max.dtb APPEND root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 ---------------------------------------------------------------------- and rename u-boot-s905x2-s922 (740kb size) to u-boot.ext u-boot-s905 will not work regards
  18. i'm working on it, both dtb & firmware, i've just tried with 88x2ce, compiled & installed, dbt to compatible="realtek, rtl88x2ce"; but no luck yet.
  19. on x96max(4/64)/mini(2/16) devices i've been able to install modifying the size of android-9 gap approx. 1.5G in the partition section of the install-aml.sh script, so just added 1G to current figures and it worked: was fat32 from 700 to 956, ext4 from 957 to 100% modified to fat32 from 1700 to 1956, ext4 from 1957 to 100% seems like android content must be totally preserved for a proper boot
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines