Flashing Yi 1080p Home Camera with custom firmware 2020 edition (ALLWINNER Chipset)

There are other guides on flashing the yi home camera, so I’m not going to reinvent the wheels.

This guide is for Yi 1080p home cameras that’s been manufacturerd in 2020, you will need the Yi-hack ALLWINNER edition.

The installation are the same as other Yi-hacks.

To check if you have the ALLWINNER version, look at the back of the camera and you should see a small sticker.

CameraFirmwareFile prefixRemarks
Yi 1080p Home 9FUS8.2.0*y20ga
Yi 1080p Home BFUS8.2.0*y20ga
Yi 1080p Home 9FUS8.3.0*y25ga

You will need this version if it is 9FUS, or BFUS.

That’s all for this guide.

Quick install of anonymous Samba share for Centos &

yum install samba samba-client samba-common

Then clear the samba config

cat /dev/null > /etc/samba/smb.conf

Now paste the following into /etc/samba/smb.conf

[global]
workgroup = WORKGROUP
server string = Samba Server %v
netbios name = centos
security = user
map to guest = bad user
dns proxy = no
#============================ Share Definitions ============================== 
[Anonymous]
path = /samba/anonymous
browsable =yes
writable = yes
guest ok = yes
read only = no

Start and enable the Samba service

mkdir -p /samba/anonymous
systemctl enable smb.service
systemctl enable nmb.service
systemctl restart smb.service
systemctl restart nmb.service