BPI-R2 LEDE source code for hardware NAT

I tried it again and … it works :sweat_smile:

The pcie issue has been fixed, please get the latest code from https://github.com/garywangcn/bpi-r2_lede

A pull request has been created for submitting commits to moore-bros/bpi-r2-on-lede.

1 Like

I build the system and I use the mkimage in staging_dir/host/bin create a Multi-File Image.

I can boot the system. But I can`t get any freespace like the image form BPI-R2 New image : Openwrt/LEDE 2017-09-08

How can I do?

command:

mkimage -A arm -T multi -C none -a 80008000 -e 80008000 -n ‘Multi-File Test Image’ -d lede-mediatek-32-uImage-mt7623n-bananapi-bpi-r2-initramfs:lede-mediatek-32-root.squashfs uMulti

And it return:

Image Name: Multi-File Test Image

Created: Thu Oct 12 22:26:59 2017

Image Type: ARM Linux Multi-File Image (uncompressed)

Data Size: 9897528 Bytes = 9665.55 kB = 9.44 MB

Load Address: 80008000

Entry Point: 80008000

Contents:

Image 0: 5965351 Bytes = 5825.54 kB = 5.69 MB

Image 1: 3932164 Bytes = 3840.00 kB = 3.75 MB

Can you please try to build and program image to emmc by following instruction?

Instruction

  1. Please clone the latest code from github(https://github.com/garywangcn/bpi-r2_lede/tree/bpi-r2-on-lede-v1) and then follow below steps to build/program both rootfs and uImage :

  2. Run make menuconfig in root directory of bpi-r2_lede

  3. Enable squashfs: Target Images ->squashfs

  4. Rebuild lede by executing command: make

  5. The root.squashfs and uImage-mt7623n-bananapi-bpi-r2 will be programmed to EMMC via tftp, they are located at build_dir/target…/linux-mediatek_32/

  6. Copy above images to /tftpboot/(please enable tftp service first)

  7. Boot the board to Uboot prompt, configure the IP address/netmask/gatewayip/serverip, make sure the R2 board is able to access tftp server.

  8. Run below command to program uImage-mt7623n-bananapi-bpi-r2:

    tftp 84000000 uImage-mt7623n-bananapi-bpi-r2

    mmc dev 0

    mmc write 84000000 1000 6000

  9. Run below command to program root.squashfs to EMMC:

    tftp 84000000 root.squashfs

    mmc dev 0

    mmc write 84000000 20A00 6000

10.Run command: boot

Please note that the first reboot will take a few minutes to sync file system.

Thanks garywang. It works!

“df -h” :

And in LUCI:

Good news, thanks for your informatio, please let me know if you have any question.

Image

New test images(kernel and root.squashfs) are available: http://pan.baidu.com/s/1nuXrUTb

How to program both uImage and root file system

  1. Copy both uImagelede and root.squashfs to tftp server

  2. Run below command to program uImagelede

tftp 84000000 uImagelede
mmc dev 0
mmc write  84000000 1000 6000
  1. Run below command to program root.squashfs to EMMC:
tftp 84000000 root.squashfs
mmc dev 0
mmc write 84000000 20A00 6000
  1. Run command: boot

  2. Configure an available IP address and then run below commands when entering OS

opkg update
opkg  install luci-theme-bootstrap
opkg  install luci-mod-admin-full
  1. Connect R2 board via web
2 Likes

With this image it Will possible to use R2 as a normal router?, i got problems with nat on Ubuntu.

Yes, it’s possible to make R2 to be a router.

On Ubuntu, the HNAT will NOT be supported, the HNAT is supported based on DSA structure, but there is no DSA within kernel 4.4(ubuntu is using), so it’s a huge task to port HNAT from lede(4.9 kernel) to Ubuntu(4.4 kerenl).

Can 4.9 from lede be used for ubuntu? Where are problems? If the problem with sd-card in 4.14 can be solved it can also be used.

Replace the current uImage with v4.14 kernel so that you can run HNAT on Ubuntu. I’ve done it before…

@Ryder.Lee Is sd-card-problem solved?

How a can configure my IP Address? I tried it with ifconfig br-lan add … and route add default gw … I can ping my PC successfully but I got no internet

Hi RW2003

The DNS should be configured and the /etc/config/firewall will be changed, please refer to http://forum.banana-pi.org/uploads/default/original/2X/8/84d6c0336af978c299fb73556fd67d896e719d52.png

I think this problem is not like that. I have intenet now. And did not change any things in “/etc/config/firewall”. Actually I just change the ifname for “wan” and “wan6” in the "/etc/config/network" to “wan” but not “eth1”. And it works.

Could you send pull request back to github. Lets us make support lede better.

There is no wifi available yet, right?

Wifi-ap-driver is currently in testing state for debian-kernel (4.4.70)

Install commands not work… ‘cannot Install package’

Do you mean that both luci-theme-bootstrap and luci-mod-admin-full can’t be installed, right?