# istoreosgb **Repository Path**: hkey520/istoreosgb ## Basic Information - **Project Name**: istoreosgb - **Description**: 提供一个人人会用的的路由、NAS系统 (目前活跃的分支是 istoreos-22.03) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: istoreos-22.03 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-07 - **Last Updated**: 2025-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README iStoreOS 是入门级的路由系统,也是入门级的 NAS 系统, 基于原版 OpenWRT,在 ARS2 上经过长期迭代,最终开放适配到多个硬件平台 更多信息请参阅 https://github.com/istoreos 安装编译依赖 sudo apt update -y sudo apt full-upgrade -y sudo apt install -y ack antlr3 asciidoc autoconf automake autopoint binutils bison build-essential \ bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib \ git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libfuse-dev libglib2.0-dev libgmp3-dev \ libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libpython3-dev libreadline-dev \ libssl-dev libtool lrzsz mkisofs msmtp ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 \ python3-pyelftools python3-setuptools qemu-utils rsync scons squashfs-tools subversion swig texinfo \ uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev 下载源代码,更新 feeds 并选择配置 git clone https://gitee.com/hkey520/istoreos cd lede ./scripts/feeds update -a ./scripts/feeds install -a echo CONFIG_TARGET_armvirt=y > .config make defconfig make menuconfig 下载 dl 库,编译固件 (-j 后面是线程数,第一次编译推荐用单线程) make download -j8 4-1 root用户编译要设置环境变量 export FORCE_UNSAFE_CONFIGURE=1 第一次编译用 make V=s -j$(nproc) 如果出错再用 make V=s -j1 编译看看错在那里! 本套代码保证肯定可以编译成功。里面包括了 R23 所有源代码,包括 IPK 的。 你可以自由使用,但源码编译二次发布请注明我的 GitHub 仓库链接。谢谢合作! 二次编译: ```bash cd lede git pull ./scripts/feeds update -a ./scripts/feeds install -a make defconfig make download -j8 make V=s -j$(nproc) 如果需要重新配置: rm -rf .config make menuconfig make V=s -j$(nproc) 编译完成后输出路径:bin/targets 以下是 OpenWRT 原始的 README -------- ![OpenWrt logo](include/logo.png) OpenWrt Project is a Linux operating system targeting embedded devices. Instead of trying to create a single, static firmware, OpenWrt provides a fully writable filesystem with package management. This frees you from the application selection and configuration provided by the vendor and allows you to customize the device through the use of packages to suit any application. For developers, OpenWrt is the framework to build an application without having to build a complete firmware around it; for users this means the ability for full customization, to use the device in ways never envisioned. Sunshine! ## Development To build your own firmware you need a GNU/Linux, BSD or MacOSX system (case sensitive filesystem required). Cygwin is unsupported because of the lack of a case sensitive file system. ### Requirements You need the following tools to compile OpenWrt, the package names vary between distributions. A complete list with distribution specific packages is found in the [Build System Setup](https://openwrt.org/docs/guide-developer/build-system/install-buildsystem) documentation. ``` binutils bzip2 diff find flex gawk gcc-6+ getopt grep install libc-dev libz-dev make4.1+ perl python3.6+ rsync subversion unzip which ``` ### Quickstart 1. Run `./scripts/feeds update -a` to obtain all the latest package definitions defined in feeds.conf / feeds.conf.default 2. Run `./scripts/feeds install -a` to install symlinks for all obtained packages into package/feeds/ 3. Run `make menuconfig` to select your preferred configuration for the toolchain, target system & firmware packages. 4. Run `make` to build your firmware. This will download all sources, build the cross-compile toolchain and then cross-compile the GNU/Linux kernel & all chosen applications for your target system. ### Related Repositories The main repository uses multiple sub-repositories to manage packages of different categories. All packages are installed via the OpenWrt package manager called `opkg`. If you're looking to develop the web interface or port packages to OpenWrt, please find the fitting repository below. * [LuCI Web Interface](https://github.com/openwrt/luci): Modern and modular interface to control the device via a web browser. * [OpenWrt Packages](https://github.com/openwrt/packages): Community repository of ported packages. * [OpenWrt Routing](https://github.com/openwrt/routing): Packages specifically focused on (mesh) routing. * [OpenWrt Video](https://github.com/openwrt/video): Packages specifically focused on display servers and clients (Xorg and Wayland). ## Support Information For a list of supported devices see the [OpenWrt Hardware Database](https://openwrt.org/supported_devices) ### Documentation * [Quick Start Guide](https://openwrt.org/docs/guide-quick-start/start) * [User Guide](https://openwrt.org/docs/guide-user/start) * [Developer Documentation](https://openwrt.org/docs/guide-developer/start) * [Technical Reference](https://openwrt.org/docs/techref/start) ### Support Community * [Forum](https://forum.openwrt.org): For usage, projects, discussions and hardware advise. * [Support Chat](https://webchat.oftc.net/#openwrt): Channel `#openwrt` on **oftc.net**. ### Developer Community * [Bug Reports](https://bugs.openwrt.org): Report bugs in OpenWrt * [Dev Mailing List](https://lists.openwrt.org/mailman/listinfo/openwrt-devel): Send patches * [Dev Chat](https://webchat.oftc.net/#openwrt-devel): Channel `#openwrt-devel` on **oftc.net**. ## License OpenWrt is licensed under GPL-2.0