Jump to content

Search the Community

Showing results for tags 'nanopim4v2'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Armbian
    • Armbian project administration
  • Community
    • Announcements
    • SBC News
    • Framework and userspace feature requests
    • Off-topic
  • Using Armbian
    • Beginners
    • Software, Applications, Userspace
    • Advanced users - Development
  • Standard support
    • Amlogic meson
    • Allwinner sunxi
    • Rockchip
    • Other families
  • Community maintained / Staging
    • TV boxes
    • Amlogic meson
    • Allwinner sunxi
    • Marvell mvebu
    • Rockchip
    • Other families
  • Support

Categories

  • Official giveaways
  • Community giveaways

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Matrix


Mastodon


IRC


Website URL


XMPP/Jabber


Skype


Github


Discord


Location


Interests

  1. Hi, I was struggling in the Wifi connectivity with following syndromes: 1. Having trouble connecting to 5GHz network by default unless specifying BSSID 2. Will disconnect after a day or so 3. Cannot parse RX packet header properly (and will spamming errors in dmesg) After putting in some efforts, I've found a newer firmware version on GitHub: New Firmware: BCM4356/2 wl0: Apr 18 2017 13:54:43 version 7.35.184.1.r5 (A2 Station/P2P) FWID 01-efd4ca0d Original Firmware: BCM4356/2 wl0: May 14 2014 19:51:52 version 7.35.17 (r477908) FWID 01-2ed3ee81 The NVRAM text file is identical to `brcmfmac4356-sdio-nanopi-m4v2.txt` shipped with buster 20.05.2 image release, but I noticed the default country code is set to 0x5855, or 'UX' translated over ASCII code. This should be 'US' or 0x5355 instead. New firmware fixes problem 2 and 3, and changing ccode fixes problem 1. [tl;dr] Update the latest firmware hosted on this GitHub repo: https://github.com/rockchip-linux/rkwifibt/tree/master/firmware/broadcom/AP6356 And change the ccode in brcmfmac4356-sdio-nanopi-m4v2.txt to match your own country code in ASCII, little-endian format: e.g. 0x5355 for United States. I'd like to request the fix in the upcoming package/image update. At this moment, brcmfmac4356-sdio.bin will be overridden by updating armbian-firmware package. Therefore I will have to manually restore this file after each update or I would lose my Wifi. Thanks
  2. Hi all, is it possible to boot a Nanopi M4 V2 from a NVME M2 ?
  3. Hallo, I've been using Armbian on the NanoPi M4 V2 for a while and now I'm thinking about switchen from the legacy kernel to the current kernel. Unfortunately that's not so easy to do when using armbian-config. You could think you can just select the current-kernel in the list but you won't find it there. The reason is simple: the legacy kernel belongs to the rk3399-family and the current kernel is rockchip64. Which is basically the same, but from an organisational point of view it is not (please forgive me if I do not show an adequate technical precision here, the details and the plan to clean that up are explained here). What I would be interested in is now: Is there a proper way to switch the kernel manually? As I said, I have been using the system for a while now, so setting it up from scratch with the right kernel is something I would like to avoid. I had a look into the source of armbian-config so I know that manipulating the LINUXFAMILY in /etc/armbian-release will display the current-kernel in the list. But I don't want to imagine what kind of side-effects will hit me when starting the installation process that way. Cheers, Matthias
  4. Hi, the latest Bionic Legacy Desktop images for NanoPi M4 V2 (Armbian_20.05.2_Nanopim4v2_bionic_legacy_4.4.213_desktop.img.xz and Armbian_20.05.1_Nanopim4v2_bionic_legacy_4.4.213_desktop.img.xz) do not boot on the board. No green LED. No video output at all. I haven't checked UART. The latest working image is Armbian_20.02.7_Nanopim4v2_bionic_legacy_4.4.213_desktop.7z I have a good power supply (12V 2A, also tried with USB 5V 3A), and a good MicroSD card (high endurance). I did not forget to unXZ the new image file and write it with dd, just as 20.02.7 7z. I've checked the checksum of written data on the MicroSD card, and it equals to the checksum of the uncompressed file, that's why I believe that the images are broken. The issue happened somewhere in between .7z → .xz image transaction. If I update 20.02.7 with apt, it continues to work fine.
  5. Hey! I recently accidentally made my eMMC unbootable. I ordered this adapter, but the eMMC isn't getting picked up by any of my microSD adapters. Is there a way to hotplug the eMMC chip while booting from SD, like with the Pinebook Pro (which is also RK3399 based)? I'd really like to either repair or clear the eMMC so i could continue using it. Thanks!
  6. I'm working on a project using the nanopim4v2-current image. I noticed an issue with the available HDMI output resolutions. Only a select few resolutions are available, despite the connected screen advertising support for additional ones. I was also unable to output a custom resolution (for example 1920x538) by adding the proper modeline in manually through xrandr. I've been looking into this for a bit and managed to find a partial solution in Miouyouyou's recent pull request "[RFC] RK3288 : Add HDMI resolutions". Adding the patches to my build enabled support for my monitor's native resolution (1920x1200) and allowed me the ability to output custom resolutions as well. However, some custom resolutions, which work with the legacy 4.4.x kernel, still don't output properly. The restriction on the available resolutions stems from the dw_hdmi_rockchip_mode_valid function. It currently rejects any modes with a clock rate that isn't in the rockchip_mpll_cfg table (as mentioned by Kwiboo). I'm able to fix my issue by just removing the registration of the helper function with the following patch: diff --git a/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c b/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c index 906891b03..8a9ccf508 100644 --- a/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c +++ b/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c @@ -459,7 +459,6 @@ static struct rockchip_hdmi_chip_data rk3399_chip_data = { }; static const struct dw_hdmi_plat_data rk3399_hdmi_drv_data = { - .mode_valid = dw_hdmi_rockchip_mode_valid, .mpll_cfg = rockchip_mpll_cfg, .cur_ctr = rockchip_cur_ctr, .phy_config = rockchip_phy_config, I'd like to see this functionality (setting custom resolutions) added to Armbian. Is this a patch worth submitting as a pull request? I understand that this is more of a hack than a proper solution. I saw that Kwiboo mentioned he was working on something more comprehensive. What can I do to help with this?
  7. EDIT: I hate to have to admit this, but I completely forgot that the nanopi m4 v2 needs external antennas for its wifi to operate properly. (I bought just before the coronavirus hit, and it was several weeks before I got back to setting up the board. First board I've had that needs that.) Having terrible troubles getting a working wifi on various Armbian OSes on nanopi-m4v2. Tried: Armbian_20.05.1_Nanopim4v2_bionic_legacy_4.4.213_desktop.img Armbian_20.02.7_Nanopim4v2_buster_legacy_4.4.213_desktop.img (Armbian_20.05.2_Nanopim4v2_focal_current_5.4.43_desktop.img - just won't boot, as of 24h ago) Armbian_20.05.2_Nanopim4v2_buster_current_5.4.43_desktop.img I run off a cellphone hotspot. It seems it has to be an inch away to get a reliable first authentication, and any functional data rate after that. The connection can drop if I move the phone to the other side of the desk, definitely if I put the phone a couple of feet out the door. The laptop has no such problems, so its not the phone. I compared the devices with `sudo iwlist wlan0 scan` Laptop: Frequency:2.462 GHz (Channel 11) Quality=23/70 Signal level=-87 dBm Nanopi M4: bionic (Linux nanopim4v2 4.4.213-rk339 #7 SMP Sat May 30 13:20:02 CEST 2020...) Frequency=2.462 GHz (Channel 11) Quality:1/5 Signal level:-87 dBm Noise level:-92 dBm IE: IEEE 802.11i/WPA2 Version 1 I tried the DietPi image for the device, but it couldn't even complete a firstrun login/config because it couldn't detect any wifi hardware. (Reported here). Also, I note that some have had wifi troubles over at the Openmedia forums with this board, although presumably this is the first version. Could a firmware/driver issue cause this? A bad batch of boards? Its not as if the whole internet is awash with complaints. I don't have the technical skills to pursue this myself, (compiling, builds, swapping kernels, etc), but if it helps, I could try things at your instruction.
  8. Hi - trust this is the right forum. I have forgotten the login password to my Arbian installation on the nanopi m4 V2. It boots from the eMMC just fine, but I am stuck at the prompt. I had only just installed it a few weeks ago (then things got hectic), so nothing really invested - I could just install again via the SD card, right? Unfortunately, it looks like the SD slot is no longer working. In the last 2-3 days nothing seems to boot from it. Which leaves me with an eMMC module loaded up with an Armbian - I think its bionic, because it does have wifi (buster never worked with wifi). In other 'vanilla' flavours of of linux, I could recover via grub or mounting on a liveUSB, but here I don't know what to do. Is there an Armbian equivalent. I read somewhere that hitting 'space' during boot up would get a menu, but can't find it and it doesn't seem to work, anyway. TLDR 1. SD reader has died, apparently. (not happy...) 2. eMMC module is loaded with an Armbian (?bionic?) and I don't have passwords anymore 3. Should I just wait (a Covid-19 wait!) on a eMMC reader to reflash directly from my computer. Has anyone actually done that? Further question: does anyone have a recommendation for eMMC-USB reader/writer? The Friendly module seems to have a special socket? Not sure if it fits in standard readers.
  9. I'm not sure what I'm doing wrong, I'm not an expert with this. I have the M4V2 with metal case. I downloaded Armbian_20.02.7_Nanopim4v2_bionic_legacy_4.4.213_desktop.7z and burned the IMG to one of my spare M4 eMMc Problem is that the eMMC does not boot and does nothing So I tried another M4 eMMC and exactly the same thing. So I burned the img to an SD card and it boots fine. But I cannot see the eMMC AT ALL, lsblk does not show it Is it possible the M4 eMMC is NOT compatible ( I dont' think so or I would have seen in my searches) OR I did something wrong ? Or missed a step I don't remember having this with my M4 ? Thanks in advance
  10. Hi I`m trying to set NAS server (OMV) on nanopi M4v2 with sata HAT and eMMC. I have instaled OMV but it is working realy slow and I want to make another clean install. I`m using Armbian Buster from here https://www.armbian.com/nanopi-m4-v2/ I`m tryng now for 4 hours to boot from fresh made SD card but I always end up on eMMC module. If I unplug module I can boot from SD card. I was trying Recovery key and PWR key combination but with no luck What can I try next. Thank you for help!
  11. Hi all, first off, I love my NanoPiM4V2 boards, the big drawback with them for me is backing them up, if you are running them from an eMMC and you have the board in a case, you have to remove the cover of the case, if you have a hat ( which I do ) you also have to remove that , then you can remove the eMMC module and clone or do whatever with it. What would be good for me, is, if I could temporarily boot from an sdcard , unmount the eMMC, and clone it for backup purposes. Before I ruin anything I thought I'd ask the experts. Is this doable ?
  12. Hey, I am using a Nanopi M4v2 with a Satahat as server for openmediavault and plex. Since I got a lot of freezes/crashes (every 24-72h, the Nanopi lost the connection, and the green LED isn't blinking anymore) with "Armbian 20.02.7 buster current 5.4.28" on a SD-Card. I plugged a SSD in and used the nand-install script with a clean installed SD-Card. But this doesn't help, the problem is still there. The log got spamed with this: May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: writing May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 01 4c fc ff 3d 01 22 00 00 0d 05 00 00 50 fb 31 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff ff 00 00 0d 05 00 00 64 f9 31 00 ff ff 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 0d 0a 00 00 78 fb 31 00 ff ff 00 00 0d 0a 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 60 f9 31 00 ff ff 00 00 05 09 00 00 74 fb 31 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff ff 00 00 05 09 00 00 4c f9 31 00 ff ff 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 09 08 00 00 5c fb 31 00 ff ff 00 00 09 08 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 44 f9 31 00 ff ff 00 00 09 09 00 00 54 fb 31 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff ff 00 00 09 09 00 00 50 f9 31 00 ff ff 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 0f 07 00 00 60 fb 31 00 ff ff 00 00 0f 07 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 5c f9 31 00 ff ff 00 00 0e 09 00 00 6c fb 31 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff ff 00 00 0e 09 00 00 24 01 60 00 ff 00 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 65 00 00 00 34 01 60 00 ff 00 00 00 9b 00 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 38 01 60 00 ff 00 00 00 65 00 00 00 48 01 60 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff 00 00 00 9b 00 00 00 98 f8 31 00 ff ff 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 d9 7f 00 00 9c f8 31 00 ff ff 00 00 34 33 00 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 a0 f8 31 00 ff ff 00 00 a3 0f 00 00 a4 f8 31 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 00 ff ff May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: received 7 May 3 13:17:03 nanopi brcm_patchram_plus_rk3399[1338]: 04 0e 04 01 4c fc 00 and this: May 3 13:17:04 nanopi brcm_patchram_plus_rk3399[1338]: writing May 3 13:17:04 nanopi brcm_patchram_plus_rk3399[1338]: 01 4c fc 05 ba 62 0d 00 00 May 3 13:17:04 nanopi brcm_patchram_plus_rk3399[1338]: received 7 May 3 13:17:04 nanopi brcm_patchram_plus_rk3399[1338]: 04 0e 04 01 4c fc 00 after 10mins when this happens in the logs, the Nanopi lost his connection. Over armbian-config I created the logs here. I tested a clean armbian install on a brand-new SanDisk SD-Card, without any other installation before, but there was exactly the same problem, after 24-72h of running. Thanks for helping and greeting!
  13. Dear all, Has anyone tested using Wifi‘s AP and Station at the same time? I checked the info of wifi on this NanoPi M4V2 board with command: sudo iw list. the infomation of this wifi: .... valid interface combinations: * #{ managed } <= 1, #{ P2P-device } <= 1, #{ P2P-client, P2P-GO } <= 1, total <= 3, #channels <= 2 * #{ managed } <= 1, #{ AP } <= 1, #{ P2P-client } <= 1, #{ P2P-device } <= 1, total <= 4, #channels <= 1 .... This information shows it support the AP and station at the same time, but I only find a create AP in the armbian-config. And I tested create AP, it works fine, but only AP runs, station does not work. So who can offer me more information? Thanks Chad
  14. Hi all, I've been away for a while - is the version shown below the latest for the NanoPi M4 V2 ? Linux M4V202 4.4.213-rk3399 #23 SMP Sat Mar 28 16:58:50 CET 2020 aarch64 aarch64 aarch64 GNU/Linux
  15. Hi, I'm trying to build a zynthian synthesizer on a nanoPi m4v2. The principle is to start from a minimal buster image and run a bunch of compilation scripts (see here on github) to create all the needed software. But all that stuff is for Raspberry Pi. In an initialization script (see here on github) they define compilation flags like this: if [ "$ZYNTHIAN_FORCE_RBPI_VERSION" ]; then hw_architecture="armv7l" rbpi_version=$ZYNTHIAN_FORCE_RBPI_VERSION else hw_architecture=`uname -m 2>/dev/null` if [ -e "/sys/firmware/devicetree/base/model" ]; then rbpi_version=`tr -d '\0' < /sys/firmware/devicetree/base/model` else rbpi_version="" fi fi if [ "$hw_architecture" = "armv7l" ]; then # default is: RPi3 CPU="-mcpu=cortex-a53 -mtune=cortex-a53" FPU="-mfpu=neon-fp-armv8 -mneon-for-64bits" if [[ "$rbpi_version" =~ [2] ]]; then CPU="-mcpu=cortex-a7 -mtune=cortex-a7" FPU="-mfpu=neon-vfpv4" fi #CPU="${CPU} -Ofast" #Breaks mod-ttymidi build FPU="${FPU} -mfloat-abi=hard -mlittle-endian -munaligned-access -mvectorize-with-neon-quad -ftree-vectorize" CFLAGS_UNSAFE="-funsafe-loop-optimizations -funsafe-math-optimizations -ffast-math" fi export MACHINE_HW_NAME=$hw_architecture export RBPI_VERSION=$rbpi_version export CFLAGS="${CPU} ${FPU}" export CXXFLAGS=${CFLAGS} export CFLAGS_UNSAFE="" export RASPI=true I'm totally confused with aarch64, arm64, armv7, armv8 ... Can someone help me to set the right options here. What I've done so far, was to remove all these FLAGS initialization (because of errors), but this is for sure not the best way to optimize that Thank you for your input!
  16. Hi, I'm new to Linux and Armbian, I need your help. My Nanopi M4 V2 freezes periodically and I can’t understand the reason. I am using Armbian Buster with Kernel 5.4.2. On board also used 4x SATA HAT for NanoPi M4. I still can’t show the system log before it froze again. But now in the system log more than 2 hours the same thing is repeated: Mar 13 14:34:50 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: 01 03 0c 00 Mar 13 14:34:54 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: writing Mar 13 14:34:54 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: 01 03 0c 00 Mar 13 14:34:58 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: writing Mar 13 14:34:58 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: 01 03 0c 00 Mar 13 14:35:01 AsProDent-NAS CRON[5306]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1) Mar 13 14:35:02 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: writing Mar 13 14:35:02 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: 01 03 0c 00 Mar 13 14:35:06 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: writing Mar 13 14:35:06 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: 01 03 0c 00 Mar 13 14:35:10 AsProDent-NAS brcm_patchram_plus_rk3399[1238]: writing
  17. Hello I'm trying to install ZFS on the recomended armbian 4.4 bionic image for Nano PI 4 V2 (this is the default kernel) : uname -a Linux nanopim4v2 4.4.210-rk3399 #3 SMP Sat Jan 25 14:13:06 CET 2020 aarch64 GNU/Linux It complains there are no kernel headers to build a module for the 4.4.210 kernel: " sudo apt install zfs-dkms ..... Building for 4.4.210-rk3399 Module build for kernel 4.4.210-rk3399 was skipped since the kernel headers for this kernel does not seem to be installed. ... ● zfs-mount.service - Mount ZFS filesystems Loaded: loaded (/lib/systemd/system/zfs-mount.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Mon 2020-02-17 13:03:10 UTC; 17ms ago Docs: man:zfs(8) Process: 13389 ExecStart=/sbin/zfs mount -a (code=exited, status=1/FAILURE) Main PID: 13389 (code=exited, status=1/FAILURE) " I've looked into the output of "apt-cache search linux-headers" and there is no package for 4.4.210-rk3399 Also, the armbian-setup tool will install "linux-headers-rk3399 - Linux kernel headers for 4.4.192-rk3399 on arm64" Is there a way to get the headers for 4.4.210 or prepare them locally ? I've tried downgrading to 4.4.192 but the board was unstable and after some time the DTB's got messed up and I could no longer boot that image
  18. I have noticed that the NanoPi M4V2 has an OPP table which causes the device to overclock; the table is suitable for an RK3399K SoC, but the M4V2 has a standard RK3399 SoC with maximum speeds of 1.42GHz for the A53 cores and 1.80GHz for the A72 cores (despite FriendlyArm themselves citing the K speeds in marketing material, which is incorrect). I believe that this may also be causing stability issues with my unit, however I will be performing additional testing (I cannot find where it is getting the "extended" OPP tables from, so I am limiting it via cpufreq-set and testing for stability.) Does anyone have any insight or ideas?
  19. Hi, I would like to enable 4K output for my new monitor connected to a NanoPi M4V2 running Armbian based on Ubuntu Bionic legacy. I have searched for some days now, but could not find a solution. I would be very glad, if someone could just point me to the right direction on how to configure the Armbian desktop environment for 4K.
  20. Hi all, I have found a weird condition. I have a home built image running off sd card with no probs. my EMMC has friendly distro on it. I ran nand-sata-install to install armbian to EMMC. then I ran growpart and resize2fs against the EMMC and rebooted. afterwards, host failed to boot from emmc. so I thought "no probs, boot of sd". But SD failed to boot also. I tried same SD card in 1st gen nanopim4. boot happened fine. retried boot in nanopim4v2 and failed to boot. re-wrote arbian image and still failed to boot from SD. wrote friendly image to sd card and boot happened fine. ran dd against emmc and re-wrote same armbian image to SD card. machine booted fine. it seems if you have armbian on emmc and it's corrupted, it won't boot armbian from the SD card. lucky I've spent plenty of time to get good backups of pretty much any SBC, whether on SD or emmc
  21. I've got an m4v2 running current armbian (Armbian_19.11.4_Nanopim4_bionic_legacy_4.4.192_desktop.7z) I get a stack of messages on tty1 and in dmesg stating "get wrong frequency". it was also logging via syslog, but I have disabled those from logging. it also seems to generate one of these messages every time I hit a key on the keyboard. somehow related to kbd interrupt? ondemand cpu freq scaling works, running cpu intensive jobs, the following frequencies were observed Jan 11 10:45:01 m4-2 root: CPUTEMP 45.00 (600.00/600.00) Jan 11 21:50:01 m4-2 root: CPUTEMP 44.44 (1416.00/600.00) Jan 11 21:55:01 m4-2 root: CPUTEMP 45.62 (1416.00/600.00) Jan 11 22:00:02 m4-2 root: CPUTEMP 58.33 (1416.00/1800.00) Jan 11 22:05:01 m4-2 root: CPUTEMP 47.50 (600.00/1800.00) Jan 11 22:10:01 m4-2 root: CPUTEMP 46.25 (1416.00/600.00) Jan 11 22:15:01 m4-2 root: CPUTEMP 60.62 (1416.00/1800.00) Jan 11 22:20:01 m4-2 root: CPUTEMP 64.38 (1416.00/1800.00) [ 7.156821] rockchip-dmc dmc: Get wrong frequency, Request 528000000, Current 856000000 [ 7.215030] rockchip-dmc dmc: Get wrong frequency, Request 528000000, Current 856000000 [ 7.266670] rockchip-dmc dmc: Get wrong frequency, Request 800000000, Current 856000000 [ 7.268762] rockchip-dmc dmc: Get wrong frequency, Request 528000000, Current 856000000 [ 7.320885] rockchip-dmc dmc: Get wrong frequency, Request 528000000, Current 856000000 [ 7.373161] rockchip-dmc dmc: Get wrong frequency, Request 400000000, Current 856000000 [ 7.424889] rockchip-dmc dmc: Get wrong frequency, Request 400000000, Current 856000000 [ 180.539062] rockchip-dmc dmc: Get wrong frequency, Request 800000000, Current 856000000 [ 180.570767] rockchip-dmc dmc: Get wrong frequency, Request 800000000, Current 856000000 [ 180.676165] rockchip-dmc dmc: Get wrong frequency, Request 800000000, Current 856000000
  22. Hi guys , I installed the Buster WIP image on my M4 V2 and it appeared to be functioning ok wifi,USB etc all working until this morning. It wouldn't boot so I connected a serial cable and saw where it failed ( I think it part of the uboot process) ERROR: Did not find a cmdline Flattened Device Tree Any ideas why this should suddenly happen ? I have two V2's running this build and the other is still working fine
  23. Hi All, here is a quick howto for flashing a Nanopi M4 V2 I did this using a Linux box and a USB TTL serial cable) 1) Download an image from https://www.armbian.com/nanopi-m4-v2/ 2) Start a terminal 3) cd to the folder containing your download 4) Unzip your download to extract the *.img file 5) Connect an sdcard or eMMC to your pc ( I used a transcend adapter ) 6) Run lsblk to identify your device, in my case it returned /dev/sdc 7) Run mount to ensure it is not mounted and unmount it if necessary ( umount /dev/sdc or umount /dev/sdc1 ) 8) Run dd if =NameOfYourImage.img of=/dev/sdc status=progress 9) When completed ( it takes a while ) make a directory to enable you to mount your device ( mkdir /mnt/MyDevice) 10) Run mount /dev/sdc1 /mnt/MyDevice 11) nano /mnt/MyDevice/etc/NetworkManager/NetworkManager.conf 12) Add these two lines and save the file [device] wifi.scan-rand-mac-address=no 13) Unmount the device (umount /mnt/MyDevice) 14) Put the device( sdcard or eMMC ) in the M4 - DO NOT APPLY POWER YET ! 15) Connect a serial cable to the UART pins on the board and attach the other end to a USB port on your PC 16) Issue this command picocom -b 1500000 /dev/ttyUSB0 ( I'm typing this at work but I think this is correct ) this should connect you to the M4 17) Apply power to the M4 and you should see the boot output 18) Login as root with password 1234 ( you'll be prompted to change the password ) 19) Run armbian-config to configure wifi 20) Ensure you have an ip address ( ip a ) and look for wlan0 21) Reboot the M4 having removed the serial cable first. In my case It all worked - your case may be different.
  24. Nobby42

    NanoPI 4MV2

    Hi, I have a problem with my NanoPi M4V2 (with Raspberry Pi 4 power supply) and the new Armbian release 19.11.3 (Buster). I can boot the image from SD, eMMC. But when I connect any USB storage (USB-Stick or SSD with USB to SATA) then I have packet lost on the Ethernet connection. Any idea where the problem is? On the interface I can't see problems. eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.xx.36 netmask 255.255.255.0 broadcast 192.168.42.255 inet6 fd58:xxxx:xxxx:1::1006 prefixlen 64 scopeid 0x0<global> inet6 fe80::94ad:f6ff:fe0d:757b prefixlen 64 scopeid 0x20<link> ether 96:ad:f6:0d:75:7b txqueuelen 1000 (Ethernet) RX packets 1475 bytes 231894 (226.4 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1088 bytes 129189 (126.1 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 24 Thanks for your support and kind regards Norbert
  25. Hi all, I'm a bit out of date with regards to a working image for the NanoPi M4 v2 board. I have @pask image which works great but having to boot from the sd card and flash a bootloader patch to eMMC card whenever you reinstall ( I constantly break installs by over experimenting with stuff I don't know enough about ) is a bit of a pain. Anyone know of an image I can just download and flash ?
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines