All Projects → OpenIPC → chaos_calmer

OpenIPC / chaos_calmer

Licence: GPL-2.0 license
OpenIPC 1.0 (OpenWRT-based), not maintained anymore

Projects that are alternatives of or similar to chaos calmer

openipc.github.io
Alternative IP Camera firmware from an open community, http://openipc.org site source code
Stars: ✭ 28 (-85.19%)
Mutual labels:  openwrt, hisilicon, ipcam, xm, zftlab, openipc, anyka
firmware
Alternative IP Camera firmware from an open community
Stars: ✭ 236 (+24.87%)
Mutual labels:  hisilicon, ipcam, xm, zftlab, openipc, anyka
mini
OpenSource Mini IP camera streamer
Stars: ✭ 64 (-66.14%)
Mutual labels:  hisilicon, ipcam, openipc
wrt-hisicam
OpenWrt based HiSilicon`s System-On-a-Chip ip camera firmware
Stars: ✭ 21 (-88.89%)
Mutual labels:  openwrt, hisilicon
gl-ar300m-wifipineapple
Wifi PIneapple for GL-AR300M
Stars: ✭ 49 (-74.07%)
Mutual labels:  openwrt
alarmserver
IP Camera Alarm Server to MQTT
Stars: ✭ 73 (-61.38%)
Mutual labels:  hisilicon
CloudFlare-DDNS-Script
CloudFlare-DDNS-Script Support LEDE/Openwrt with IPv4/IPv6
Stars: ✭ 40 (-78.84%)
Mutual labels:  openwrt
Actions-ImmortalWrt-R1S-H5
A very simple openwrt vision of r1s-h5.
Stars: ✭ 24 (-87.3%)
Mutual labels:  openwrt
simetbox-openwrt-config
Biblioteca para leitura da configuração do SIMETBox
Stars: ✭ 16 (-91.53%)
Mutual labels:  openwrt
lede-dockerbuilder
A (container based) LEDE/OpenWrt image builder.
Stars: ✭ 53 (-71.96%)
Mutual labels:  openwrt
openwrt
OpenWRT device tracker for Home Assistant that actually works
Stars: ✭ 59 (-68.78%)
Mutual labels:  openwrt
plan44-feed
OpenWrt feed containing plan44 packages
Stars: ✭ 25 (-86.77%)
Mutual labels:  openwrt
nanopi-openwrt
Openwrt for Nanopi R2S 固件编译
Stars: ✭ 97 (-48.68%)
Mutual labels:  openwrt
bmx7
BMX7 / SEMTOR Securely Entrusted Mesh Routing Protocol
Stars: ✭ 55 (-70.9%)
Mutual labels:  openwrt
HomeLede
An Openwrt firmware for home use scenarios.
Stars: ✭ 925 (+389.42%)
Mutual labels:  openwrt
gluon-firmware-selector
Firmware selector for gluon router images
Stars: ✭ 19 (-89.95%)
Mutual labels:  openwrt
NanoPi-R2S
自动发布 NanoPi-R2S 固件
Stars: ✭ 11 (-94.18%)
Mutual labels:  openwrt
ansible-openwrt
Ansible collection to configure your OpenWrt devices more quickly and automatically (without Python)
Stars: ✭ 34 (-82.01%)
Mutual labels:  openwrt
gnb udp over tcp
gnb_udp_over_tcp 是一个为GNB开发的通过tcp链路中转UDP分组转发的服务
Stars: ✭ 32 (-83.07%)
Mutual labels:  openwrt
openwrt-trojan
No description or website provided.
Stars: ✭ 45 (-76.19%)
Mutual labels:  openwrt

OpenIPC v1.0 (stable, OpenWrt based)

Alternative firmware for IP cameras based on the HiSilicon (and other) SoC's

More information about project on our website openipc.org

CI status GitHub repo size GitHub issues GitHub pull requests License


Supporting

If you like our work, please consider supporting us on Opencollective or PayPal or YooMoney.

Backers Backers

Backers

Thanks a lot !!!

OpenCollective donate button PayPal donate button YooMoney donate button


Pre-built images

Latest development build

Building status SoC U-Boot Kernel Rootfs Maintainer
Hi3516Cv100 images Hi3516CV100 uboot kernel rootfs IZ+SS+DI
Hi3516Cv200 images Hi3516CV200 uboot kernel rootfs IZ
Hi3516Cv300 images Hi3516CV300 uboot kernel rootfs IZ+DI
Hi3516Ev100 images Hi3516EV100 uboot kernel rootfs IZ+DI
Hi3518Av100 images Hi3518AV100 uboot kernel rootfs IZ+SS+DI
Hi3518Cv100 images Hi3518CV100 uboot kernel rootfs IZ+SS+DI
Hi3518Ev100 images Hi3518EV100 uboot kernel rootfs IZ+SS+DI
Hi3518Ev200 images Hi3518EV200 uboot kernel rootfs IZ
Hi3518Ev201 images Hi3518EV201 uboot kernel rootfs IZ

How to flash to target hardware

  1. Backup your original flash firmware (use TFTP or Telnet method whether you prefer)

  2. Download U-Boot, kernel and rootfs images to your TFTP server

  3. Flash U-Boot

sf probe 0 ; sf lock 0
mw.b 0x82000000 ff 0x50000
tftp 0x82000000 openwrt-hi35xx-16cv300-u-boot.bin
sf erase 0x0 0x50000
sf write ${fileaddr} 0x0 ${filesize}
reset
  1. Flash Linux kernel
sf probe 0 ; sf lock 0
mw.b 0x82000000 ff 0x200000
tftp 0x82000000 openwrt-hi35xx-16cv300-default-uImage
sf erase 0x50000 0x200000
sf write ${fileaddr} 0x50000 ${filesize}
  1. Flash rootfs
sf probe 0 ; sf lock 0
mw.b 0x82000000 ff 0x500000
tftp 0x82000000 openwrt-hi35xx-16cv300-default-root.squashfs
sf erase 0x250000 0x500000
sf write ${fileaddr} 0x250000 ${filesize}

Build manually

Build on Linux machine

Usage example for Debian (8 or 9)/Ubuntu

git clone --depth=1 https://github.com/OpenIPC/chaos_calmer.git OpenIPC
cd OpenIPC
./Project_OpenIPC.sh update
./Project_OpenIPC.sh 18ev200_zftlab_rotek

Ready to flash images will be located at bin/hi35xx/openwrt-hi35xx-*

Or use Docker for building

FROM debian:stretch

RUN DEBIAN_FRONTEND=noninteractive apt-get update \
    && apt-get --no-install-recommends -y install bc bison build-essential \
    ca-certificates cmake cpio curl dos2unix file flex gawk gcc-multilib \
    gettext gettext-base git intltool libc6-dev liblocale-gettext-perl \
    libncurses-dev libssl-dev locales mc openssl python rsync subversion \
    time tofrodos unzip upx wget zlib1g-dev \
    && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias \
    en_US.UTF-8 && rm -rf /var/lib/apt/lists/*

ENV LANG en_US.utf8

WORKDIR /src/openipc

RUN git clone --depth=1 https://github.com/OpenIPC/chaos_calmer.git /src/openipc
RUN ./Project_OpenIPC.sh update
RUN ./Project_OpenIPC.sh 18ev200_DEFAULT  # <= Change this ID to you profile

Commercial Support

Commercial support for OpenIPC is available.

Please contact OpenIPC Inc. to inquire further.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].