├── www ├── langs │ ├── eo.json │ ├── et.json │ ├── rue.json │ ├── sw.json │ ├── te.json │ ├── zh-tw.json │ ├── zh-cn.json │ ├── ast.json │ ├── ko.json │ ├── ja.json │ └── sr_Latn.json ├── favicon.ico ├── config.js └── uci-defaults │ └── setup.sh ├── .prettierignore ├── .gitignore ├── misc ├── screenshot.png ├── .versions.json └── releases │ ├── 19.07.10 │ └── targets │ │ ├── rb532 │ │ └── generic │ │ │ └── profiles.json │ │ ├── layerscape │ │ └── armv7 │ │ │ └── profiles.json │ │ ├── mediatek │ │ ├── mt7622 │ │ │ └── profiles.json │ │ └── mt7623 │ │ │ └── profiles.json │ │ ├── pistachio │ │ └── generic │ │ │ └── profiles.json │ │ ├── ar71xx │ │ └── tiny │ │ │ └── profiles.json │ │ ├── mpc85xx │ │ ├── p2020 │ │ │ └── profiles.json │ │ ├── generic │ │ │ └── profiles.json │ │ └── p1020 │ │ │ └── profiles.json │ │ ├── octeon │ │ └── generic │ │ │ └── profiles.json │ │ ├── tegra │ │ └── generic │ │ │ └── profiles.json │ │ ├── lantiq │ │ └── ase │ │ │ └── profiles.json │ │ ├── apm821xx │ │ └── sata │ │ │ └── profiles.json │ │ ├── ath25 │ │ └── generic │ │ │ └── profiles.json │ │ ├── brcm2708 │ │ ├── bcm2710 │ │ │ └── profiles.json │ │ ├── bcm2708 │ │ │ └── profiles.json │ │ └── bcm2709 │ │ │ └── profiles.json │ │ ├── zynq │ │ └── generic │ │ │ └── profiles.json │ │ ├── imx6 │ │ └── generic │ │ │ └── profiles.json │ │ └── mvebu │ │ └── cortexa72 │ │ └── profiles.json │ └── 23.05.4 │ └── targets │ ├── realtek │ └── rtl930x │ │ └── profiles.json │ ├── tegra │ └── generic │ │ └── profiles.json │ ├── bmips │ ├── bcm6318 │ │ └── profiles.json │ ├── bcm6358 │ │ └── profiles.json │ └── bcm6362 │ │ └── profiles.json │ ├── pistachio │ └── generic │ │ └── profiles.json │ ├── mpc85xx │ └── p2020 │ │ └── profiles.json │ ├── sifiveu │ └── generic │ │ └── profiles.json │ ├── bcm4908 │ └── generic │ │ └── profiles.json │ ├── imx │ └── cortexa7 │ │ └── profiles.json │ ├── at91 │ └── sama7 │ │ └── profiles.json │ ├── ipq40xx │ └── chromium │ │ └── profiles.json │ ├── bcm47xx │ └── legacy │ │ └── profiles.json │ ├── ath79 │ └── tiny │ │ └── profiles.json │ ├── bcm27xx │ ├── bcm2711 │ │ └── profiles.json │ ├── bcm2708 │ │ └── profiles.json │ ├── bcm2710 │ │ └── profiles.json │ └── bcm2709 │ │ └── profiles.json │ ├── mxs │ └── generic │ │ └── profiles.json │ ├── x86 │ ├── 64 │ │ └── profiles.json │ ├── legacy │ │ └── profiles.json │ └── generic │ │ └── profiles.json │ ├── armsr │ ├── armv8 │ │ └── profiles.json │ └── armv7 │ │ └── profiles.json │ ├── zynq │ └── generic │ │ └── profiles.json │ └── apm821xx │ └── sata │ └── profiles.json ├── .flake8 ├── .eslintrc.json ├── package.json ├── tests ├── profiles │ ├── releases │ │ ├── 19.07.4 │ │ │ └── targets │ │ │ │ ├── rb532 │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── layerscape │ │ │ │ └── armv7 │ │ │ │ │ └── profiles.json │ │ │ │ ├── mediatek │ │ │ │ ├── mt7622 │ │ │ │ │ └── profiles.json │ │ │ │ └── mt7623 │ │ │ │ │ └── profiles.json │ │ │ │ ├── pistachio │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── ar71xx │ │ │ │ └── tiny │ │ │ │ │ └── profiles.json │ │ │ │ ├── octeon │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── mpc85xx │ │ │ │ ├── p2020 │ │ │ │ │ └── profiles.json │ │ │ │ ├── generic │ │ │ │ │ └── profiles.json │ │ │ │ └── p1020 │ │ │ │ │ └── profiles.json │ │ │ │ ├── tegra │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── lantiq │ │ │ │ └── ase │ │ │ │ │ └── profiles.json │ │ │ │ ├── apm821xx │ │ │ │ └── sata │ │ │ │ │ └── profiles.json │ │ │ │ ├── ath25 │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── brcm2708 │ │ │ │ ├── bcm2710 │ │ │ │ │ └── profiles.json │ │ │ │ ├── bcm2708 │ │ │ │ │ └── profiles.json │ │ │ │ └── bcm2709 │ │ │ │ │ └── profiles.json │ │ │ │ ├── zynq │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ ├── imx6 │ │ │ │ └── generic │ │ │ │ │ └── profiles.json │ │ │ │ └── mvebu │ │ │ │ └── cortexa72 │ │ │ │ └── profiles.json │ │ └── 19.07-SNAPSHOT │ │ │ └── targets │ │ │ ├── rb532 │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── layerscape │ │ │ └── armv7 │ │ │ │ └── profiles.json │ │ │ ├── mediatek │ │ │ ├── mt7622 │ │ │ │ └── profiles.json │ │ │ └── mt7623 │ │ │ │ └── profiles.json │ │ │ ├── pistachio │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── ar71xx │ │ │ └── tiny │ │ │ │ └── profiles.json │ │ │ ├── mpc85xx │ │ │ ├── p2020 │ │ │ │ └── profiles.json │ │ │ ├── generic │ │ │ │ └── profiles.json │ │ │ └── p1020 │ │ │ │ └── profiles.json │ │ │ ├── octeon │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── tegra │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── lantiq │ │ │ └── ase │ │ │ │ └── profiles.json │ │ │ ├── apm821xx │ │ │ └── sata │ │ │ │ └── profiles.json │ │ │ ├── ath25 │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── brcm2708 │ │ │ ├── bcm2710 │ │ │ │ └── profiles.json │ │ │ ├── bcm2708 │ │ │ │ └── profiles.json │ │ │ └── bcm2709 │ │ │ │ └── profiles.json │ │ │ ├── zynq │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ ├── imx6 │ │ │ └── generic │ │ │ │ └── profiles.json │ │ │ └── mvebu │ │ │ └── cortexa72 │ │ │ └── profiles.json │ └── snapshots │ │ └── targets │ │ ├── mediatek │ │ ├── mt7629 │ │ │ └── profiles.json │ │ └── mt7623 │ │ │ └── profiles.json │ │ ├── ath79 │ │ └── tiny │ │ │ └── profiles.json │ │ ├── scheduled_for_removal │ │ ├── rb532 │ │ │ └── generic │ │ │ │ └── profiles.json │ │ └── ath25 │ │ │ └── generic │ │ │ └── profiles.json │ │ ├── ramips │ │ └── rt288x │ │ │ └── profiles.json │ │ ├── tegra │ │ └── generic │ │ │ └── profiles.json │ │ ├── layerscape │ │ └── armv7 │ │ │ └── profiles.json │ │ ├── mpc85xx │ │ ├── p2020 │ │ │ └── profiles.json │ │ ├── p1010 │ │ │ └── profiles.json │ │ └── p1020 │ │ │ └── profiles.json │ │ ├── pistachio │ │ └── generic │ │ │ └── profiles.json │ │ ├── octeon │ │ └── generic │ │ │ └── profiles.json │ │ ├── apm821xx │ │ ├── sata │ │ │ └── profiles.json │ │ └── nand │ │ │ └── profiles.json │ │ ├── x86 │ │ ├── 64 │ │ │ └── profiles.json │ │ ├── generic │ │ │ └── profiles.json │ │ └── legacy │ │ │ └── profiles.json │ │ ├── bcm27xx │ │ ├── bcm2711 │ │ │ └── profiles.json │ │ ├── bcm2708 │ │ │ └── profiles.json │ │ ├── bcm2710 │ │ │ └── profiles.json │ │ └── bcm2709 │ │ │ └── profiles.json │ │ ├── rockchip │ │ └── armv8 │ │ │ └── profiles.json │ │ ├── ath25 │ │ └── generic │ │ │ └── profiles.json │ │ ├── zynq │ │ └── generic │ │ │ └── profiles.json │ │ └── imx6 │ │ └── generic │ │ └── profiles.json └── test_spa.py └── .github └── workflows ├── test.yml ├── static-stable.yml └── static-main.yml /www/langs/eo.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /www/langs/et.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /www/langs/rue.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /www/langs/sw.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/langs/*.json 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt/firmware-selector-openwrt-org/main/www/favicon.ico -------------------------------------------------------------------------------- /misc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwrt/firmware-selector-openwrt-org/main/misc/screenshot.png -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E203, E266, E501, W503 3 | max-line-length = 88 4 | max-complexity = 18 5 | select = B,C,E,F,W,T4,B9 6 | -------------------------------------------------------------------------------- /misc/.versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "stable_version": "23.05.4", 3 | "versions_list": ["23.05.4", "19.07.10"], 4 | "image_url_override": "https://downloads.openwrt.org" 5 | } 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es2020": true 5 | }, 6 | "extends": ["eslint:recommended", "prettier"], 7 | "ignorePatterns": ["**/langs/*.json"] 8 | } 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "eslint": "^7.6.0", 4 | "eslint-config-prettier": "^6.11.0", 5 | "eslint-plugin-prettier": "^3.1.4", 6 | "prettier": "^2.0.5" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /www/langs/te.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-server-link": "అన్ని డౌన్‌లోడ్‌లు", 3 | "tr-load": "మీ పరికరం కోసం OpenWrt ఫర్మ్‌వేర్‌ను డౌన్‌లోడ్ చేయండి", 4 | "tr-links": "లింకులు", 5 | "tr-version-build": "ఈ బిల్డ్ గురించి", 6 | "tr-custom-build": "కస్టమ్ బిల్డ్", 7 | "tr-customize": "ఇన్‌స్టాల్ చేయబడిన ప్యాకేజీలను అనుకూలీకరించండి", 8 | "tr-request-build": "రిక్వెస్ట్ బిల్డ్", 9 | "tr-model": "మోడల్", 10 | "tr-feedback-link": "అభిప్రాయం", 11 | "tr-not-found": "మోడల్ కనుగొనబడలేదు!", 12 | "tr-title": "OpenWrt ఫర్మ్‌వేర్ సెలెక్టర్" 13 | } 14 | -------------------------------------------------------------------------------- /www/config.js: -------------------------------------------------------------------------------- 1 | /* exported config */ 2 | 3 | var config = { 4 | // Show help text for images 5 | show_help: true, 6 | 7 | // Versions list (optional if provided by .versions.json) 8 | versions: ["23.05.4", "19.07.10"], 9 | 10 | // Pre-selected version (optional if provided by .versions.json) 11 | default_version: "23.05.4", 12 | 13 | // Image download URL (e.g. "https://downloads.openwrt.org") 14 | image_url: "../misc", 15 | 16 | // Insert snapshot versions (optional) 17 | //show_snapshots: true, 18 | 19 | // Info link URL (optional) 20 | info_url: "https://openwrt.org/start?do=search&id=toh&q={title} @toh", 21 | 22 | // Attended Sysupgrade Server support (optional) 23 | asu_url: "https://sysupgrade.openwrt.org", 24 | asu_extra_packages: ["luci"], 25 | }; 26 | -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/rb532/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils"],"metadata_version":1,"profiles":{"nand":{"device_packages":[],"image_prefix":"openwrt-19.07.4-rb532-nand","images":[{"name":"openwrt-19.07.4-rb532-nand-squashfs-sysupgrade.bin","sha256":"81347a74f725c5f9c0f192ba0241cbad618aa0ea8cf66701e50727d60e0b2c3d","type":"sysupgrade"}],"supported_devices":["rb532"],"titles":[{"title":""}]}},"target":"rb532/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/layerscape/armv7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage"],"metadata_version":1,"profiles":{"ls1021atwr":{"device_packages":["layerscape-rcw-ls1021atwr"],"image_prefix":"openwrt-19.07.4-layerscape-armv7-ls1021atwr","images":[{"name":"openwrt-19.07.4-layerscape-armv7-ls1021atwr-squashfs-firmware.bin","sha256":"d8bd705481f0a5c2ec258ab59a563ec6c0ec7fb799cb97db30e4ba893efc6c18","type":"firmware"}],"supported_devices":[],"titles":[{"title":"LS1021ATWR"}]}},"target":"layerscape/armv7","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/rb532/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils"],"metadata_version":1,"profiles":{"nand":{"device_packages":[],"image_prefix":"openwrt-19.07.10-rb532-nand","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-rb532-nand-squashfs-sysupgrade.bin","sha256":"258c00b9b8bf017f8c6b16df0d758fd96a19efc5e17cee24f4445ab150b4d56a","type":"sysupgrade"}],"supported_devices":["rb532"],"titles":[{"title":""}]}},"source_date_epoch":1650114812,"target":"rb532/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/rb532/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-basic","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils"],"metadata_version":1,"profiles":{"nand":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-rb532-nand","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-rb532-nand-squashfs-sysupgrade.bin","sha256":"ddeb6b26d573f5833a5144f2d74fc9b1f5f2f28d06b211d049cdeb2939e22497","type":"sysupgrade"}],"supported_devices":["rb532"],"titles":[{"title":""}]}},"target":"rb532/generic","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/layerscape/armv7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage"],"metadata_version":1,"profiles":{"ls1021atwr":{"device_packages":["layerscape-rcw-ls1021atwr"],"image_prefix":"openwrt-19.07.10-layerscape-armv7-ls1021atwr","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-layerscape-armv7-ls1021atwr-squashfs-firmware.bin","sha256":"fc9fb936459fb9fdbd57772d77c78a59821348e9a6e6fc2398bdf58b3b563108","type":"firmware"}],"supported_devices":[],"titles":[{"title":"LS1021ATWR"}]}},"source_date_epoch":1650114812,"target":"layerscape/armv7","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/mediatek/mt7629/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-leds-gpio","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"mediatek_mt7629-rfb":{"device_packages":["swconfig"],"image_prefix":"openwrt-mediatek-mt7629-mediatek_mt7629-rfb","images":[{"name":"openwrt-mediatek-mt7629-mediatek_mt7629-rfb-squashfs-sysupgrade.bin","sha256":"27cfc1193cc7627dbcc3bbcfdfe5602dff20491e9ec12f409824efc4e94e35b5","type":"sysupgrade"}],"supported_devices":["mediatek,mt7629-rfb"],"titles":[{"model":"MT7629 rfb AP","vendor":"MediaTek"}]}},"target":"mediatek/mt7629","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/layerscape/armv7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage"],"metadata_version":1,"profiles":{"ls1021atwr":{"device_packages":["layerscape-rcw-ls1021atwr"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-layerscape-armv7-ls1021atwr","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-layerscape-armv7-ls1021atwr-squashfs-firmware.bin","sha256":"f3724b5bb26803e4bfedcd3131c80b14b88cb65d37b7e316d305e9e4c86ea8dc","type":"firmware"}],"supported_devices":[],"titles":[{"title":"LS1021ATWR"}]}},"target":"layerscape/armv7","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/ath79/tiny/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools","wpad-basic-wolfssl","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools"],"metadata_version":1,"profiles":{"pqi_air-pen":{"device_packages":["kmod-usb2"],"image_prefix":"openwrt-ath79-tiny-pqi_air-pen","images":[{"name":"openwrt-ath79-tiny-pqi_air-pen-squashfs-sysupgrade.bin","sha256":"ff49910e4725a77ce376a00f12c4510a631c49957cb0a2f82008d101f2516dba","type":"sysupgrade"}],"supported_devices":["pqi,air-pen","pqi-air-pen"],"titles":[{"model":"Air-Pen","vendor":"PQI"}]}},"target":"ath79/tiny","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/scheduled_for_removal/rb532/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_mips32","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-wolfssl","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","wpad-basic-wolfssl","kmod-ath5k","kmod-input-rb532","e2fsprogs","mkf2fs","nand-utils"],"metadata_version":1,"profiles":{"nand":{"device_packages":[],"image_prefix":"openwrt-rb532-nand","images":[{"name":"openwrt-rb532-nand-squashfs-sysupgrade.bin","sha256":"16bd8947830087fd6b72302bbf9340c09ee5d3c5e54d8e5575a6e8d52140baff","type":"sysupgrade"}],"supported_devices":["rb532"],"titles":[{"model":"RouterBOARD 532","vendor":"MikroTik"}]}},"target":"rb532/generic","version_code":"r14365-46abcb3ade","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mediatek/mt7622/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"MTK-RFB1":{"device_packages":["kmod-usb-core","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-core","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-19.07.4-mediatek-mt7622-MTK-RFB1","images":[{"name":"openwrt-19.07.4-mediatek-mt7622-MTK-RFB1-squashfs-sysupgrade.bin","sha256":"9ebb01e453f2499bd0ef30bdddb0ce83feae0adcff98b57360ae2b10b015cb10","type":"sysupgrade"}],"supported_devices":["mt7622"],"titles":[{"title":"MTK7622 rfb1 AP "}]}},"target":"mediatek/mt7622","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/pistachio/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc_24kf","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","uboot-envtools","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","uboot-envtools"],"metadata_version":1,"profiles":{"marduk":{"device_packages":["kmod-tpm-i2c-infineon"],"image_prefix":"openwrt-19.07.4-pistachio-marduk","images":[{"name":"openwrt-19.07.4-pistachio-marduk-squashfs-sysupgrade.tar","sha256":"b284f7fe08ac132bcdb8a15f5a96a68a2b430fc7856d1a620714bfe903d495b2","type":"sysupgrade"},{"name":"openwrt-19.07.4-pistachio-marduk-squashfs-factory.ubi","sha256":"4ff01ef63f01047730806be7c5c6f582c9e7d2ea636ca26a07062b0c9b186cc3","type":"factory"}],"supported_devices":[],"titles":[{"title":"Creator Ci40"}]}},"target":"pistachio/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mediatek/mt7622/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"MTK-RFB1":{"device_packages":["kmod-usb-core","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-core","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-19.07.10-mediatek-mt7622-MTK-RFB1","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mediatek-mt7622-MTK-RFB1-squashfs-sysupgrade.bin","sha256":"49481444003e0ccc642e67668d1d79e5c21680a8a4d65dd145dbbfbd9254b4a6","type":"sysupgrade"}],"supported_devices":["mt7622"],"titles":[{"title":"MTK7622 rfb1 AP "}]}},"source_date_epoch":1650114812,"target":"mediatek/mt7622","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mediatek/mt7622/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"MTK-RFB1":{"device_packages":["kmod-usb-core","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-core","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7622-MTK-RFB1","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7622-MTK-RFB1-squashfs-sysupgrade.bin","sha256":"19eb0dce816fd907e9fb609dacbdfdfbcd0f1d87aaaf39f970175d962b9f7b7d","type":"sysupgrade"}],"supported_devices":["mt7622"],"titles":[{"title":"MTK7622 rfb1 AP "}]}},"target":"mediatek/mt7622","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/ar71xx/tiny/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools","wpad-mini","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools"],"metadata_version":1,"profiles":{"ens202ext":{"device_packages":["rssileds"],"image_prefix":"openwrt-19.07.4-ar71xx-tiny-ens202ext","images":[{"name":"openwrt-19.07.4-ar71xx-tiny-ens202ext-squashfs-factory.bin","sha256":"1d2608bf08b4284d5fa6dc9770817fd5b83fea0edd523a38493de033a8e0c0ff","type":"factory"},{"name":"openwrt-19.07.4-ar71xx-tiny-ens202ext-squashfs-sysupgrade.bin","sha256":"dfe16daf8d5eb2e2ea6015ca5beebf7e7d0c22c27715e81b5c64af34628ac1b7","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"EnGenius ENS202EXT"}]}},"target":"ar71xx/tiny","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/pistachio/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc_24kf","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","uboot-envtools","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","uboot-envtools"],"metadata_version":1,"profiles":{"marduk":{"device_packages":["kmod-tpm-i2c-infineon"],"image_prefix":"openwrt-19.07.10-pistachio-marduk","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-pistachio-marduk-squashfs-factory.ubi","sha256":"b4a13e3013ce178ea21dba26a4d7d216f5d740bd7c1f44599e5a98179a243e8a","type":"factory"},{"filesystem":"squashfs","name":"openwrt-19.07.10-pistachio-marduk-squashfs-sysupgrade.tar","sha256":"b2984dd9c1d686b2629a6f4d4afb104fc9f72d0f5497e60e0e921faab8f425cf","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Creator Ci40"}]}},"source_date_epoch":1650114812,"target":"pistachio/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/octeon/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips64_octeonplus","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"er":{"device_packages":[],"image_prefix":"openwrt-19.07.4-octeon-er","images":[{"name":"openwrt-19.07.4-octeon-er-squashfs-sysupgrade.tar","sha256":"a5b8c273802b5a92fc464b3f7bc14144bebd4e158f1eac498966e1c50ac259d6","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter"}]},"erlite":{"device_packages":[],"image_prefix":"openwrt-19.07.4-octeon-erlite","images":[{"name":"openwrt-19.07.4-octeon-erlite-squashfs-sysupgrade.tar","sha256":"03b687dac38641f69921d06a07e7c56a8680b2236d45d34ae5c63d65f235343a","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter Lite"}]}},"target":"octeon/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/ramips/rt288x/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-rt2800-soc","wpad-basic-wolfssl","swconfig","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-leds-gpio","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"belkin_f5d8235-v1":{"device_packages":["kmod-switch-rtl8366s","kmod-usb-ohci","kmod-usb-ohci-pci","kmod-usb2","kmod-usb2-pci","kmod-usb-ledtrig-usbport"],"image_prefix":"openwrt-ramips-rt288x-belkin_f5d8235-v1","images":[{"name":"openwrt-ramips-rt288x-belkin_f5d8235-v1-squashfs-sysupgrade.bin","sha256":"ef53221cbd5f53e109aac18093125538dc9e12608d9334a95752579558720f80","type":"sysupgrade"}],"supported_devices":["belkin,f5d8235-v1","f5d8235-v1"],"titles":[{"model":"F5D8235","variant":"V1","vendor":"Belkin"}]}},"target":"ramips/rt288x","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/pistachio/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc_24kf","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","uboot-envtools","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","uboot-envtools"],"metadata_version":1,"profiles":{"marduk":{"device_packages":["kmod-tpm-i2c-infineon"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-pistachio-marduk","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-pistachio-marduk-squashfs-factory.ubi","sha256":"4b4cb1535e3148a196a822980e16634517931dd250b1bad6ceb3a51e7145cace","type":"factory"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-pistachio-marduk-squashfs-sysupgrade.tar","sha256":"954ec346e1cc832daa3eac78fac25fa4b081bfa30a023bdf438ef8121ca6b419","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Creator Ci40"}]}},"target":"pistachio/generic","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mpc85xx/p2020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"p2020rdb":{"device_packages":["kmod-hwmon-core","kmod-hwmon-lm90","kmod-rtc-ds1307","kmod-gpio-pca953x","kmod-eeprom-at24"],"image_prefix":"openwrt-19.07.4-mpc85xx-p2020-p2020rdb","images":[{"name":"openwrt-19.07.4-mpc85xx-p2020-p2020rdb-squashfs-sysupgrade.bin","sha256":"28f1dc26934c630217820d4691e237ad90a72dcc4c0167ffe65170b7104fe0a3","type":"sysupgrade"}],"supported_devices":["fsl,P2020RDB"],"titles":[{"title":"Freescale P2020RDB"}]}},"target":"mpc85xx/p2020","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/tegra/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_vfpv3-d16","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","e2fsprogs","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","e2fsprogs","mkf2fs","partx-utils"],"metadata_version":1,"profiles":{"compulab_trimslice":{"device_packages":["kmod-r8169","kmod-rt2800-usb","kmod-rtc-em3027","kmod-usb-storage","wpad-mini","iwinfo"],"image_prefix":"openwrt-19.07.4-tegra-compulab_trimslice","images":[{"name":"openwrt-19.07.4-tegra-compulab_trimslice-squashfs-sdcard.img.gz","sha256":"f048c66d54971238e1fb15687f09c79b039ee12146dbbbcee7d8602999caef56","type":"sdcard"},{"name":"openwrt-19.07.4-tegra-compulab_trimslice-ext4-sdcard.img.gz","sha256":"4e6e40f625104e0cc03d33fd29f81cd47b61c06ef14f47ceb4f72d61a397927e","type":"sdcard"}],"supported_devices":["compulab,trimslice"],"titles":[{"title":"CompuLab TrimSlice"}]}},"target":"tegra/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/tegra/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_vfpv3-d16","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","e2fsprogs","mkf2fs","partx-utils","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","e2fsprogs","mkf2fs","partx-utils"],"metadata_version":1,"profiles":{"compulab_trimslice":{"device_packages":["kmod-r8169","kmod-rt2800-usb","kmod-rtc-em3027","kmod-usb-storage","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-tegra-compulab_trimslice","images":[{"name":"openwrt-tegra-compulab_trimslice-squashfs-sdcard.img.gz","sha256":"fdcd66aeeb7c864754b7024d44913119eac55703988b55881c7b43ac68fa9b51","type":"sdcard"},{"name":"openwrt-tegra-compulab_trimslice-ext4-sdcard.img.gz","sha256":"9c71fd43825a4dd7e238e3d085b3edfa7cd85765cd8b76b1b8d42fb31e1a1199","type":"sdcard"}],"supported_devices":["compulab,trimslice"],"titles":[{"model":"TrimSlice","vendor":"CompuLab"}]}},"target":"tegra/generic","version_code":"r14458-c9f51a9ad6","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/ar71xx/tiny/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools","wpad-mini","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools"],"metadata_version":1,"profiles":{"ens202ext":{"device_packages":["rssileds"],"image_prefix":"openwrt-19.07.10-ar71xx-tiny-ens202ext","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-ar71xx-tiny-ens202ext-squashfs-sysupgrade.bin","sha256":"6b5ae8842ceee67c2ca55f9f6e0f9fe60869cacc87b5142ad212a5a1d32bb0d5","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-ar71xx-tiny-ens202ext-squashfs-factory.bin","sha256":"f6cb8a407fd0ad5fb4d8a5a582df18597e58eac0684aaa88de45438ac6c0a49d","type":"factory"}],"supported_devices":[],"titles":[{"title":"EnGenius ENS202EXT"}]}},"source_date_epoch":1650114812,"target":"ar71xx/tiny","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/ar71xx/tiny/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools","wpad-mini","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-gpio-button-hotplug","swconfig","kmod-ath9k","uboot-envtools"],"metadata_version":1,"profiles":{"ens202ext":{"device_packages":["rssileds"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-ar71xx-tiny-ens202ext","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ar71xx-tiny-ens202ext-squashfs-sysupgrade.bin","sha256":"be37c314982473ec9bf0a813d52f8e513cfdac246c6e7058339a41658e86bd3b","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ar71xx-tiny-ens202ext-squashfs-factory.bin","sha256":"42643c76f95d8aad12fc7a798f5b1aae326c2ea03cd7be1c4ab3ec33c4ad7368","type":"factory"}],"supported_devices":[],"titles":[{"title":"EnGenius ENS202EXT"}]}},"target":"ar71xx/tiny","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/layerscape/armv7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage","partx-utils","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-usb3","kmod-usb-dwc3","kmod-usb-storage","partx-utils"],"metadata_version":1,"profiles":{"fsl_ls1021a-twr":{"device_packages":["layerscape-rcw"],"image_prefix":"openwrt-layerscape-armv7-fsl_ls1021a-twr","images":[{"name":"openwrt-layerscape-armv7-fsl_ls1021a-twr-squashfs-firmware.bin","sha256":"3c8473ccaa2efed4b6789f2cf710cd1eb2bf3b89226ef207c66eb6b93f0ba8e5","type":"firmware"},{"name":"openwrt-layerscape-armv7-fsl_ls1021a-twr-squashfs-sysupgrade.bin","sha256":"1fbd30ffd0a54215855b39cd138a12a13dc6159ca10e47d081bea24f5e33b320","type":"sysupgrade"}],"supported_devices":["fsl,ls1021a-twr"],"titles":[{"model":"TWR-LS1021A","variant":"Default","vendor":"NXP"}]}},"target":"layerscape/armv7","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mpc85xx/p2020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"p2020rdb":{"device_packages":["kmod-hwmon-core","kmod-hwmon-lm90","kmod-rtc-ds1307","kmod-gpio-pca953x","kmod-eeprom-at24"],"image_prefix":"openwrt-19.07.10-mpc85xx-p2020-p2020rdb","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p2020-p2020rdb-squashfs-sysupgrade.bin","sha256":"8294368d66cff25cc352001650db29feb07f1a1d3d790c990c27d7824bbd2c56","type":"sysupgrade"}],"supported_devices":["fsl,P2020RDB"],"titles":[{"title":"Freescale P2020RDB"}]}},"source_date_epoch":1650114812,"target":"mpc85xx/p2020","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/mpc85xx/p2020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2"],"metadata_version":1,"profiles":{"freescale_p2020rdb":{"device_packages":["kmod-hwmon-lm90","kmod-rtc-ds1307","kmod-gpio-pca953x","kmod-eeprom-at24"],"image_prefix":"openwrt-mpc85xx-p2020-freescale_p2020rdb","images":[{"name":"openwrt-mpc85xx-p2020-freescale_p2020rdb-squashfs-sysupgrade.bin","sha256":"66c9ff31b598986d0631d2b002fea32af4b3af9d3fa35dc22a3fa4cc7cca1c96","type":"sysupgrade"}],"supported_devices":["fsl,P2020RDB"],"titles":[{"model":"P2020RDB","vendor":"Freescale"}]}},"target":"mpc85xx/p2020","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/octeon/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips64_octeonplus","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"er":{"device_packages":[],"image_prefix":"openwrt-19.07.10-octeon-er","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-octeon-er-squashfs-sysupgrade.tar","sha256":"1e93de6b65d38ca6ffecbc18a2257dcebb89a8f804706c0be03e3cddf6bc710d","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter"}]},"erlite":{"device_packages":[],"image_prefix":"openwrt-19.07.10-octeon-erlite","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-octeon-erlite-squashfs-sysupgrade.tar","sha256":"f28caf362a70ea703663ede8b65eac2220f94b9d7f8968d43a1a20917e5bf4b1","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter Lite"}]}},"source_date_epoch":1650114812,"target":"octeon/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mpc85xx/p2020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"p2020rdb":{"device_packages":["kmod-hwmon-core","kmod-hwmon-lm90","kmod-rtc-ds1307","kmod-gpio-pca953x","kmod-eeprom-at24"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p2020-p2020rdb","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p2020-p2020rdb-squashfs-sysupgrade.bin","sha256":"64da37d90972988ee14f2c31fae44f63a0bfe5c6140f2cfe28e5f079c01c9474","type":"sysupgrade"}],"supported_devices":["fsl,P2020RDB"],"titles":[{"title":"Freescale P2020RDB"}]}},"target":"mpc85xx/p2020","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/tegra/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_vfpv3-d16","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","e2fsprogs","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","e2fsprogs","mkf2fs","partx-utils"],"metadata_version":1,"profiles":{"compulab_trimslice":{"device_packages":["kmod-r8169","kmod-rt2800-usb","kmod-rtc-em3027","kmod-usb-storage","wpad-mini","iwinfo"],"image_prefix":"openwrt-19.07.10-tegra-compulab_trimslice","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-tegra-compulab_trimslice-squashfs-sdcard.img.gz","sha256":"652893c4c542706d03417c203d98a1c52d43968ba32376b1da715e73085e6a21","type":"sdcard"},{"filesystem":"ext4","name":"openwrt-19.07.10-tegra-compulab_trimslice-ext4-sdcard.img.gz","sha256":"5edb4ae876f5b5bb28d3e24ed67b8631a1027c6423b75ba621b7c7984c6cd3e7","type":"sdcard"}],"supported_devices":["compulab,trimslice"],"titles":[{"title":"CompuLab TrimSlice"}]}},"source_date_epoch":1650114812,"target":"tegra/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/pistachio/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc_24kf","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-gpio-button-hotplug","uboot-envtools","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-gpio-button-hotplug","uboot-envtools"],"metadata_version":1,"profiles":{"img_creator-ci40":{"device_packages":["kmod-tpm-i2c-infineon","kmod-ca8210","wpan-tools"],"image_prefix":"openwrt-pistachio-img_creator-ci40","images":[{"name":"openwrt-pistachio-img_creator-ci40-squashfs-factory.ubi","sha256":"cd85ec1a0bf60af5050627de9ff6aaef9df4e3b8e8d077a0ca9b7b4fc4dac47b","type":"factory"},{"name":"openwrt-pistachio-img_creator-ci40-squashfs-sysupgrade.tar","sha256":"13eae57a8f5d09f3596fcee21e6a96c01d1982c4d7dce97ecbaa9d103ef152e0","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"Creator Ci40 (VL-62899)","vendor":"Imagination Technologies"},{"model":"Marduk board","vendor":"Imagination Technologies"}]}},"target":"pistachio/generic","version_code":"r14458-c9f51a9ad6","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/octeon/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips64_octeonplus","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"er":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-octeon-er","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-octeon-er-squashfs-sysupgrade.tar","sha256":"c2df5ded39939411aa73e6888183f6f42cdfc91026a20bd064ce319b4145e7af","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter"}]},"erlite":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-octeon-erlite","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-octeon-erlite-squashfs-sysupgrade.tar","sha256":"8f7063cd51868bb4ffe028b7dc77225d69d41068428678132f190b13f8a0c445","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti EdgeRouter Lite"}]}},"target":"octeon/generic","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/tegra/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_vfpv3-d16","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","e2fsprogs","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","e2fsprogs","mkf2fs","partx-utils"],"metadata_version":1,"profiles":{"compulab_trimslice":{"device_packages":["kmod-r8169","kmod-rt2800-usb","kmod-rtc-em3027","kmod-usb-storage","wpad-mini","iwinfo"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-tegra-compulab_trimslice","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-tegra-compulab_trimslice-squashfs-sdcard.img.gz","sha256":"d176de7643aa9e189e29e69c98fb3eaab13c169a8474d6952d1dcd9d06a00fa7","type":"sdcard"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-tegra-compulab_trimslice-ext4-sdcard.img.gz","sha256":"708a474f70b1324ed7b65296567479a337db0c4898042523a75cbb8540aeca64","type":"sdcard"}],"supported_devices":["compulab,trimslice"],"titles":[{"title":"CompuLab TrimSlice"}]}},"target":"tegra/generic","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/test_spa.py: -------------------------------------------------------------------------------- 1 | from playwright.sync_api import sync_playwright, expect 2 | 3 | def test_spa(simplehttpserver): 4 | with sync_playwright() as p: 5 | browser = p.firefox.launch() 6 | page = browser.new_page() 7 | page.goto("http://localhost:8000/www/") 8 | assert "OpenWrt Firmware Selector" in page.title() 9 | 10 | assert page.locator("#versions").select_option("19.07.10")[0] == "19.07.10" 11 | 12 | page.fill("#models", "a7 v5") 13 | models = page.inner_text("#models-autocomplete-list") 14 | assert "TP-Link Archer A7 v5" in models 15 | 16 | locator = page.locator("xpath=/html/body/div/div/p") 17 | expect(locator).to_contain_text('Type the name or model of your device') 18 | 19 | page.select_option("#languages-select", "Deutsch (German)") 20 | expect(locator).to_contain_text('benutze die Eingabe um die passende') 21 | 22 | page.select_option("#languages-select", "ca") 23 | expect(locator).to_contain_text('el nom o el model del vostre dispositiu') 24 | 25 | page.select_option("#languages-select", "Polski (Polish)") 26 | expect(locator).to_contain_text('nazwę lub model swojego urządzenia') 27 | 28 | browser.close() 29 | -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/realtek/rtl930x/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","busybox","ca-bundle","dropbear","ethtool","firewall4","fstools","ip-bridge","ip-full","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","opkg","procd","procd-seccomp","procd-ujail","tc-bpf","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"zyxel_xgs1250-12":{"device_packages":[],"image_prefix":"openwrt-23.05.4-realtek-rtl930x-zyxel_xgs1250-12","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-realtek-rtl930x-zyxel_xgs1250-12-squashfs-sysupgrade.bin","sha256":"404e4ad2e19906aa3f79671c191f0df715de5ed8b7d52ae59fb794a19d7cb930","sha256_unsigned":"12ddd17d339f10fa44cab294c358041236537280c0758bac5010e89aeaa56ddd","type":"sysupgrade"},{"filesystem":"initramfs","name":"openwrt-23.05.4-realtek-rtl930x-zyxel_xgs1250-12-initramfs-kernel.bin","sha256":"93f6a7c0f0f6ecfdb5929f555c28a02866eb75fbda2452dc41a08d1be7a0d127","sha256_unsigned":"93f6a7c0f0f6ecfdb5929f555c28a02866eb75fbda2452dc41a08d1be7a0d127","type":"kernel"}],"supported_devices":["zyxel,xgs1250-12"],"titles":[{"model":"XGS1250-12","vendor":"Zyxel"}]}},"source_date_epoch":1721081658,"target":"realtek/rtl930x","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Firmware Selector Test 2 | 3 | on: 4 | push: 5 | paths: 6 | - ".github/workflows/*" 7 | - "www/**" 8 | pull_request: 9 | paths: 10 | - ".github/workflows/*" 11 | - "www/**" 12 | 13 | jobs: 14 | Test: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@v4 18 | 19 | - name: Validate HTML 20 | uses: anishathalye/proof-html@v2 21 | with: 22 | directory: www/ 23 | 24 | - uses: actions/setup-node@v4 25 | with: 26 | node-version: 20 27 | 28 | - run: | 29 | yarn install 30 | yarn prettier --check www 31 | yarn eslint www/ 32 | 33 | - name: Set up Python 34 | uses: actions/setup-python@v5 35 | with: 36 | python-version: "3.11" 37 | 38 | - name: Install dependencies 39 | run: | 40 | python -m pip install --upgrade pip 41 | pip install pytest-playwright pytest-simplehttpserver 42 | 43 | - name: Ensure browsers are installed 44 | run: python -m playwright install --with-deps 45 | 46 | - name: Run your tests 47 | run: pytest --tracing=retain-on-failure --simplehttpserver-directory ./ 48 | 49 | - uses: actions/upload-artifact@v4 50 | if: always() 51 | with: 52 | name: playwright-traces 53 | path: test-results/ 54 | -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/tegra/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_vfpv3-d16","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"compulab_trimslice":{"device_packages":["kmod-r8169","kmod-rt2800-usb","kmod-rtc-em3027","kmod-usb-storage","wpad-basic-mbedtls","iwinfo"],"image_prefix":"openwrt-23.05.4-tegra-generic-compulab_trimslice","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-tegra-generic-compulab_trimslice-ext4-sdcard.img.gz","sha256":"74ad87ec64c9486bdd3411d4971a3ebfbe916c9bc32dbae61691fa2d8446882e","sha256_unsigned":"5b7fa21ee46ed1a9e2eacddf92f3d2ea7745607f82d77e206d4c02bac5fe3c5e","type":"sdcard"},{"filesystem":"squashfs","name":"openwrt-23.05.4-tegra-generic-compulab_trimslice-squashfs-sdcard.img.gz","sha256":"41a6777ed1abd9d274d9b9c3a15b6dfd4b1c84bba8b394f060f078fe6494d0d3","sha256_unsigned":"57be6dec988daa7d5c5fa891742f5f37ffa183a3d6773178202c4ca865dd1c43","type":"sdcard"}],"supported_devices":["compulab,trimslice"],"titles":[{"model":"TrimSlice","vendor":"CompuLab"}]}},"source_date_epoch":1721081658,"target":"tegra/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bmips/bcm6318/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","ethtool","firewall4","fstools","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"comtrend_ar-5315u":{"device_packages":["kmod-usb-ohci","kmod-usb-ledtrig-usbport","kmod-usb2","kmod-b43","wpad-basic-mbedtls","broadcom-43217-sprom","kmod-leds-bcm6328","iwinfo"],"image_prefix":"openwrt-23.05.4-bmips-bcm6318-comtrend_ar-5315u","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6318-comtrend_ar-5315u-squashfs-cfe.bin","sha256":"f77859ba690629ce6d93069113000f9646b665c07059a020b02a0dd76c6a1225","sha256_unsigned":"f77859ba690629ce6d93069113000f9646b665c07059a020b02a0dd76c6a1225","type":"cfe"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6318-comtrend_ar-5315u-squashfs-sysupgrade.bin","sha256":"f3f34f0f60e37dfcedbe8f9c0157a054286159058ed77c49d292c09958f02ace","sha256_unsigned":"695d0249ea5b621cfaf5113b867fd89e0cc4843cf6b430b99b8dffa6583cf5e0","type":"sysupgrade"}],"supported_devices":["comtrend,ar-5315u"],"titles":[{"model":"AR-5315u","vendor":"Comtrend"}]}},"source_date_epoch":1721081658,"target":"bmips/bcm6318","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bmips/bcm6358/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","ethtool","firewall4","fstools","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"huawei_hg556a-b":{"device_packages":["kmod-usb-ohci","kmod-usb-ledtrig-usbport","kmod-usb2","kmod-ath9k","kmod-owl-loader","wpad-basic-mbedtls","kmod-leds-gpio","iwinfo"],"image_prefix":"openwrt-23.05.4-bmips-bcm6358-huawei_hg556a-b","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6358-huawei_hg556a-b-squashfs-cfe.bin","sha256":"701138c7a5f057aa0a0523818dfaaf045daa67b9897a81044c48e0cd87e5d6ca","sha256_unsigned":"701138c7a5f057aa0a0523818dfaaf045daa67b9897a81044c48e0cd87e5d6ca","type":"cfe"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6358-huawei_hg556a-b-squashfs-sysupgrade.bin","sha256":"57122a72d0bc164391ac9f46d5d064a17cbeb10313311fd467cbe83afa2d8ca3","sha256_unsigned":"5f541c3ec1080481c3cd39cb1380140a0f078ff33af7b47da4a522a0a2319cd9","type":"sysupgrade"}],"supported_devices":["huawei,hg556a-b"],"titles":[{"model":"EchoLife HG556a","variant":"B","vendor":"Huawei"}]}},"source_date_epoch":1721081658,"target":"bmips/bcm6358","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/pistachio/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_24kc_24kf","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"img_creator-ci40":{"device_packages":["kmod-tpm-i2c-infineon","kmod-ca8210","wpan-tools"],"image_prefix":"openwrt-23.05.4-pistachio-generic-img_creator-ci40","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-pistachio-generic-img_creator-ci40-squashfs-sysupgrade.tar","sha256":"fb08ea9f0e671a5c2d20aa6667d838d82a451749259b1af638ac7404f5322996","sha256_unsigned":"fb08ea9f0e671a5c2d20aa6667d838d82a451749259b1af638ac7404f5322996","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-pistachio-generic-img_creator-ci40-squashfs-factory.ubi","sha256":"3e679ec7b168461a018c2397b83273ecdeab9cf501b45f14ee25d17085b58cdb","sha256_unsigned":"3e679ec7b168461a018c2397b83273ecdeab9cf501b45f14ee25d17085b58cdb","type":"factory"}],"supported_devices":["img,creator-ci40"],"titles":[{"model":"Creator Ci40 (VL-62899)","vendor":"Imagination Technologies"},{"model":"Marduk board","vendor":"Imagination Technologies"}]}},"source_date_epoch":1721081658,"target":"pistachio/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/mpc85xx/p2020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8548","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-ath9k","kmod-button-hotplug","kmod-input-core","kmod-input-gpio-keys","kmod-leds-gpio","kmod-nft-offload","kmod-usb2","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","swconfig","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-mbedtls"],"metadata_version":1,"profiles":{"freescale_p2020rdb":{"device_packages":["kmod-hwmon-lm90","kmod-rtc-ds1307","kmod-gpio-pca953x","kmod-eeprom-at24"],"image_prefix":"openwrt-23.05.4-mpc85xx-p2020-freescale_p2020rdb","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-mpc85xx-p2020-freescale_p2020rdb-initramfs-kernel.bin","sha256":"3c36e7a32a4304cad08c6244de2589fa154f64278ce5ba0e43ceb3ae491eac92","sha256_unsigned":"3c36e7a32a4304cad08c6244de2589fa154f64278ce5ba0e43ceb3ae491eac92","type":"kernel"},{"filesystem":"squashfs","name":"openwrt-23.05.4-mpc85xx-p2020-freescale_p2020rdb-squashfs-sysupgrade.bin","sha256":"810444253aecdd17bb47e7b301ae74944d33bd9564976ece4d97127c5315e32e","sha256_unsigned":"e8fe0db82d702ab5fc0a555ade1ad46087dbb3c6d98b14f332cfeff589ff5f73","type":"sysupgrade"}],"supported_devices":["fsl,P2020RDB"],"titles":[{"model":"P2020RDB","vendor":"Freescale"}]}},"source_date_epoch":1721081658,"target":"mpc85xx/p2020","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/sifiveu/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"riscv64_riscv64","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"sifive_unleashed":{"device_packages":[],"image_prefix":"openwrt-23.05.4-sifiveu-generic-sifive_unleashed","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-sifiveu-generic-sifive_unleashed-ext4-sdcard.img.gz","sha256":"07788ae9e095907d35232f4d8f27ad99b95d69d2dc069d8ef53f11488ec7508d","sha256_unsigned":"8b9531e583544cb7a1a4d7b609a31962f4439c816111336d4f5c18807f9a24ee","type":"sdcard"}],"supported_devices":["sifive,unleashed"],"titles":[{"model":"Unleashed (FU540)","vendor":"SiFive"}]},"sifive_unmatched":{"device_packages":["kmod-eeprom-at24","kmod-hwmon-lm90"],"image_prefix":"openwrt-23.05.4-sifiveu-generic-sifive_unmatched","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-sifiveu-generic-sifive_unmatched-ext4-sdcard.img.gz","sha256":"95bf32f92bd38ce7e17650c1c192aeba20424cb0918f3717864af1a8b6da912a","sha256_unsigned":"06be355724eeb001539e42dc5106e501a880bcb44be782eecae6f81f2f2a523b","type":"sdcard"}],"supported_devices":["sifive,unmatched"],"titles":[{"model":"Unmatched (FU740)","vendor":"SiFive"}]}},"source_date_epoch":1721081658,"target":"sifiveu/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mediatek/mt7623/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"7623a-unielec-u7623-02-emmc-512m":{"device_packages":["mkf2fs","e2fsprogs","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc"],"image_prefix":"openwrt-19.07.4-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m","images":[{"name":"openwrt-19.07.4-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m-squashfs-sysupgrade-emmc.bin.gz","sha256":"0b56ef4163725d1551155a93c7f54618e927192b749ac44463406be5bad1bea9","type":"sysupgrade-emmc"}],"supported_devices":["unielec,u7623-02-emmc-512m"],"titles":[{"title":"MTK7623a UniElec U7623-02 (eMMC/512MB RAM)"}]},"7623n-bananapi-bpi-r2":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mediatek-mt7623-7623n-bananapi-bpi-r2","images":[{"name":"openwrt-19.07.4-mediatek-mt7623-7623n-bananapi-bpi-r2-squashfs-sysupgrade.bin","sha256":"164e1cf3666e4d4a06469ba8b1fd91c4d895281578ce282ba2f4fea262628ff7","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"MTK7623n BananaPi R2"}]}},"target":"mediatek/mt7623","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/octeon/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips64_octeonplus","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","mkf2fs","e2fsprogs","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"itus_shield-router":{"device_packages":[],"image_prefix":"openwrt-octeon-itus_shield-router","images":[{"name":"openwrt-octeon-itus_shield-router-squashfs-sysupgrade.tar","sha256":"d8ab694851e9051af9d87aaa493716f9bbcda6629e578e43cf88322f37cbe58a","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"Shield Router","vendor":"Itus Networks"}]},"ubnt_edgerouter":{"device_packages":[],"image_prefix":"openwrt-octeon-ubnt_edgerouter","images":[{"name":"openwrt-octeon-ubnt_edgerouter-squashfs-sysupgrade.tar","sha256":"bf1f936cb4792b67ee621c93928f14052bceaa65ea79de2c5c457f90e8ef5f75","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"EdgeRouter","vendor":"Ubiquiti"}]},"ubnt_edgerouter-lite":{"device_packages":[],"image_prefix":"openwrt-octeon-ubnt_edgerouter-lite","images":[{"name":"openwrt-octeon-ubnt_edgerouter-lite-squashfs-sysupgrade.tar","sha256":"55969116f0f42a176a0e5bda7ae7bf2efd034788aa021011549f6a3669213659","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"EdgeRouter Lite","vendor":"Ubiquiti"}]}},"target":"octeon/generic","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/lantiq/ase/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload"],"metadata_version":1,"profiles":{"allnet_all0333cj":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07.4-lantiq-ase-allnet_all0333cj","images":[{"name":"openwrt-19.07.4-lantiq-ase-allnet_all0333cj-squashfs-sysupgrade.bin","sha256":"c86759335fc21d965a2613cad86857db1354c38a0556cd3eecaa197b213f7147","type":"sysupgrade"}],"supported_devices":["allnet,all0333cj"],"titles":[{"title":"Allnet ALL0333CJ"}]},"netgear_dgn1000b":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07.4-lantiq-ase-netgear_dgn1000b","images":[{"name":"openwrt-19.07.4-lantiq-ase-netgear_dgn1000b-squashfs-sysupgrade.bin","sha256":"f59b14112ce845a4334c5a6d7665d3cb58ff83d51224884107c06cc92c96a560","type":"sysupgrade"}],"supported_devices":["netgear,dgn1000b","DGN1000B"],"titles":[{"title":"Netgear DGN1000B"}]}},"target":"lantiq/ase","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mediatek/mt7623/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"7623a-unielec-u7623-02-emmc-512m":{"device_packages":["mkf2fs","e2fsprogs","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc"],"image_prefix":"openwrt-19.07.10-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m-squashfs-sysupgrade-emmc.bin.gz","sha256":"2f116f029ab4d338d599ffb6422b275e30ecdf353c885b24d7d34f5a70a21773","type":"sysupgrade-emmc"}],"supported_devices":["unielec,u7623-02-emmc-512m"],"titles":[{"title":"MTK7623a UniElec U7623-02 (eMMC/512MB RAM)"}]},"7623n-bananapi-bpi-r2":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mediatek-mt7623-7623n-bananapi-bpi-r2","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mediatek-mt7623-7623n-bananapi-bpi-r2-squashfs-sysupgrade.bin","sha256":"0f2df317bf67a2bbb111d79aed6572c8f8f5f49351511e49733879c2440746b6","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"MTK7623n BananaPi R2"}]}},"source_date_epoch":1650114812,"target":"mediatek/mt7623","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm4908/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","bcm4908img","busybox","ca-bundle","dnsmasq","dropbear","fdt-utils","firewall4","fstools","kmod-gpio-button-hotplug","kmod-nft-offload","kmod-usb-ledtrig-usbport","kmod-usb-ohci","kmod-usb2","kmod-usb3","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"asus_gt-ac5300":{"device_packages":[],"image_prefix":"openwrt-23.05.4-bcm4908-generic-asus_gt-ac5300","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm4908-generic-asus_gt-ac5300-squashfs.bin","sha256":"cd76ae983345c62a431524e60ea500b97059ab858cfe4e7b29078f08a4266e04","sha256_unsigned":"cd76ae983345c62a431524e60ea500b97059ab858cfe4e7b29078f08a4266e04","type":"bin"}],"supported_devices":["asus,gt-ac5300"],"titles":[{"model":"GT-AC5300","vendor":"ASUS"}]},"netgear_r8000p":{"device_packages":[],"image_prefix":"openwrt-23.05.4-bcm4908-generic-netgear_r8000p","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm4908-generic-netgear_r8000p-squashfs.bin","sha256":"1e74dbf9781f2c0585c920d5b2fce4504bfbca27b44619a40335343cb5ee50bb","sha256_unsigned":"1e74dbf9781f2c0585c920d5b2fce4504bfbca27b44619a40335343cb5ee50bb","type":"bin"}],"supported_devices":["netgear,r8000p"],"titles":[{"model":"R8000P","vendor":"Netgear"}]}},"source_date_epoch":1721081658,"target":"bcm4908/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mpc85xx/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"red-15w-rev1":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mpc85xx-generic-red-15w-rev1","images":[{"name":"openwrt-19.07.4-mpc85xx-generic-red-15w-rev1-squashfs-sysupgrade.bin","sha256":"698a302c515f2b5603ad630938824add15c2e3d1a4ea9f4f3f026bef192bfb33","type":"sysupgrade"}],"supported_devices":["sophos,red-15w-rev1"],"titles":[{"title":"Sophos RED 15w Rev.1"}]},"tl-wdr4900-v1":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mpc85xx-generic-tl-wdr4900-v1","images":[{"name":"openwrt-19.07.4-mpc85xx-generic-tl-wdr4900-v1-squashfs-sysupgrade.bin","sha256":"f6c4107f3e5488c7aa957f87abb30de93697ef7a65be2154add8ca28e2bfbca8","type":"sysupgrade"},{"name":"openwrt-19.07.4-mpc85xx-generic-tl-wdr4900-v1-squashfs-factory.bin","sha256":"0b8f7bfd28f04c2298f2c588454416025ff92049f3defe893f85056885131079","type":"factory"}],"supported_devices":["tl-wdr4900-v1","tplink,tl-wdr4900-v1"],"titles":[{"title":"TP-Link TL-WDR4900"}]}},"target":"mpc85xx/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mediatek/mt7623/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-mt76","kmod-leds-gpio","kmod-gpio-button-hotplug","wpad-basic"],"metadata_version":1,"profiles":{"7623a-unielec-u7623-02-emmc-512m":{"device_packages":["mkf2fs","e2fsprogs","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7623-7623a-unielec-u7623-02-emmc-512m-squashfs-sysupgrade-emmc.bin.gz","sha256":"338809e26640811414c2a0914727ea4c899e9f2451eec4918af7cebbdd25c33c","type":"sysupgrade-emmc"}],"supported_devices":["unielec,u7623-02-emmc-512m"],"titles":[{"title":"MTK7623a UniElec U7623-02 (eMMC/512MB RAM)"}]},"7623n-bananapi-bpi-r2":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7623-7623n-bananapi-bpi-r2","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mediatek-mt7623-7623n-bananapi-bpi-r2-squashfs-sysupgrade.bin","sha256":"408be027fa2211c55de0eb8c1bc8df36f441ba891ca23f05eb65301171d3ed62","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"MTK7623n BananaPi R2"}]}},"target":"mediatek/mt7623","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/apm821xx/sata/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug","badblocks","block-mount","e2fsprogs","kmod-hwmon-drivetemp","kmod-dm","kmod-md-mod","partx-utils","mkf2fs","f2fsck","block-mount","fdisk","lsblk","mdadm","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"wd_mybooklive":{"device_packages":["kmod-usb-dwc2","kmod-usb-ledtrig-usbport","kmod-usb-storage","kmod-fs-vfat","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-apm821xx-sata-wd_mybooklive","images":[{"name":"openwrt-apm821xx-sata-wd_mybooklive-ext4-factory.img.gz","sha256":"fab1dbd3c5cb109807b1ba40bb2f8bca29a010ba149a005ee36dcf6e42e769b8","type":"factory"},{"name":"openwrt-apm821xx-sata-wd_mybooklive-squashfs-sysupgrade.img.gz","sha256":"6609492f32997a4ce2121c1be8d3b65ea814bcc6a5e44a00e073ddcfc961e2e9","type":"sysupgrade"},{"name":"openwrt-apm821xx-sata-wd_mybooklive-ext4-sysupgrade.img.gz","sha256":"321b41827843eec3c4a7ec51c81049cebe75f665ea53f7fdcf1fe53d8edcf15c","type":"sysupgrade"},{"name":"openwrt-apm821xx-sata-wd_mybooklive-squashfs-factory.img.gz","sha256":"615ffe6bd38d3a896492c3d922eaf02f1cfeaa7e7bce9125f6c5fa39cde5c9a8","type":"factory"}],"supported_devices":["wd,mybooklive","mbl","wd,mybooklive-duo"],"titles":[{"model":"My Book Live Series (Single + Duo)","vendor":"Western Digital"}]}},"target":"apm821xx/sata","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/lantiq/ase/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload"],"metadata_version":1,"profiles":{"allnet_all0333cj":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07.10-lantiq-ase-allnet_all0333cj","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-lantiq-ase-allnet_all0333cj-squashfs-sysupgrade.bin","sha256":"3fb572f7769a6aee121c5ad22f8b5a4e929d90e352bd4eb38ab4e6c9526c8480","type":"sysupgrade"}],"supported_devices":["allnet,all0333cj"],"titles":[{"title":"Allnet ALL0333CJ"}]},"netgear_dgn1000b":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07.10-lantiq-ase-netgear_dgn1000b","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-lantiq-ase-netgear_dgn1000b-squashfs-sysupgrade.bin","sha256":"777d23cc3cdfa0fab6a3a9157cf5ad9bdae8e8d794b5c42c453b44645695f845","type":"sysupgrade"}],"supported_devices":["netgear,dgn1000b","DGN1000B"],"titles":[{"title":"Netgear DGN1000B"}]}},"source_date_epoch":1650114812,"target":"lantiq/ase","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/imx/cortexa7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","blkid","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"technexion_imx7d-pico-pi":{"device_packages":["kmod-sound-core","kmod-sound-soc-imx","kmod-sound-soc-imx-sgtl5000","kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-leds-gpio","kmod-input-touchscreen-edt-ft5x06","kmod-usb-hid","kmod-btsdio","kmod-brcmfmac","brcmfmac-firmware-4339-sdio","cypress-nvram-4339-sdio"],"image_prefix":"openwrt-23.05.4-imx-cortexa7-technexion_imx7d-pico-pi","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-imx-cortexa7-technexion_imx7d-pico-pi-squashfs-sysupgrade.bin","sha256":"d67795a819bd13b473643f24bc3ce0e8b302740bfbbcd6722cc755aa340a1d9e","sha256_unsigned":"8dfc7aa1bbdd12af2d631e5f8f10020bf749f665bb1330bb36a199b7159b1e6f","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-imx-cortexa7-technexion_imx7d-pico-pi-squashfs-combined.bin","sha256":"7b8c3c14d2c9cd755b7936a5c5d8d9c39e725d7d7e35d2b97cb438705f883762","sha256_unsigned":"7b8c3c14d2c9cd755b7936a5c5d8d9c39e725d7d7e35d2b97cb438705f883762","type":"combined"}],"supported_devices":["technexion,imx7d-pico-pi"],"titles":[{"model":"PICO-PI-IMX7D","vendor":"TechNexion"}]}},"source_date_epoch":1721081658,"target":"imx/cortexa7","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /www/uci-defaults/setup.sh: -------------------------------------------------------------------------------- 1 | # Beware! This script will be in /rom/etc/uci-defaults/ as part of the image. 2 | # Uncomment lines to apply: 3 | # 4 | # wlan_name="OpenWrt" 5 | # wlan_password="12345678" 6 | # 7 | # root_password="" 8 | # lan_ip_address="192.168.1.1" 9 | # 10 | # pppoe_username="" 11 | # pppoe_password="" 12 | 13 | # log potential errors 14 | exec >/tmp/setup.log 2>&1 15 | 16 | if [ -n "$root_password" ]; then 17 | (echo "$root_password"; sleep 1; echo "$root_password") | passwd > /dev/null 18 | fi 19 | 20 | # Configure LAN 21 | # More options: https://openwrt.org/docs/guide-user/base-system/basic-networking 22 | if [ -n "$lan_ip_address" ]; then 23 | uci set network.lan.ipaddr="$lan_ip_address" 24 | uci commit network 25 | fi 26 | 27 | # Configure WLAN 28 | # More options: https://openwrt.org/docs/guide-user/network/wifi/basic#wi-fi_interfaces 29 | if [ -n "$wlan_name" -a -n "$wlan_password" -a ${#wlan_password} -ge 8 ]; then 30 | uci set wireless.@wifi-device[0].disabled='0' 31 | uci set wireless.@wifi-iface[0].disabled='0' 32 | uci set wireless.@wifi-iface[0].encryption='psk2' 33 | uci set wireless.@wifi-iface[0].ssid="$wlan_name" 34 | uci set wireless.@wifi-iface[0].key="$wlan_password" 35 | uci commit wireless 36 | fi 37 | 38 | # Configure PPPoE 39 | # More options: https://openwrt.org/docs/guide-user/network/wan/wan_interface_protocols#protocol_pppoe_ppp_over_ethernet 40 | if [ -n "$pppoe_username" -a "$pppoe_password" ]; then 41 | uci set network.wan.proto=pppoe 42 | uci set network.wan.username="$pppoe_username" 43 | uci set network.wan.password="$pppoe_password" 44 | uci commit network 45 | fi 46 | 47 | echo "All done!" 48 | -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/apm821xx/sata/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug","badblocks","block-mount","e2fsprogs","kmod-dm","kmod-md-mod","partx-utils","mkf2fs","f2fsck","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"wd_mybooklive":{"device_packages":["kmod-usb-dwc2","kmod-usb-ledtrig-usbport","kmod-usb-storage","kmod-fs-vfat","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.4-apm821xx-sata-wd_mybooklive","images":[{"name":"openwrt-19.07.4-apm821xx-sata-wd_mybooklive-squashfs-factory.img.gz","sha256":"2d664351e6640e9f3e15e54256682cf497f6050098e0f6320b12be979e9ceee3","type":"factory"},{"name":"openwrt-19.07.4-apm821xx-sata-wd_mybooklive-ext4-sysupgrade.img.gz","sha256":"cc4dfa3c65f6641143e3cfd1c3fa10c25c086b98fcc1ee5dbda9951140c389d8","type":"sysupgrade"},{"name":"openwrt-19.07.4-apm821xx-sata-wd_mybooklive-squashfs-sysupgrade.img.gz","sha256":"3b5b55a2631379575ac4fb025f7441650ac3a179b61dcee6aea7bb3d9c9f59a9","type":"sysupgrade"},{"name":"openwrt-19.07.4-apm821xx-sata-wd_mybooklive-ext4-factory.img.gz","sha256":"37e58c411efc7fe071ad0cff827430e154d6c740348992fee61e84453d2d8de6","type":"factory"}],"supported_devices":["wd,mybooklive","mbl","wd,mybooklive-duo"],"titles":[{"title":"Western Digital My Book Live Series (Single + Duo)"}]}},"target":"apm821xx/sata","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/lantiq/ase/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload"],"metadata_version":1,"profiles":{"allnet_all0333cj":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-lantiq-ase-allnet_all0333cj","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-lantiq-ase-allnet_all0333cj-squashfs-sysupgrade.bin","sha256":"f6370aa342208869d99cb36248fa4e94784b0de7fd93e635e01c4376936f3581","type":"sysupgrade"}],"supported_devices":["allnet,all0333cj"],"titles":[{"title":"Allnet ALL0333CJ"}]},"netgear_dgn1000b":{"device_packages":["kmod-ltq-adsl-ase","kmod-ltq-adsl-ase-mei","kmod-ltq-adsl-ase-fw-b","kmod-ltq-atm-ase","ltq-adsl-app","ppp-mod-pppoe"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-lantiq-ase-netgear_dgn1000b","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-lantiq-ase-netgear_dgn1000b-squashfs-sysupgrade.bin","sha256":"5d403deca3c5906b2aa968cacccb4ed64b6bfc6ae31ea1043502a56d8023d4b0","type":"sysupgrade"}],"supported_devices":["netgear,dgn1000b","DGN1000B"],"titles":[{"title":"Netgear DGN1000B"}]}},"target":"lantiq/ase","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /.github/workflows/static-stable.yml: -------------------------------------------------------------------------------- 1 | name: Deploy static content to OpenWrt Download Server 2 | 3 | on: 4 | push: 5 | branches: ["stable"] 6 | 7 | # Allows you to run this workflow manually from the Actions tab 8 | workflow_dispatch: 9 | 10 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 11 | permissions: 12 | contents: read 13 | id-token: write 14 | 15 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 16 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 17 | concurrency: 18 | group: "pages-stable" 19 | cancel-in-progress: false 20 | 21 | jobs: 22 | # Single deploy job since we're just deploying 23 | deploy: 24 | runs-on: ubuntu-latest 25 | steps: 26 | - name: Checkout 27 | uses: actions/checkout@v4 28 | 29 | - name: Install rsync 30 | run: | 31 | sudo apt-get update 32 | sudo apt-get install -y rsync 33 | 34 | - name: Setup config.json 35 | run: | 36 | cd www/ 37 | sed -i "s;%GIT_VERSION%;$(git describe --tags);" index.js 38 | sed -i 's;image_url: "../misc",;image_url: "https://downloads.openwrt.org",;' config.js 39 | sed -i "s; //show_snapshots; show_snapshots;" config.js 40 | sed -i "s; versions; // versions;" config.js 41 | 42 | - name: Upload using rsync 43 | run: | 44 | echo ${{ secrets.RSYNC_PASSWORD }} > ~/.rsync_password 45 | chmod 600 ~/.rsync_password 46 | rsync -av --password-file=~/.rsync_pass www/ ${{ secrets.RSYNC_USER }}@mirror-03.infra.openwrt.org::firmware_selector/ 47 | -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/x86/64/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"x86_64","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-bnx2","kmod-e1000e","kmod-e1000","kmod-forcedeth","kmod-igb","kmod-ixgbe","kmod-r8169"],"image_prefix":"openwrt-x86-64-generic","images":[{"name":"openwrt-x86-64-generic-squashfs-combined-efi.img.gz","sha256":"0a60e8d0bbc6497e418bab229df6fc494c2edb0b68c5c4357a50711b1d04074c","type":"combined-efi"},{"name":"openwrt-x86-64-generic-squashfs-combined.img.gz","sha256":"1031f2852c5dd496a5420b89e959ba2187b8cefde4c68c21108297b426a1e539","type":"combined"},{"name":"openwrt-x86-64-generic-squashfs-rootfs.img.gz","sha256":"2bf5753f9e4a8a15f98ced4b59374932d851c72d9478c868c41ed4656525f2c1","type":"rootfs"},{"name":"openwrt-x86-64-generic-ext4-combined-efi.img.gz","sha256":"cf0313d918766941c4e50537e576ecb7f55834f2de6569fda6f24627c458d3cd","type":"combined-efi"},{"name":"openwrt-x86-64-generic-ext4-combined.img.gz","sha256":"59b17ccce25c66d6026e136576bf0bd68f894657a6662624a9c8cd1f97c4e9ac","type":"combined"},{"name":"openwrt-x86-64-generic-ext4-rootfs.img.gz","sha256":"12eba5b698945f0eebeaa40af172738319f079807624372897e80df53b37f54d","type":"rootfs"}],"supported_devices":[],"titles":[{"title":"Generic x86/64"}]}},"target":"x86/64","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/mpc85xx/p1010/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2"],"metadata_version":1,"profiles":{"sophos_red-15w-rev1":{"device_packages":[],"image_prefix":"openwrt-mpc85xx-p1010-sophos_red-15w-rev1","images":[{"name":"openwrt-mpc85xx-p1010-sophos_red-15w-rev1-squashfs-sysupgrade.bin","sha256":"fcffaa5b535d7348f9f4ce4d18a76e70d580b081a7d9457d5fa8bed70d5d6bdf","type":"sysupgrade"}],"supported_devices":["sophos,red-15w-rev1"],"titles":[{"model":"RED 15w","variant":"Rev.1","vendor":"Sophos"}]},"tplink_tl-wdr4900-v1":{"device_packages":[],"image_prefix":"openwrt-mpc85xx-p1010-tplink_tl-wdr4900-v1","images":[{"name":"openwrt-mpc85xx-p1010-tplink_tl-wdr4900-v1-squashfs-factory.bin","sha256":"742a29eec3401bedb38e5fa3e350876cc9bc722e0c9b98358d36a6164ff12139","type":"factory"},{"name":"openwrt-mpc85xx-p1010-tplink_tl-wdr4900-v1-squashfs-sysupgrade.bin","sha256":"64ce0e1006628b8f5dc5ae3c6bbbf00d9d498addab092286b8888d6d908610e0","type":"sysupgrade"}],"supported_devices":["tplink,tl-wdr4900-v1","tl-wdr4900-v1"],"titles":[{"model":"TL-WDR4900","variant":"v1","vendor":"TP-Link"}]}},"target":"mpc85xx/p1010","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/bcm27xx/bcm2711/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a72","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-4":{"device_packages":["cypress-firmware-43455-sdio","cypress-nvram-43455-sdio-rpi-4b","kmod-brcmfmac","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-bcm27xx-bcm2711-rpi-4","images":[{"name":"openwrt-bcm27xx-bcm2711-rpi-4-ext4-factory.img.gz","sha256":"fdcce1223a004e22855c3342d4ec7718a1ed9cbff9b82841e71c5cfda4097368","type":"factory"},{"name":"openwrt-bcm27xx-bcm2711-rpi-4-ext4-sysupgrade.img.gz","sha256":"a8743e1b56019677236e0b0447ed83d9cda95fa36bd19ec226677780229a7247","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2711-rpi-4-squashfs-factory.img.gz","sha256":"cd5681970f48d5508f159f7e2ceeb4972965d16568338199c7da2fcea5d89fef","type":"factory"},{"name":"openwrt-bcm27xx-bcm2711-rpi-4-squashfs-sysupgrade.img.gz","sha256":"5636406f10561b0ff98c9548c853880166038277f789c5ab4336d1b09a8baa53","type":"sysupgrade"}],"supported_devices":["raspberrypi,4-model-b"],"titles":[{"model":"4B","vendor":"Raspberry Pi"}]}},"target":"bcm27xx/bcm2711","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mpc85xx/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"red-15w-rev1":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mpc85xx-generic-red-15w-rev1","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-generic-red-15w-rev1-squashfs-sysupgrade.bin","sha256":"533fcb2b4b1615209b8a4c46f9e37e8806ee180f9ae6e97ab5e92e7ee22e118f","type":"sysupgrade"}],"supported_devices":["sophos,red-15w-rev1"],"titles":[{"title":"Sophos RED 15w Rev.1"}]},"tl-wdr4900-v1":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mpc85xx-generic-tl-wdr4900-v1","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-generic-tl-wdr4900-v1-squashfs-factory.bin","sha256":"247cedaf407aa296d319b7ffa8135b05bbfdd149feb0b4c372f9e345a2f54a01","type":"factory"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-generic-tl-wdr4900-v1-squashfs-sysupgrade.bin","sha256":"ada176433ed05e31fe44f8b47fcf249399c58c4fdc6ffdc7b89a05ade2fad627","type":"sysupgrade"}],"supported_devices":["tl-wdr4900-v1","tplink,tl-wdr4900-v1"],"titles":[{"title":"TP-Link TL-WDR4900"}]}},"source_date_epoch":1650114812,"target":"mpc85xx/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mpc85xx/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"red-15w-rev1":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-mpc85xx-generic-red-15w-rev1","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-mpc85xx-generic-red-15w-rev1-squashfs-sysupgrade.bin","sha256":"9302a2e74897fc33a5b0422b3e19dcde596bba3825111f269b6a4ec6c2e805e1","type":"sysupgrade"}],"supported_devices":["sophos,red-15w-rev1"],"titles":[{"title":"Sophos RED 15w Rev.1"}]},"tl-wdr4900-v1":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-mpc85xx-generic-tl-wdr4900-v1","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-mpc85xx-generic-tl-wdr4900-v1-squashfs-sysupgrade.bin","sha256":"6c43456efe48124527ed7d0579f8ce2cdbcec896ccbbae0cddd4c408d8ed0b51","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-mpc85xx-generic-tl-wdr4900-v1-squashfs-factory.bin","sha256":"e35c25e6fc9fefccab408725e29062e99d256b3f87826dd55ee2f0611172e09d","type":"factory"}],"supported_devices":["tl-wdr4900-v1","tplink,tl-wdr4900-v1"],"titles":[{"title":"TP-Link TL-WDR4900"}]}},"target":"mpc85xx/generic","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/rockchip/armv8/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_generic","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","uboot-envtools","partx-utils","e2fsprogs","mkf2fs","kmod-gpio-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","uboot-envtools","partx-utils","e2fsprogs","mkf2fs","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"friendlyarm_nanopi-r2s":{"device_packages":["kmod-usb-net-rtl8152"],"image_prefix":"openwrt-rockchip-armv8-friendlyarm_nanopi-r2s","images":[{"name":"openwrt-rockchip-armv8-friendlyarm_nanopi-r2s-ext4-sysupgrade.img.gz","sha256":"034a2b4b2924e12fa61080864522b669b3d5bebca05ef6c120604de64d71b002","type":"sysupgrade"},{"name":"openwrt-rockchip-armv8-friendlyarm_nanopi-r2s-squashfs-sysupgrade.img.gz","sha256":"7eacd7ba46411cb340b85884d76ed2ea835a0bca090f4e104b8e568b5341fff4","type":"sysupgrade"}],"supported_devices":["friendlyarm,nanopi-r2s"],"titles":[{"model":"NanoPi R2S","vendor":"FriendlyARM"}]},"pine64_rockpro64":{"device_packages":[],"image_prefix":"openwrt-rockchip-armv8-pine64_rockpro64","images":[{"name":"openwrt-rockchip-armv8-pine64_rockpro64-ext4-sysupgrade.img.gz","sha256":"8023e707d331b4b71d5a1b8395090d42e12b2855f228f23e7a501dd5e1e777ff","type":"sysupgrade"},{"name":"openwrt-rockchip-armv8-pine64_rockpro64-squashfs-sysupgrade.img.gz","sha256":"00d9439c15f28efb94b7b19089469c470429f0a51848f28fb88ac771aee375c1","type":"sysupgrade"}],"supported_devices":["pine64,rockpro64"],"titles":[{"model":"RockPro64","vendor":"Pine64"}]}},"target":"rockchip/armv8","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/ath25/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":[],"image_prefix":"openwrt-19.07.4-ath25-generic","images":[{"name":"openwrt-19.07.4-ath25-generic-kernel.lzma","sha256":"cc83db165bc25330c6269d7e9d8beaebdb3687078c8618c0b27ecd27cbe2a9b4","type":"kernel"},{"name":"openwrt-19.07.4-ath25-generic-kernel.gz","sha256":"07e3bba19543dc9a148256810819859dc894a35b934afbdf76c403409ef70aa5","type":"kernel"},{"name":"openwrt-19.07.4-ath25-generic-squashfs-sysupgrade.bin","sha256":"7575aa1334ea6f416a77b0f4a71917f1d4ab2a28ce6ed862b27f277a21dea10a","type":"sysupgrade"},{"name":"openwrt-19.07.4-ath25-generic-squashfs-rootfs.bin","sha256":"8789093d27d99e0990140d952eb4f601a6d422a69775f0edcdd4d359059c591e","type":"rootfs"},{"name":"openwrt-19.07.4-ath25-generic-kernel.elf","sha256":"4b1428b5e7eb1e7995e17411bcb23ef1d1131f915fedd1fc90729f70635b32e8","type":"kernel"}],"supported_devices":[],"titles":[{"title":"Generic Images"}]},"ubnt2-pico2":{"device_packages":[],"image_prefix":"openwrt-19.07.4-ath25-ubnt2-pico2","images":[{"name":"openwrt-19.07.4-ath25-ubnt2-pico2-squashfs-sysupgrade.bin","sha256":"994a183803d15de7df7d82fea61ee6bbcfa108d2b82bba0ded0d39f22e6566eb","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti XS2-8"}]}},"target":"ath25/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/apm821xx/sata/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug","badblocks","block-mount","e2fsprogs","kmod-dm","kmod-md-mod","partx-utils","mkf2fs","f2fsck","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"wd_mybooklive":{"device_packages":["kmod-usb-dwc2","kmod-usb-ledtrig-usbport","kmod-usb-storage","kmod-fs-vfat","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.10-apm821xx-sata-wd_mybooklive","images":[{"filesystem":"ext4","name":"openwrt-19.07.10-apm821xx-sata-wd_mybooklive-ext4-sysupgrade.img.gz","sha256":"64dfda6c0ff98d13f24a4f1d461ccbbb580dc06f892c509784dd6a931160f0ec","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-19.07.10-apm821xx-sata-wd_mybooklive-ext4-factory.img.gz","sha256":"71eacad2d4d08d413c1dcae4b139e762d563a66f0295154c2446d741e6fe47e3","type":"factory"},{"filesystem":"squashfs","name":"openwrt-19.07.10-apm821xx-sata-wd_mybooklive-squashfs-sysupgrade.img.gz","sha256":"6a44457e068ef847ee98282f4bd1d2ca98cd491ae47e55f229a8abde66b768e2","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-apm821xx-sata-wd_mybooklive-squashfs-factory.img.gz","sha256":"d68411e66d403265c209dd3efb13b5b6551b0abbfddfae4a0811399a19f26c7d","type":"factory"}],"supported_devices":["wd,mybooklive","mbl","wd,mybooklive-duo"],"titles":[{"title":"Western Digital My Book Live Series (Single + Duo)"}]}},"source_date_epoch":1650114812,"target":"apm821xx/sata","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/apm821xx/sata/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug","badblocks","block-mount","e2fsprogs","kmod-dm","kmod-md-mod","partx-utils","mkf2fs","f2fsck","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"wd_mybooklive":{"device_packages":["kmod-usb-dwc2","kmod-usb-ledtrig-usbport","kmod-usb-storage","kmod-fs-vfat","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-apm821xx-sata-wd_mybooklive","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-apm821xx-sata-wd_mybooklive-squashfs-sysupgrade.img.gz","sha256":"602671f61919f0d66d327461a3b63dbcc1c4cc75e9e922249f6c124f08299cec","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-apm821xx-sata-wd_mybooklive-squashfs-factory.img.gz","sha256":"e028ff6699268d30dc96d0c0afa4e44b305035dd9e22c674557d79e17e5314ac","type":"factory"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-apm821xx-sata-wd_mybooklive-ext4-factory.img.gz","sha256":"4c2b079f63f0a0b52f81edad71dbd0da35c597b7227e59a9dcaec98f1557a7b4","type":"factory"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-apm821xx-sata-wd_mybooklive-ext4-sysupgrade.img.gz","sha256":"3b1e43fa97597b1215f9aa4963ab25d1f90e6b81d27a822738ef6e57e4d7dda4","type":"sysupgrade"}],"supported_devices":["wd,mybooklive","mbl","wd,mybooklive-duo"],"titles":[{"title":"Western Digital My Book Live Series (Single + Duo)"}]}},"target":"apm821xx/sata","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/ath25/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-wolfssl","kmod-ath5k","swconfig","kmod-gpio-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","wpad-basic-wolfssl","kmod-ath5k","swconfig","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":[],"image_prefix":"openwrt-ath25-generic","images":[{"name":"openwrt-ath25-generic-kernel.lzma","sha256":"dd043a21029b4c2e2460490a062cf6e9ed77736b44fe3665ca1a07a2eed7067c","type":"kernel"},{"name":"openwrt-ath25-generic-kernel.gz","sha256":"8f45625cf8f361be2dfa0bbd44ec40170b6cf613a707bef0ed05f9c22d6e778f","type":"kernel"},{"name":"openwrt-ath25-generic-squashfs-sysupgrade.bin","sha256":"a2bbf4a316506860ede85cd678270282101a32c05b445aa41cf49ee7db844078","type":"sysupgrade"},{"name":"openwrt-ath25-generic-squashfs-rootfs.bin","sha256":"6639cd2363f449397a85cdb91d735ed1c59ec96687d8708559b4f748dd1df30c","type":"rootfs"},{"name":"openwrt-ath25-generic-kernel.elf","sha256":"faea707669bb6e54a10a441dcf837ad3c2dd231689ed9711c5125b7233b49ee6","type":"kernel"}],"supported_devices":[],"titles":[{"model":"Generic AR2xxx board","vendor":"Atheros"}]},"ubnt_picostation-2":{"device_packages":[],"image_prefix":"openwrt-ath25-ubnt_picostation-2","images":[{"name":"openwrt-ath25-ubnt_picostation-2-squashfs-sysupgrade.bin","sha256":"48911c5e9be3c10ee72686d2111095cb2c81f275ed9c03d0328121ff064f8bf4","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"Picostation 2 (XS2-8)","vendor":"Ubiquiti"}]}},"target":"ath25/generic","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/x86/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"i386_pentium4","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-3c59x","kmod-8139too","kmod-e100","kmod-e1000","kmod-natsemi","kmod-ne2k-pci","kmod-pcnet32","kmod-r8169","kmod-sis900","kmod-tg3","kmod-via-rhine","kmod-via-velocity","kmod-forcedeth"],"image_prefix":"openwrt-x86-generic-generic","images":[{"name":"openwrt-x86-generic-generic-ext4-combined-efi.img.gz","sha256":"8c2133d212085bb24fa89837e5fada601c229f2fec1d6f8b49e2426d173cd223","type":"combined-efi"},{"name":"openwrt-x86-generic-generic-ext4-rootfs.img.gz","sha256":"3134e77b7bfbc4e8b0858ff5fcc4affa2d87fb8c09fc70c8d1e1687294e668db","type":"rootfs"},{"name":"openwrt-x86-generic-generic-ext4-combined.img.gz","sha256":"7dbfbc2b142e07e97948e5ddba283a32b6010b2431405a1b942b6229d1adec98","type":"combined"},{"name":"openwrt-x86-generic-generic-squashfs-combined.img.gz","sha256":"20b0cd3f93e1e3ccea69ea49009e8d95c2007f9c0701f33531e4fedb4cdaa0ef","type":"combined"},{"name":"openwrt-x86-generic-generic-squashfs-rootfs.img.gz","sha256":"47701fc5dd111446d505e2cf0d08fadf604a37fe232a37892073a451bd943fbb","type":"rootfs"},{"name":"openwrt-x86-generic-generic-squashfs-combined-efi.img.gz","sha256":"15093afe9950b9ea464c3a9ff4ed9dd61dc6cf2de8ec10c072ddf89d5629ebbe","type":"combined-efi"}],"supported_devices":[],"titles":[{"title":"Generic x86"}]}},"target":"x86/generic","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/x86/legacy/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"i386_pentium-mmx","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","partx-utils","mkf2fs","e2fsprogs","kmod-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-3c59x","kmod-8139too","kmod-e100","kmod-e1000","kmod-natsemi","kmod-ne2k-pci","kmod-pcnet32","kmod-r8169","kmod-sis900","kmod-tg3","kmod-via-rhine","kmod-via-velocity","kmod-forcedeth"],"image_prefix":"openwrt-x86-legacy-generic","images":[{"name":"openwrt-x86-legacy-generic-squashfs-combined-efi.img.gz","sha256":"af3233beebef229a45e775102ea98046503fd363d03f6be2b65582020018a785","type":"combined-efi"},{"name":"openwrt-x86-legacy-generic-squashfs-rootfs.img.gz","sha256":"fa16aafb5fd7f68e7837f2ac0efdd25f7ff6ad01493c9f5d7295d8513440e558","type":"rootfs"},{"name":"openwrt-x86-legacy-generic-ext4-combined.img.gz","sha256":"592e727a9b9d437774f514cc234c8015cf8a8387ef6aeb9c581f2ca36de0cdad","type":"combined"},{"name":"openwrt-x86-legacy-generic-ext4-combined-efi.img.gz","sha256":"bbe58e6a816d456ffab9e3ef4743b9af2d68fee25abd7d8a6c59dc800e38289f","type":"combined-efi"},{"name":"openwrt-x86-legacy-generic-ext4-rootfs.img.gz","sha256":"30c1cec3d7da08ddb1d70f51934244683121e95e3430ca3015dacd574617305b","type":"rootfs"},{"name":"openwrt-x86-legacy-generic-squashfs-combined.img.gz","sha256":"da5cc29705f60c692a16b644f430c87fc79f5d92d26d2104a423fdb018cb1f4e","type":"combined"}],"supported_devices":[],"titles":[{"title":"Generic x86/legacy"}]}},"target":"x86/legacy","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /.github/workflows/static-main.yml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Deploy static content to Pages 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 20 | concurrency: 21 | group: "pages-main" 22 | cancel-in-progress: false 23 | 24 | jobs: 25 | # Single deploy job since we're just deploying 26 | deploy: 27 | environment: 28 | name: github-pages 29 | url: ${{ steps.deployment.outputs.page_url }} 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v4 34 | 35 | - name: Setup Pages 36 | uses: actions/configure-pages@v4 37 | 38 | - name: Setup config.json 39 | run: | 40 | cd www/ 41 | sed -i "s;%GIT_VERSION%;$(git describe --tags);" index.js 42 | sed -i 's;image_url: "../misc",;image_url: "https://downloads.openwrt.org",;' config.js 43 | sed -i "s; //show_snapshots; show_snapshots;" config.js 44 | sed -i "s; versions; // versions;" config.js 45 | 46 | - name: Upload artifact 47 | uses: actions/upload-pages-artifact@v3 48 | with: 49 | # Upload entire repository 50 | path: "www/" 51 | 52 | - name: Deploy to GitHub Pages 53 | id: deployment 54 | uses: actions/deploy-pages@v4 55 | -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/at91/sama7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_vfpv4","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-at91-udc","kmod-nft-offload","kmod-usb-gadget-eth","kmod-usb-ohci","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"microchip_sama7g5-ek":{"device_packages":[],"image_prefix":"openwrt-23.05.4-at91-sama7-microchip_sama7g5-ek","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-at91-sama7-microchip_sama7g5-ek-ext4-root.ubi","sha256":"21aaf8feaeba459978a2cb95f50339c0c4935ad59e214735bb4ca62443c852a4","sha256_unsigned":"21aaf8feaeba459978a2cb95f50339c0c4935ad59e214735bb4ca62443c852a4","type":"root"},{"filesystem":"squashfs","name":"openwrt-23.05.4-at91-sama7-microchip_sama7g5-ek-squashfs-root.ubi","sha256":"cf0cb9198796ad356f1ae70dd14cd10e624ccfb74cad64222dda593ccc8f25d9","sha256_unsigned":"cf0cb9198796ad356f1ae70dd14cd10e624ccfb74cad64222dda593ccc8f25d9","type":"root"},{"filesystem":"ubifs","name":"openwrt-23.05.4-at91-sama7-microchip_sama7g5-ek-ubifs-root.ubi","sha256":"539aa97c30a15b63917faec8adfedff08a5ab55f6c802a61cc8518352fee4ee7","sha256_unsigned":"539aa97c30a15b63917faec8adfedff08a5ab55f6c802a61cc8518352fee4ee7","type":"root"},{"filesystem":"ext4","name":"openwrt-23.05.4-at91-sama7-microchip_sama7g5-ek-ext4-sdcard.img.gz","sha256":"3e2dc2d7e9e51a9795ad92cf2904224369ebd0a35559e325a1efbe940c090238","sha256_unsigned":"3e2dc2d7e9e51a9795ad92cf2904224369ebd0a35559e325a1efbe940c090238","type":"sdcard"}],"supported_devices":["microchip,sama7g5ek"],"titles":[{"model":"SAMA7G5-EK","vendor":"Microchip"}]}},"source_date_epoch":1721081658,"target":"at91/sama7","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/ipq40xx/chromium/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["ath10k-board-qca4019","ath10k-firmware-qca4019-ct","base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-ath10k-ct","kmod-gpio-button-hotplug","kmod-leds-gpio","kmod-nft-offload","kmod-usb-dwc3","kmod-usb-dwc3-qcom","kmod-usb3","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-mbedtls"],"metadata_version":1,"profiles":{"google_wifi":{"device_packages":["partx-utils","mkf2fs","e2fsprogs","kmod-fs-ext4","kmod-fs-f2fs","kmod-google-firmware","kmod-ramoops"],"image_prefix":"openwrt-23.05.4-ipq40xx-chromium-google_wifi","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-ipq40xx-chromium-google_wifi-initramfs-fit-zImage.itb.vboot","sha256":"daac7b0889d02d448b1d9131fe5597b55ba587cee8ab1997ea75300ff6159dbf","sha256_unsigned":"daac7b0889d02d448b1d9131fe5597b55ba587cee8ab1997ea75300ff6159dbf","type":"kernel"},{"filesystem":"squashfs","name":"openwrt-23.05.4-ipq40xx-chromium-google_wifi-squashfs-factory.bin","sha256":"88965d4edcf9f26ca3e09a1fe6caa4ed6c37cba8cd849bb6affe7325dc4eaccf","sha256_unsigned":"88965d4edcf9f26ca3e09a1fe6caa4ed6c37cba8cd849bb6affe7325dc4eaccf","type":"factory"},{"filesystem":"squashfs","name":"openwrt-23.05.4-ipq40xx-chromium-google_wifi-squashfs-sysupgrade.bin","sha256":"7fc6d990cd8dc7ba390554e59d1733869ab509357ebce62ad48038c84e532eab","sha256_unsigned":"c1fb9b00e85afc280edead29cf03e0710462fc57a8abaca45ad365f8fd2c3a8c","type":"sysupgrade"}],"supported_devices":["google,wifi"],"titles":[{"model":"WiFi (Gale)","vendor":"Google"}]}},"source_date_epoch":1721081658,"target":"ipq40xx/chromium","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/brcm2708/bcm2710/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-3":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.4-brcm2708-bcm2710-rpi-3","images":[{"name":"openwrt-19.07.4-brcm2708-bcm2710-rpi-3-ext4-sysupgrade.img.gz","sha256":"84109f781a7649dc12e1d9104956c9efe4d053627d19e41218c1fc5dcfa88715","type":"sysupgrade"},{"name":"openwrt-19.07.4-brcm2708-bcm2710-rpi-3-squashfs-factory.img.gz","sha256":"b27904b0225fc3b09dfbc0e455ae9d856576d1b5165093c7a95d59b54ef2492b","type":"factory"},{"name":"openwrt-19.07.4-brcm2708-bcm2710-rpi-3-squashfs-sysupgrade.img.gz","sha256":"faade483fb8274fe565f4744563c275f7486cc487298203f2f6b0c051fb23682","type":"sysupgrade"},{"name":"openwrt-19.07.4-brcm2708-bcm2710-rpi-3-ext4-factory.img.gz","sha256":"fe28c3ab06691e4ada56b124825e14cef7bec2a341d51d80faf3466e8edab418","type":"factory"}],"supported_devices":["rpi-3-b","rpi-3-b-plus","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 3B/3B+"}]}},"target":"brcm2708/bcm2710","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /www/langs/zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-message": "輸入裝置的名稱或型號,然後選擇推薦的穩定版本或夜間\"快照\"版本。", 3 | "tr-not-found": "未找到型號!", 4 | "tr-load": "下載適用於您裝置的OpenWrt韌體", 5 | "tr-title": "OpenWrt韌體選擇器", 6 | "tr-version-build": "關於此版本", 7 | "tr-custom-build": "自訂版本", 8 | "tr-customize": "自訂已安裝套件包及/或首次啟動指令碼", 9 | "tr-request-build": "要求建置", 10 | "tr-model": "型號", 11 | "tr-target": "平台", 12 | "tr-version": "版本", 13 | "tr-date": "日期", 14 | "tr-custom-downloads": "自訂下載", 15 | "tr-dtb-help": "裝置樹blob。此檔案設定硬體的Linux核心。", 16 | "tr-uboot-help": "引導程式映像檔。在啟動初期載入作業系統的低階軟體。", 17 | "tr-eva-help": "含有OpenWrt和引導程式的映像檔。", 18 | "tr-sysupgrade-help": "使用Sysupgrade映像檔來更新已經執行OpenWrt的路由器。該映像檔可以與LuCI web介面或終端一起使用。", 19 | "tr-kernel-help": "Linux核心作為單獨的映像檔。", 20 | "tr-downloads": "下載映像檔", 21 | "tr-initramfs-help": "具有最小檔案系統的Linux核心。 對於首次安裝或復原很有用。", 22 | "tr-rootfs-help": "rootfs作為單獨的映像檔。", 23 | "tr-sdcard-help": "SD卡專用映像檔。", 24 | "tr-tftp-help": "TFTP映像檔用於透過引導程式的TFTP方法來刷入裝置。", 25 | "tr-feedback-link": "意見回饋", 26 | "tr-server-link": "所有下載", 27 | "tr-check-again": "請在5秒後再次檢查…", 28 | "tr-other-help": "其他映像檔類型。", 29 | "tr-build-successful": "建置成功", 30 | "tr-build-failed": "建置失敗", 31 | "tr-request-image": "請求映像檔", 32 | "tr-cpximg-help": "與原廠韌體中的sysupgrade或內建的cpximg載入程式一起使用。", 33 | "tr-factory-help": "第一次刷OpenWrt時在原廠狀態下刷入。通常您可以透過原廠韌體的web介面執行此操作。", 34 | "tr-links": "連結", 35 | "tr-build-size": "所選組件超出裝置儲存空間", 36 | "tr-download-imagebuilder": "下載ImageBuilder檔案中", 37 | "tr-unpack-imagebuilder": "設定ImageBuilder", 38 | "tr-calculate-packages-hash": "驗證套件選擇", 39 | "tr-building-image": "產生韌體映像檔", 40 | "tr-init": "已收到建置請求", 41 | "tr-packages": "已安裝的套件", 42 | "tr-defaults": "首次啟動時執行的指令碼 (uci-defaults)", 43 | "tr-latest-releases": "最新", 44 | "tr-validate-manifest": "驗證清單", 45 | "tr-container-setup": "設定容器" 46 | } 47 | -------------------------------------------------------------------------------- /www/langs/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-server-link": "所有文件", 3 | "tr-not-found": "未找到型号!", 4 | "tr-load": "下载适用于您设备的 OpenWrt 固件", 5 | "tr-title": "OpenWrt 固件选择器", 6 | "tr-message": "输入设备的名称或型号,然后选择一个稳定或快照版本。", 7 | "tr-version-build": "关于此构建", 8 | "tr-custom-build": "自定义构建", 9 | "tr-customize": "自定义预安装软件包和/或首次启动脚本", 10 | "tr-request-build": "请求构建", 11 | "tr-model": "型号", 12 | "tr-target": "平台", 13 | "tr-version": "版本", 14 | "tr-date": "日期", 15 | "tr-downloads": "下载映像", 16 | "tr-custom-downloads": "自定义下载", 17 | "tr-factory-help": "首次刷机时,使用 Factory 映像以刷入 OpenWrt。通常您可以在原厂固件的 Web 界面中完成此操作。", 18 | "tr-sysupgrade-help": "使用 Sysupgrade 映像以更新现有运行 OpenWrt 的设备。该映像可以在 LuCI 界面或终端中使用。", 19 | "tr-kernel-help": "独立的 Linux 内核映像。", 20 | "tr-initramfs-help": "集成最小文件系统的 Linux 内核。适用于首次安装或故障恢复。", 21 | "tr-rootfs-help": "独立的 rootfs 映像。", 22 | "tr-sdcard-help": "适用于安装至 SD 卡的映像文件。", 23 | "tr-tftp-help": "适用于 Bootloader TFTP 模式刷入的映像文件。", 24 | "tr-other-help": "其他映像类型。", 25 | "tr-build-successful": "构建成功", 26 | "tr-build-failed": "构建失败", 27 | "tr-request-image": "获取映像", 28 | "tr-check-again": "请在 5 秒后再次检查…", 29 | "tr-feedback-link": "反馈", 30 | "tr-dtb-help": "预编译设备树。此文件用于在 Linux 内核中定义硬件信息。", 31 | "tr-uboot-help": "引导程序映像。 用于启动时加载操作系统的底层软件。", 32 | "tr-cpximg-help": "用于在原厂固件中系统升级或内置的 cpximg 加载器。", 33 | "tr-eva-help": "封入固件及引导程序的映像文件。", 34 | "tr-links": "链接", 35 | "tr-build-size": "所选软件包超出设备存储容量", 36 | "tr-init": "已收到构建请求", 37 | "tr-download-imagebuilder": "下载 ImageBuilder 存档中", 38 | "tr-unpack-imagebuilder": "配置 ImageBuilder", 39 | "tr-calculate-packages-hash": "验证包选择", 40 | "tr-building-image": "正在生成固件映像", 41 | "tr-packages": "预安装的软件包", 42 | "tr-defaults": "首次启动时运行的脚本(uci-defaults)", 43 | "tr-latest-releases": "最新", 44 | "tr-validate-manifest": "验证清单", 45 | "tr-container-setup": "设置容器" 46 | } 47 | -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/brcm2708/bcm2708/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm1176jzf-s_vfp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.4-brcm2708-bcm2708-rpi","images":[{"name":"openwrt-19.07.4-brcm2708-bcm2708-rpi-ext4-sysupgrade.img.gz","sha256":"c7ea3abc317ad6f425062856170cb8448bbdbe7ff00c43ab06a5960bc8d15a05","type":"sysupgrade"},{"name":"openwrt-19.07.4-brcm2708-bcm2708-rpi-squashfs-factory.img.gz","sha256":"39138c6b7898ec88b77da7b77bd431f5279d724aaa9cda79cecbd135d12db74d","type":"factory"},{"name":"openwrt-19.07.4-brcm2708-bcm2708-rpi-squashfs-sysupgrade.img.gz","sha256":"f53dc49520e1b361b10f4bacee5587771ed4a5886e6e61e010125631a1a42004","type":"sysupgrade"},{"name":"openwrt-19.07.4-brcm2708-bcm2708-rpi-ext4-factory.img.gz","sha256":"2c269377abb155261c7b35305de7fec1e9b7132e73a615a62b68e2a0535d0eab","type":"factory"}],"supported_devices":["rpi-b","rpi-b-plus","rpi-cm","rpi-zero","rpi-zero-w","raspberrypi,model-b","raspberrypi,model-b-plus","raspberrypi,model-b-rev2","raspberrypi,compute-module","raspberrypi,compute-module-1","raspberrypi,model-zero","raspberrypi,model-zero-w"],"titles":[{"title":"Raspberry Pi B/B+/CM/Zero/ZeroW"}]}},"target":"brcm2708/bcm2708","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/brcm2708/bcm2709/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-2":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi2","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.4-brcm2708-bcm2709-rpi-2","images":[{"name":"openwrt-19.07.4-brcm2708-bcm2709-rpi-2-ext4-sysupgrade.img.gz","sha256":"1d8064b756de57af58adc3f4d90b477feea513a3dbe06b2c6e0b822ac0a60203","type":"sysupgrade"},{"name":"openwrt-19.07.4-brcm2708-bcm2709-rpi-2-ext4-factory.img.gz","sha256":"1dbe9eb7843e747a001289008f3efecc8c5ac76406f8d5aff73af87da1adf792","type":"factory"},{"name":"openwrt-19.07.4-brcm2708-bcm2709-rpi-2-squashfs-factory.img.gz","sha256":"f45d417e562d27f9de61eefed4a8d0456990bf62b12b58a672338dbf10a93cd4","type":"factory"},{"name":"openwrt-19.07.4-brcm2708-bcm2709-rpi-2-squashfs-sysupgrade.img.gz","sha256":"b4df439ce291cc3d9fbcfbf561ffb0d0f67048cac234606300caea207235720c","type":"sysupgrade"}],"supported_devices":["rpi-2-b","rpi-3-b","rpi-3-b-plus","rpi-cm","raspberrypi,2-model-b","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 2B/3B/3B+/3CM"}]}},"target":"brcm2708/bcm2709","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/ath25/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":[],"image_prefix":"openwrt-19.07.10-ath25-generic","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-generic-kernel.lzma","sha256":"2d47514b5c486b80f4bd58ba1c61eb4462ac76be43faa2bd7294720037e2b93a","type":"kernel"},{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-generic-kernel.gz","sha256":"24149da6d8eff11ea04305cfc18eb6a6d57e5b5dbdb154e1af8fb9f4ffda586d","type":"kernel"},{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-generic-squashfs-sysupgrade.bin","sha256":"9aad29a844aed277fac16ac7613e181e1b8119b9c8e80ad68677e35178a479db","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-generic-squashfs-rootfs.bin","sha256":"8966031dc8fa5fa437c549d0a0f239e9bcd72b1b057cd9340a5ae9209582a5dc","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-generic-kernel.elf","sha256":"3ad404ce1d4bb17df51456c7b3e776aa24264b3598312f08eff5e5e00721ad77","type":"kernel"}],"supported_devices":[],"titles":[{"title":"Generic Images"}]},"ubnt2-pico2":{"device_packages":[],"image_prefix":"openwrt-19.07.10-ath25-ubnt2-pico2","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-ath25-ubnt2-pico2-squashfs-sysupgrade.bin","sha256":"c48e898f45803c75c3665483451ec1f4e5b932383c8d17601c9710dc243ebf94","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti XS2-8"}]}},"source_date_epoch":1650114812,"target":"ath25/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/zynq/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos"],"metadata_version":1,"profiles":{"avnet_zynq-zed":{"device_packages":[],"image_prefix":"openwrt-19.07.4-zynq-avnet_zynq-zed","images":[{"name":"openwrt-19.07.4-zynq-avnet_zynq-zed-squashfs-sdcard.img.gz","sha256":"89114ea0636b5b1bfacd5564bd92f20c13657880ab6528047d8bb0a74b210fee","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Avnet ZedBoard"}]},"digilent_zynq-zybo":{"device_packages":[],"image_prefix":"openwrt-19.07.4-zynq-digilent_zynq-zybo","images":[{"name":"openwrt-19.07.4-zynq-digilent_zynq-zybo-squashfs-sdcard.img.gz","sha256":"179f62e07c9b590dd37dfcbb6d8cc54962cc0e4f28290358f18ff4a78b76f422","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo"}]},"digilent_zynq-zybo-z7":{"device_packages":[],"image_prefix":"openwrt-19.07.4-zynq-digilent_zynq-zybo-z7","images":[{"name":"openwrt-19.07.4-zynq-digilent_zynq-zybo-z7-squashfs-sdcard.img.gz","sha256":"22655bd879d33269ede0340949314cfbab4b205a8381c7d5719a99dd3637fe59","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo Z7"}]},"xlnx_zynq-zc702":{"device_packages":["kmod-can","kmod-can-xilinx-can"],"image_prefix":"openwrt-19.07.4-zynq-xlnx_zynq-zc702","images":[{"name":"openwrt-19.07.4-zynq-xlnx_zynq-zc702-squashfs-sdcard.img.gz","sha256":"5a25a351c445e71023ac8a52ebf2b16e558272c6bd83e68234dcef9c6356c74a","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Xilinx ZC702"}]}},"target":"zynq/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/bcm27xx/bcm2708/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm1176jzf-s_vfp","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi":{"device_packages":["cypress-firmware-43430-sdio","cypress-nvram-43430-sdio-rpi-zero-w","kmod-brcmfmac","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-bcm27xx-bcm2708-rpi","images":[{"name":"openwrt-bcm27xx-bcm2708-rpi-squashfs-sysupgrade.img.gz","sha256":"1085960b059bfeefcfe93f5da69f12a938189484dfb8bed707a21e8df6a69676","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2708-rpi-ext4-sysupgrade.img.gz","sha256":"d706102c1175e55aef74b54b183d36fe65799255931a1a77937ff3c748745f47","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2708-rpi-squashfs-factory.img.gz","sha256":"ddc6a2d114ab8de76c5b3ce09c37a041aba073ba35049b12008bd8c2b9a90e41","type":"factory"},{"name":"openwrt-bcm27xx-bcm2708-rpi-ext4-factory.img.gz","sha256":"53e2289ed49ef167b91fe7ed323aa4915a059a3fdc58d2fe9c96b7b672b450bc","type":"factory"}],"supported_devices":["rpi-b","rpi-b-plus","rpi-cm","rpi-zero","rpi-zero-w","raspberrypi,model-b","raspberrypi,model-b-plus","raspberrypi,model-b-rev2","raspberrypi,compute-module","raspberrypi,compute-module-1","raspberrypi,model-zero","raspberrypi,model-zero-w"],"titles":[{"model":"B/B+/CM/Zero/ZeroW","vendor":"Raspberry Pi"}]}},"target":"bcm27xx/bcm2708","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/bcm27xx/bcm2710/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-3":{"device_packages":["cypress-firmware-43430-sdio","cypress-nvram-43430-sdio-rpi-3b","cypress-firmware-43455-sdio","cypress-nvram-43455-sdio-rpi-3b-plus","kmod-brcmfmac","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-bcm27xx-bcm2710-rpi-3","images":[{"name":"openwrt-bcm27xx-bcm2710-rpi-3-squashfs-sysupgrade.img.gz","sha256":"1bfcfdc455c1142718f81a8ab7a532c32e7a2d8d1e9630fd8329fd155f5e834d","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2710-rpi-3-squashfs-factory.img.gz","sha256":"62a5dbeff06973514170efc60d1f8e8e354161134d70bf4ac082e2ea61cb8930","type":"factory"},{"name":"openwrt-bcm27xx-bcm2710-rpi-3-ext4-factory.img.gz","sha256":"8f025b2216c2ab403dfd648426acbb92184e9e2c0c0268dae4ab3e9a545ad470","type":"factory"},{"name":"openwrt-bcm27xx-bcm2710-rpi-3-ext4-sysupgrade.img.gz","sha256":"b1dc3823b238c5d8d75fd07ccdff99b67e5d813acfc22d1dfd1c16aa3c4ea8c0","type":"sysupgrade"}],"supported_devices":["rpi-3-b","rpi-3-b-plus","raspberrypi,2-model-b-rev2","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"model":"2B-1.2/3B/3B+/3CM","vendor":"Raspberry Pi"}]}},"target":"bcm27xx/bcm2710","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/zynq/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos"],"metadata_version":1,"profiles":{"avnet_zynq-zed":{"device_packages":[],"image_prefix":"openwrt-zynq-avnet_zynq-zed","images":[{"name":"openwrt-zynq-avnet_zynq-zed-squashfs-sdcard.img.gz","sha256":"4e3a0b5ba5d3319aae955384023c5c104cbba555ebe747107d1f7ef55c4ea7d5","type":"sdcard"}],"supported_devices":[],"titles":[{"model":"ZedBoard","vendor":"Avnet"}]},"digilent_zynq-zybo":{"device_packages":[],"image_prefix":"openwrt-zynq-digilent_zynq-zybo","images":[{"name":"openwrt-zynq-digilent_zynq-zybo-squashfs-sdcard.img.gz","sha256":"4ba80c174b9af334dd95159a9308bc50c437ee07fabe5a0bfb69dd775966dd85","type":"sdcard"}],"supported_devices":[],"titles":[{"model":"Zybo","vendor":"Digilent"}]},"digilent_zynq-zybo-z7":{"device_packages":[],"image_prefix":"openwrt-zynq-digilent_zynq-zybo-z7","images":[{"name":"openwrt-zynq-digilent_zynq-zybo-z7-squashfs-sdcard.img.gz","sha256":"a12755a41a8cd9b55a49a319dc0cf5a8aaac07a3c3fbd821f50a53596dd5c043","type":"sdcard"}],"supported_devices":[],"titles":[{"model":"Zybo Z7","vendor":"Digilent"}]},"xlnx_zynq-zc702":{"device_packages":["kmod-can","kmod-can-xilinx-can"],"image_prefix":"openwrt-zynq-xlnx_zynq-zc702","images":[{"name":"openwrt-zynq-xlnx_zynq-zc702-squashfs-sdcard.img.gz","sha256":"c8515fc8a934dfa5a7e566db60b1d0b5bbad5977d166b93341eb48c2a05dd476","type":"sdcard"}],"supported_devices":[],"titles":[{"model":"ZC702","vendor":"Xilinx"}]}},"target":"zynq/generic","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/ath25/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic-squashfs-rootfs.bin","sha256":"3739b862ccbccac091d82997d9b351122ca23fa85a8ebf0fac08b63be1b1521b","type":"rootfs"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic-squashfs-sysupgrade.bin","sha256":"364450baf7badb4398ed48e8417e2fb53fafd0a58b8feeee836aa4e88593c8c4","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic-kernel.lzma","sha256":"cc83db165bc25330c6269d7e9d8beaebdb3687078c8618c0b27ecd27cbe2a9b4","type":"kernel"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic-kernel.gz","sha256":"07e3bba19543dc9a148256810819859dc894a35b934afbdf76c403409ef70aa5","type":"kernel"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-generic-kernel.elf","sha256":"4b1428b5e7eb1e7995e17411bcb23ef1d1131f915fedd1fc90729f70635b32e8","type":"kernel"}],"supported_devices":[],"titles":[{"title":"Generic Images"}]},"ubnt2-pico2":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-ubnt2-pico2","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-ath25-ubnt2-pico2-squashfs-sysupgrade.bin","sha256":"7a920a9ccde18eea46eb93be9de1ab717d266609513e75c470535de62150ae22","type":"sysupgrade"}],"supported_devices":[],"titles":[{"title":"Ubiquiti XS2-8"}]}},"target":"ath25/generic","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/brcm2708/bcm2710/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-3":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.10-brcm2708-bcm2710-rpi-3","images":[{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2710-rpi-3-ext4-sysupgrade.img.gz","sha256":"318c6757dd43858e0904b6b4895f87ee711e6616261e279c9eab62235d9525f3","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2710-rpi-3-ext4-factory.img.gz","sha256":"7dfdfbd17fed8f06891f3361fb664479d9483b0bfd8b5f63d58139f4e8e9aaca","type":"factory"},{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2710-rpi-3-squashfs-sysupgrade.img.gz","sha256":"4b5ef8a82a6819cc88b91a1c93e43fd3cfbf67ba831fb110bf699cda39f64ea3","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2710-rpi-3-squashfs-factory.img.gz","sha256":"a23a10880629a3cf734bd193fdce4a0873440726d2fa1c7ed8da8aec071153ca","type":"factory"}],"supported_devices":["rpi-3-b","rpi-3-b-plus","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 3B/3B+"}]}},"source_date_epoch":1650114812,"target":"brcm2708/bcm2710","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/brcm2708/bcm2710/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-3":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-brcm2708-bcm2710-rpi-3","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-brcm2708-bcm2710-rpi-3-squashfs-factory.img.gz","sha256":"a5bd96954a1d4e60c12aaa34f3ef866e0571c8b9b179de52ff75bfd54ae1b5a0","type":"factory"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-brcm2708-bcm2710-rpi-3-squashfs-sysupgrade.img.gz","sha256":"b9725812d5a32794c8cc72eda2e71bde3c213a41a335aaa98cf465333ff3cd08","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-brcm2708-bcm2710-rpi-3-ext4-sysupgrade.img.gz","sha256":"a161d0be59fc588403cca74d33541b364191bde492bb9ac0b394605a50de3508","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-brcm2708-bcm2710-rpi-3-ext4-factory.img.gz","sha256":"a374aaa8734060ba2e1efa83b74e38e27b3250b617d0d1c6f808d754054f629c","type":"factory"}],"supported_devices":["rpi-3-b","rpi-3-b-plus","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 3B/3B+"}]}},"target":"brcm2708/bcm2710","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/brcm2708/bcm2708/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm1176jzf-s_vfp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.10-brcm2708-bcm2708-rpi","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2708-rpi-squashfs-sysupgrade.img.gz","sha256":"9cd02ca265cfbb7e307488432bb8982d61c4ab8e83a11bbce3baf908fa77eff8","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2708-rpi-squashfs-factory.img.gz","sha256":"6ea2ab6952e8e06737f6a57b0c833fb80ecc6de9d29f2cccf40e0779ffd72d34","type":"factory"},{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2708-rpi-ext4-sysupgrade.img.gz","sha256":"d9ae9d2a460a1f6a74dcfda8f27ed70f4495dd429dfdff628a9917e134aafaff","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2708-rpi-ext4-factory.img.gz","sha256":"728b80ab99b25e5fc765226b740b3339f9f0954e1bf2f46b79c896077809ea80","type":"factory"}],"supported_devices":["rpi-b","rpi-b-plus","rpi-cm","rpi-zero","rpi-zero-w","raspberrypi,model-b","raspberrypi,model-b-plus","raspberrypi,model-b-rev2","raspberrypi,compute-module","raspberrypi,compute-module-1","raspberrypi,model-zero","raspberrypi,model-zero-w"],"titles":[{"title":"Raspberry Pi B/B+/CM/Zero/ZeroW"}]}},"source_date_epoch":1650114812,"target":"brcm2708/bcm2708","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/brcm2708/bcm2709/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-2":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi2","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07.10-brcm2708-bcm2709-rpi-2","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2709-rpi-2-squashfs-sysupgrade.img.gz","sha256":"adc177e246320dae20e362ecc1c5a971e47964f2374bdd8613ef000ea3142a5c","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-brcm2708-bcm2709-rpi-2-squashfs-factory.img.gz","sha256":"747c2fab1a031a954c1f1e789f8113f01444038055a48ad91fbc5bab4e456c10","type":"factory"},{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2709-rpi-2-ext4-sysupgrade.img.gz","sha256":"ae4136e0e1011d1becacefff1287c11046a3a05da4cbb76378c37cfe7a19c612","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-19.07.10-brcm2708-bcm2709-rpi-2-ext4-factory.img.gz","sha256":"0fcd17d79e95fb9b0db76459e5da1eb66d774f415136d5bfade60b43a55f76f3","type":"factory"}],"supported_devices":["rpi-2-b","rpi-3-b","rpi-3-b-plus","rpi-cm","raspberrypi,2-model-b","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 2B/3B/3B+/3CM"}]}},"source_date_epoch":1650114812,"target":"brcm2708/bcm2709","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/bcm27xx/bcm2709/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","bcm27xx-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-2":{"device_packages":["cypress-firmware-43430-sdio","cypress-nvram-43430-sdio-rpi-3b","cypress-firmware-43455-sdio","cypress-nvram-43455-sdio-rpi-3b-plus","cypress-nvram-43455-sdio-rpi-4b","kmod-brcmfmac","wpad-basic-wolfssl","iwinfo"],"image_prefix":"openwrt-bcm27xx-bcm2709-rpi-2","images":[{"name":"openwrt-bcm27xx-bcm2709-rpi-2-squashfs-sysupgrade.img.gz","sha256":"728a3b8ab347d9eb5231e11cd2ad6bb0d145df70aa2a2f23ffc85f4e46d02807","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2709-rpi-2-squashfs-factory.img.gz","sha256":"dbe1909812a7a29fe3d9269529a109aa77542051ebf4a9810b81caf2dc99879d","type":"factory"},{"name":"openwrt-bcm27xx-bcm2709-rpi-2-ext4-sysupgrade.img.gz","sha256":"d72c644cc980c2725def709266990c2b4d7bf519147f4e82cd741d0e80f8e2a3","type":"sysupgrade"},{"name":"openwrt-bcm27xx-bcm2709-rpi-2-ext4-factory.img.gz","sha256":"4e94fc43f5471f166b5a1d12039c350d2babc7cc147328c5b8d2ac73c98a0440","type":"factory"}],"supported_devices":["rpi-2-b","rpi-3-b","rpi-3-b-plus","rpi-cm","raspberrypi,2-model-b","raspberrypi,2-model-b-rev2","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3","raspberrypi,4-model-b"],"titles":[{"model":"2B/3B/3B+/3CM/4B","vendor":"Raspberry Pi"}]}},"target":"bcm27xx/bcm2709","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm47xx/legacy/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mipsel_mips32","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-gpio-button-hotplug","kmod-leds-gpio","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","nvram","odhcp6c","odhcpd-ipv6only","opkg","otrx","ppp","ppp-mod-pppoe","procd","procd-seccomp","swconfig","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-mbedtls"],"metadata_version":1,"profiles":{"dlink_dwl-3150":{"device_packages":[],"image_prefix":"openwrt-23.05.4-bcm47xx-legacy-dlink_dwl-3150","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm47xx-legacy-dlink_dwl-3150-squashfs.bin","sha256":"983e30c9af802b49c1eca91283386cdac764ba56116a0a35b857b7abdf9c3b84","sha256_unsigned":"983e30c9af802b49c1eca91283386cdac764ba56116a0a35b857b7abdf9c3b84","type":"bin"}],"supported_devices":["dlink,dwl-3150"],"titles":[{"model":"DWL-3150","vendor":"D-Link"}]},"standard":{"device_packages":[],"image_prefix":"openwrt-23.05.4-bcm47xx-legacy-standard","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm47xx-legacy-standard-squashfs.trx","sha256":"31034995d647f512f63b3c6356b6eb02ae43312794778a3ae8960e73907bffa7","sha256_unsigned":"31034995d647f512f63b3c6356b6eb02ae43312794778a3ae8960e73907bffa7","type":"trx"}],"supported_devices":["standard"],"titles":[{"model":"Image with LZMA loader and LZMA compressed kernel","vendor":"Generic"}]},"standard-noloader-gz":{"device_packages":[],"image_prefix":"openwrt-23.05.4-bcm47xx-legacy-standard-noloader-gz","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm47xx-legacy-standard-noloader-gz-squashfs.trx","sha256":"7c793c03d3606d8c4874f94d270b08166310c24a7508393b13bb55ba02efb2ae","sha256_unsigned":"7c793c03d3606d8c4874f94d270b08166310c24a7508393b13bb55ba02efb2ae","type":"trx"}],"supported_devices":["standard-noloader-gz"],"titles":[{"model":"Image with gzipped kernel","vendor":"Generic"}]}},"source_date_epoch":1721081658,"target":"bcm47xx/legacy","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/brcm2708/bcm2708/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm1176jzf-s_vfp","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-board-rpi2","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2708-rpi","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2708-rpi-ext4-factory.img.gz","sha256":"9e1ce7d7a2116f68654baa0855ef8b9385bcf7fb4e6f3e330a141f0d57091983","type":"factory"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2708-rpi-ext4-sysupgrade.img.gz","sha256":"579bb5af759d695206406ed4d09ca6e96d84dc40edf442aea74faea90e6afd0b","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2708-rpi-squashfs-factory.img.gz","sha256":"308aa80003199f23059acd66a53193b8ead2b7d5f78763ca2baa31cf9a4e4f30","type":"factory"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2708-rpi-squashfs-sysupgrade.img.gz","sha256":"efc1aea3ff6a8b807e33d97c4f69c7f8847fa9f0e93197657a5e1e1b67b1d2af","type":"sysupgrade"}],"supported_devices":["rpi-b","rpi-b-plus","rpi-cm","rpi-zero","rpi-zero-w","raspberrypi,model-b","raspberrypi,model-b-plus","raspberrypi,model-b-rev2","raspberrypi,compute-module","raspberrypi,compute-module-1","raspberrypi,model-zero","raspberrypi,model-zero-w"],"titles":[{"title":"Raspberry Pi B/B+/CM/Zero/ZeroW"}]}},"target":"brcm2708/bcm2708","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/zynq/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos"],"metadata_version":1,"profiles":{"avnet_zynq-zed":{"device_packages":[],"image_prefix":"openwrt-19.07.10-zynq-avnet_zynq-zed","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-zynq-avnet_zynq-zed-squashfs-sdcard.img.gz","sha256":"b98da01c9de4ea6e6129b34b8edf2aea24c13399feca430190cf56519a74f832","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Avnet ZedBoard"}]},"digilent_zynq-zybo":{"device_packages":[],"image_prefix":"openwrt-19.07.10-zynq-digilent_zynq-zybo","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-zynq-digilent_zynq-zybo-squashfs-sdcard.img.gz","sha256":"7e7cc15c402677d8c0d7014146d1934b6c720b99813a1eb5018d1b049f70fa08","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo"}]},"digilent_zynq-zybo-z7":{"device_packages":[],"image_prefix":"openwrt-19.07.10-zynq-digilent_zynq-zybo-z7","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-zynq-digilent_zynq-zybo-z7-squashfs-sdcard.img.gz","sha256":"6095f4af15c292e01c05fb7bba4a4498380984e5294808d7068987e27674aeec","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo Z7"}]},"xlnx_zynq-zc702":{"device_packages":["kmod-can","kmod-can-xilinx-can"],"image_prefix":"openwrt-19.07.10-zynq-xlnx_zynq-zc702","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-zynq-xlnx_zynq-zc702-squashfs-sdcard.img.gz","sha256":"3d548c5e2090fad6d084c1c146e1b83c7f0f2f2c271f5916c34b667e33c3b9a1","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Xilinx ZC702"}]}},"source_date_epoch":1650114812,"target":"zynq/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/brcm2708/bcm2709/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","brcm2708-gpu-fw","kmod-usb-hid","kmod-sound-core","kmod-sound-arm-bcm2835","kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","partx-utils","mkf2fs","e2fsprogs"],"metadata_version":1,"profiles":{"rpi-2":{"device_packages":["brcmfmac-firmware-43430-sdio","brcmfmac-firmware-43455-sdio","brcmfmac-board-rpi2","brcmfmac-board-rpi3","kmod-brcmfmac","wpad-basic","iwinfo"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2709-rpi-2","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2709-rpi-2-ext4-factory.img.gz","sha256":"385c82fa5488c39150bd5ac2c5f214fbf4ae4f9f330ab3a8d72129496b984122","type":"factory"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2709-rpi-2-ext4-sysupgrade.img.gz","sha256":"f06970c26179c1fc0210dbfbf9be984dac5598002d8a8241c3b29d202ca682a5","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2709-rpi-2-squashfs-sysupgrade.img.gz","sha256":"d0c07e0728a798c5fed0728b08048940dd43a66e6a39da826569545d559528a1","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-brcm2708-bcm2709-rpi-2-squashfs-factory.img.gz","sha256":"90f2c1b81945e9e8a0ae6ba4e9b7bef79250e30196fd3d730b0bd0af2b65d381","type":"factory"}],"supported_devices":["rpi-2-b","rpi-3-b","rpi-3-b-plus","rpi-cm","raspberrypi,2-model-b","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3"],"titles":[{"title":"Raspberry Pi 2B/3B/3B+/3CM"}]}},"target":"brcm2708/bcm2709","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/ath79/tiny/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_24kc","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-ath9k","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","swconfig","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd","wpad-basic-mbedtls"],"metadata_version":1,"profiles":{"engenius_eap350-v1":{"device_packages":[],"image_prefix":"openwrt-23.05.4-ath79-tiny-engenius_eap350-v1","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-ath79-tiny-engenius_eap350-v1-initramfs-kernel.bin","sha256":"7cdd2cf869821e4bfc657671412c948bf5920a9d9d9a445cd318290fdfb2c221","sha256_unsigned":"7cdd2cf869821e4bfc657671412c948bf5920a9d9d9a445cd318290fdfb2c221","type":"kernel"}],"supported_devices":["engenius,eap350-v1"],"titles":[{"model":"EAP350","variant":"v1","vendor":"EnGenius"}]},"engenius_ecb350-v1":{"device_packages":[],"image_prefix":"openwrt-23.05.4-ath79-tiny-engenius_ecb350-v1","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-ath79-tiny-engenius_ecb350-v1-initramfs-kernel.bin","sha256":"e0ff35f102c7cea298a16c9a31349fdf7d957350a95c19af9b96845ae4833a40","sha256_unsigned":"e0ff35f102c7cea298a16c9a31349fdf7d957350a95c19af9b96845ae4833a40","type":"kernel"}],"supported_devices":["engenius,ecb350-v1"],"titles":[{"model":"ECB350","variant":"v1","vendor":"EnGenius"}]},"engenius_enh202-v1":{"device_packages":["rssileds"],"image_prefix":"openwrt-23.05.4-ath79-tiny-engenius_enh202-v1","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-ath79-tiny-engenius_enh202-v1-initramfs-kernel.bin","sha256":"62c168c519eaffabd9deb61ec0d058bdf421836b08cfffbdd8396b4a7adf97cd","sha256_unsigned":"62c168c519eaffabd9deb61ec0d058bdf421836b08cfffbdd8396b4a7adf97cd","type":"kernel"}],"supported_devices":["engenius,enh202-v1"],"titles":[{"model":"ENH202","variant":"v1","vendor":"EnGenius"}]}},"source_date_epoch":1721081658,"target":"ath79/tiny","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mpc85xx/p1020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"hiveap-330":{"device_packages":["kmod-tpm-i2c-atmel"],"image_prefix":"openwrt-19.07.4-mpc85xx-p1020-hiveap-330","images":[{"name":"openwrt-19.07.4-mpc85xx-p1020-hiveap-330-squashfs-sysupgrade.bin","sha256":"90a1a4928076069f81ac293b87ca0e68be6ae84935b8b32196ae923b6dae3f2d","type":"sysupgrade"},{"name":"openwrt-19.07.4-mpc85xx-p1020-hiveap-330-squashfs-fdt.bin","sha256":"0e8feff31209f6972495f02f4bf47b65ca18d5577687747893c64c344757f245","type":"fdt"}],"supported_devices":["aerohive,hiveap-330"],"titles":[{"title":"Aerohive HiveAP-330"}]},"panda":{"device_packages":["kmod-rtc-ds1307","uboot-envtools"],"image_prefix":"openwrt-19.07.4-mpc85xx-p1020-panda","images":[{"name":"openwrt-19.07.4-mpc85xx-p1020-panda-squashfs-sysupgrade.bin","sha256":"42ee1b00509c23e1b9358f1af182e686e6ca470bfe2d274b076d68953d51b2f6","type":"sysupgrade"},{"name":"openwrt-19.07.4-mpc85xx-p1020-panda-squashfs-fdt.bin","sha256":"3c72f0a66bd9cce126c50aca0ce3981882487dc9ab9ba59653631ebe23c0ded8","type":"fdt"}],"supported_devices":["ocedo,panda"],"titles":[{"title":"OCEDO Panda"}]},"ws-ap3710i":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mpc85xx-p1020-ws-ap3710i","images":[{"name":"openwrt-19.07.4-mpc85xx-p1020-ws-ap3710i-squashfs-sysupgrade.bin","sha256":"d8aed602d09d32bc8679fc670773e7bdd288e8267383d3681705dbd864dc4bb4","type":"sysupgrade"}],"supported_devices":["enterasys,ws-ap3710i"],"titles":[{"title":"Enterasys WS-AP3710i"}]}},"target":"mpc85xx/p1020","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/zynq/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","kmod-usb-storage","kmod-fs-msdos"],"metadata_version":1,"profiles":{"avnet_zynq-zed":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-avnet_zynq-zed","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-avnet_zynq-zed-squashfs-sdcard.img.gz","sha256":"e721a97ebf55ac1648c5dc7b6e34e24fa9076ce436be932284db2aef10006e2c","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Avnet ZedBoard"}]},"digilent_zynq-zybo":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-digilent_zynq-zybo","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-digilent_zynq-zybo-squashfs-sdcard.img.gz","sha256":"fa9778c488b71313daf7a7f3b3a90b44407f125da7c0555164069d7f1a0fb210","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo"}]},"digilent_zynq-zybo-z7":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-digilent_zynq-zybo-z7","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-digilent_zynq-zybo-z7-squashfs-sdcard.img.gz","sha256":"6187ac8990e45e296a1eea528a441416cf010dfe3379d39385a813419f13dffb","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Digilent Zybo Z7"}]},"xlnx_zynq-zc702":{"device_packages":["kmod-can","kmod-can-xilinx-can"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-xlnx_zynq-zc702","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-zynq-xlnx_zynq-zc702-squashfs-sdcard.img.gz","sha256":"f1af335783f0742c994bfde29bd05357ca9f96c092c032a322c8290e5e8a07b5","type":"sdcard"}],"supported_devices":[],"titles":[{"title":"Xilinx ZC702"}]}},"target":"zynq/generic","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /www/langs/ast.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-feedback-link": "Opinar", 3 | "tr-load": "Descarga de firmwares d'OpenWrt pa preseos", 4 | "tr-customize": "Personalizar los paquetes instalaos y/o'l script del primer arrique", 5 | "tr-version-build": "Tocante a esta compilación", 6 | "tr-request-build": "SOLICITAR LA COMPILACIÓN", 7 | "tr-version": "Versión", 8 | "tr-downloads": "Baxa una imaxe", 9 | "tr-custom-downloads": "Descargues personalizaes", 10 | "tr-other-help": "Otru tipu d'imaxe.", 11 | "tr-sdcard-help": "Una imaxe que ta pensada pa flaxala nuna tarxeta SD.", 12 | "tr-packages": "Paquetes instalaos", 13 | "tr-defaults": "Script que va executase nel primer arrinque (uci-defaults)", 14 | "tr-build-size": "Los paquetes seleicionaos superen l'almacenamientu del preséu", 15 | "tr-init": "Recibióse la solicitú de compilación", 16 | "tr-server-link": "Toles descargues", 17 | "tr-message": "Escribi'l nome del preséu y dempués seleiciona una versión estable o snapshot.", 18 | "tr-model": "Modelu", 19 | "tr-target": "Plataforma", 20 | "tr-date": "Data", 21 | "tr-not-found": "¡Nun s'atopó nengún modelu!", 22 | "tr-links": "Enllaces", 23 | "tr-title": "Selector de firmwares d'OpenWrt", 24 | "tr-tftp-help": "Les imáxenes TFTP úsense pa flaxar un preséu pel métodu TFTP del cargador d'arrinque.", 25 | "tr-dtb-help": "Blob del árbole del preséu. Esti ficheru configura'l kernel Linux pal hardware.", 26 | "tr-build-successful": "La compilación foi correuta", 27 | "tr-build-failed": "La compilación falló", 28 | "tr-uboot-help": "Imaxe del cargador d'arrinque. Software de nivel baxu que carga'l sistema operativu nel aniciu del arrinque.", 29 | "tr-eva-help": "Imaxe con OpenWrt y un cargador d'arrinque.", 30 | "tr-latest-releases": "Lo último", 31 | "tr-sysupgrade-help": "Usa una imaxe Sysupgrade p'anovar el router que yá executa OpenWRT. Pues usar la imaxe cola interfaz LuCI o cola terminal.", 32 | "tr-factory-help": "Usa una imaxe de fábrica pa flaxar un router con OpenWrt per primer vegada. Normalmente, tienes de facer esta aición pela interfaz web del firmware orixinal." 33 | } 34 | -------------------------------------------------------------------------------- /www/langs/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-feedback-link": "피드백", 3 | "tr-server-link": "모든 다운로드", 4 | "tr-not-found": "모델이 발견되지 않았습니다!", 5 | "tr-load": "기기에 맞는 OpenWrt 펌웨어 다운로드", 6 | "tr-title": "OpenWrt 펌웨어 선택기", 7 | "tr-message": "기기명 또는 모델명을 입력한 후, 안정 빌드 또는 나이틀리(\"snapshot\") 빌드 버전을 선택하세요.", 8 | "tr-version-build": "이 빌드에 대하여", 9 | "tr-custom-build": "커스텀 빌드", 10 | "tr-customize": "설치될 패키지 또는 초기 부팅 스크립트", 11 | "tr-request-build": "빌드 요청", 12 | "tr-model": "모델명", 13 | "tr-target": "플랫폼", 14 | "tr-version": "버전", 15 | "tr-date": "날짜", 16 | "tr-downloads": "이미지 다운로드", 17 | "tr-custom-downloads": "커스텀 다운로드", 18 | "tr-dtb-help": "Device Tree Blob. 이 파일은 하드웨어에 알맞게 Linux 커널을 구성합니다.", 19 | "tr-uboot-help": "부트로더 이미지. 부팅 과정 초기에 운영체제를 불러오는 저수준 소프트웨어입니다.", 20 | "tr-cpximg-help": "순정 펌웨어의 sysupgrade 혹은 내장된 cpximg loader와 함께 사용하는 이미지입니다.", 21 | "tr-eva-help": "OpenWrt와 부트로더가 담긴 이미지입니다.", 22 | "tr-factory-help": "OpenWrt를 처음으로 라우터에 플래시할 때 \"Factory\" 이미지를 사용합니다. 보통 순정 펌웨어의 웹 관리 페이지에서 플래시할 수 있습니다.", 23 | "tr-sysupgrade-help": "이미 라우터에서 OpenWrt를 사용하고 있을 때 \"Sysupgrade\" 이미지를 사용하여 펌웨어를 업데이트할 수 있습니다. LuCI 웹 관리 페이지 혹은 터미널에서 플래시할 수 있습니다.", 24 | "tr-kernel-help": "별도의 이미지로 제공되는 Linux 커널입니다.", 25 | "tr-initramfs-help": "최소한의 파일 시스템과 함께 제공되는 Linux 커널입니다. 처음 설치할 때 또는 복구할 때 유용합니다.", 26 | "tr-rootfs-help": "별도의 이미지로 제공되는 루트 파일 시스템입니다.", 27 | "tr-sdcard-help": "SD 카드에 플래시 되어야 하는 이미지입니다.", 28 | "tr-tftp-help": "기기의 부트로더에 있는 TFTP 기능으로 플래시 되어야 하는 이미지입니다.", 29 | "tr-other-help": "기타 유형의 이미지입니다.", 30 | "tr-build-successful": "빌드 성공", 31 | "tr-build-failed": "빌드 실패", 32 | "tr-request-image": "이미지 요청", 33 | "tr-check-again": "5초 후 다시 확인합니다…", 34 | "tr-links": "링크", 35 | "tr-build-size": "선택한 패키지는 기기의 저장 공간을 초과합니다", 36 | "tr-init": "빌드 요청 받음", 37 | "tr-download-imagebuilder": "ImageBuilder 아카이브 다운로드 중", 38 | "tr-unpack-imagebuilder": "ImageBuilder 설정", 39 | "tr-calculate-packages-hash": "패키지 선택 유효성 검증", 40 | "tr-building-image": "펌웨어 이미지 생성 중", 41 | "tr-latest-releases": "최신", 42 | "tr-packages": "설치된 패키지", 43 | "tr-defaults": "초기 부팅 스크립트(uci-defaults)" 44 | } 45 | -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm27xx/bcm2711/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a72","default_packages":["base-files","bcm27xx-gpu-fw","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-fs-vfat","kmod-nft-offload","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-sound-arm-bcm2835","kmod-sound-core","kmod-usb-hid","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed"],"metadata_version":1,"profiles":{"rpi-4":{"device_packages":["cypress-firmware-43455-sdio","brcmfmac-nvram-43455-sdio","kmod-brcmfmac","wpad-basic-mbedtls","kmod-usb-net-lan78xx","kmod-r8169","iwinfo"],"image_prefix":"openwrt-23.05.4-bcm27xx-bcm2711-rpi-4","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2711-rpi-4-ext4-factory.img.gz","sha256":"2f6f0b91fc2e621be8b8b37112c8fa1d7b54f280ce86695bac62659b5b85d68a","sha256_unsigned":"2f6f0b91fc2e621be8b8b37112c8fa1d7b54f280ce86695bac62659b5b85d68a","type":"factory"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2711-rpi-4-squashfs-sysupgrade.img.gz","sha256":"ba98483b2e453641e8f711506241fa1105813b6c3da1fb8ff166d468d0d954a8","sha256_unsigned":"fc6b5eda01085bf635f059f4af9fdb6a972c703e965001eb686c0d6aaa4a642d","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2711-rpi-4-ext4-sysupgrade.img.gz","sha256":"6e6531ff532de809162a0f27a3e26060f82269ee789e15c292d3a04aecf0f2be","sha256_unsigned":"8e0295dead413ba6e3f664b90d9e9ecd6c928edb51d2640bbdf4b7b7c63a42ec","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2711-rpi-4-squashfs-factory.img.gz","sha256":"9d6d697e152eedce03f4fab738b223df06a2451c5818fa2f821735f34aa3ffbe","sha256_unsigned":"9d6d697e152eedce03f4fab738b223df06a2451c5818fa2f821735f34aa3ffbe","type":"factory"}],"supported_devices":["raspberrypi,400","raspberrypi,4-compute-module","raspberrypi,4-model-b"],"titles":[{"model":"4B/400/CM4","variant":"(64bit)","vendor":"Raspberry Pi"}]}},"source_date_epoch":1721081658,"target":"bcm27xx/bcm2711","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/mpc85xx/p1020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic-wolfssl","kmod-usb2"],"metadata_version":1,"profiles":{"aerohive_hiveap-330":{"device_packages":["kmod-tpm-i2c-atmel"],"image_prefix":"openwrt-mpc85xx-p1020-aerohive_hiveap-330","images":[{"name":"openwrt-mpc85xx-p1020-aerohive_hiveap-330-squashfs-fdt.bin","sha256":"65c6edce3077727395753574f92dbf4bd8dda8142b0459200000b714189aaac1","type":"fdt"},{"name":"openwrt-mpc85xx-p1020-aerohive_hiveap-330-squashfs-sysupgrade.bin","sha256":"5dac473127c4edd9430a9df50b4a5b398d0c604114f8259ffcd437dafd44fadd","type":"sysupgrade"}],"supported_devices":["aerohive,hiveap-330"],"titles":[{"model":"HiveAP-330","vendor":"Aerohive"}]},"enterasys_ws-ap3710i":{"device_packages":[],"image_prefix":"openwrt-mpc85xx-p1020-enterasys_ws-ap3710i","images":[{"name":"openwrt-mpc85xx-p1020-enterasys_ws-ap3710i-squashfs-sysupgrade.bin","sha256":"f1fae6d21463e3078a6e56fa5c0da78abbb6507171085b26b63fc69669ce4c6b","type":"sysupgrade"}],"supported_devices":["enterasys,ws-ap3710i"],"titles":[{"model":"WS-AP3710i","vendor":"Enterasys"}]},"ocedo_panda":{"device_packages":["kmod-rtc-ds1307","uboot-envtools"],"image_prefix":"openwrt-mpc85xx-p1020-ocedo_panda","images":[{"name":"openwrt-mpc85xx-p1020-ocedo_panda-squashfs-fdt.bin","sha256":"e31ead96b076b205707a55a6b96abc809ec7349408e1088dcaeed031c9ec45df","type":"fdt"},{"name":"openwrt-mpc85xx-p1020-ocedo_panda-squashfs-sysupgrade.bin","sha256":"f8eaa94dcaf0be3c32a7af5fe7de0374e02e1af351fe1e3efe05a438620e18ec","type":"sysupgrade"}],"supported_devices":["ocedo,panda"],"titles":[{"model":"Panda","vendor":"OCEDO"}]}},"target":"mpc85xx/p1020","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/mediatek/mt7623/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-leds-gpio","kmod-gpio-button-hotplug","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-leds-gpio","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"bpi_bananapi-r2":{"device_packages":["kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc","mkf2fs","e2fsprogs","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-mediatek-mt7623-bpi_bananapi-r2","images":[{"name":"openwrt-mediatek-mt7623-bpi_bananapi-r2-squashfs-img.gz","sha256":"1e54ffbabae8ea1bc0073b310c1a1bd7d9690b3d01ebb97832be44732eb42155","type":"img"}],"supported_devices":["bananapi,bpi-r2"],"titles":[{"model":"Banana Pi R2","vendor":"Bpi"}]},"unielec_u7623-02-emmc-512m-legacy":{"device_packages":["kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc","mkf2fs","e2fsprogs","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-mediatek-mt7623-unielec_u7623-02-emmc-512m-legacy","images":[{"name":"openwrt-mediatek-mt7623-unielec_u7623-02-emmc-512m-legacy-squashfs-sysupgrade-emmc.bin.gz","sha256":"7a5c248f41bdd02306d6265a46bb365ef4b036674565f743aca5cd44236f97bf","type":"sysupgrade-emmc"}],"supported_devices":["unielec,u7623-02-emmc-512m"],"titles":[{"model":"U7623-02","variant":"eMMC/512MiB RAM (legacy image)","vendor":"UniElec"}]},"unielec_u7623-emmc":{"device_packages":["kmod-fs-vfat","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-mmc","mkf2fs","e2fsprogs","kmod-usb-ohci","kmod-usb2","kmod-usb3","kmod-ata-ahci-mtk"],"image_prefix":"openwrt-mediatek-mt7623-unielec_u7623-emmc","images":[{"name":"openwrt-mediatek-mt7623-unielec_u7623-emmc-squashfs-img.gz","sha256":"576e65e96b3f9cf1e5ceb304d458efa40789a56488a2a98ffc090d70cf911d01","type":"img"}],"supported_devices":["unielec,u7623-02-emmc-512m"],"titles":[{"model":"U7623","variant":"eMMC","vendor":"UniElec"}]}},"target":"mediatek/mt7623","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/mxs/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm926ej-s","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"i2se_duckbill":{"device_packages":["-dnsmasq","-firewall","-ppp","-ip6tables","-iptables","-6relayd","-mtd","uboot-envtools","kmod-leds-gpio","-kmod-ipt-nathelper"],"image_prefix":"openwrt-23.05.4-mxs-generic-i2se_duckbill","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-mxs-generic-i2se_duckbill-ext4-sdcard.img.gz","sha256":"17186c69750c4bdc5716bc58130cb52d6f604f8dd73d6b4fe436dc829d02c67a","sha256_unsigned":"49baa3d8b982c4583a9bca728bef4d1cc0dd908493d545f7d7e4f2d888274865","type":"sdcard"}],"supported_devices":["i2se,duckbill"],"titles":[{"model":"Duckbill","vendor":"I2SE"}]},"olinuxino_maxi":{"device_packages":["kmod-usb-net-smsc95xx","kmod-pinctrl-mcp23s08-i2c","kmod-pinctrl-mcp23s08-spi","kmod-leds-gpio","kmod-sound-core"],"image_prefix":"openwrt-23.05.4-mxs-generic-olinuxino_maxi","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-mxs-generic-olinuxino_maxi-ext4-sdcard.img.gz","sha256":"cd8a22c37a1f8142f4afee540f37a94a2def8e2743eb822e1926d8e14ac8f193","sha256_unsigned":"e1384850f87feda75129bd0bb28be2f17d72e3d6677d9cceba8986efa2818b7d","type":"sdcard"}],"supported_devices":["olimex,imx23-olinuxino"],"titles":[{"model":"OLinuXino Maxi","vendor":"Olimex"}]},"olinuxino_micro":{"device_packages":["kmod-pinctrl-mcp23s08-spi","kmod-pinctrl-mcp23s08-i2c","kmod-leds-gpio"],"image_prefix":"openwrt-23.05.4-mxs-generic-olinuxino_micro","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-mxs-generic-olinuxino_micro-ext4-sdcard.img.gz","sha256":"6a2e9727b230452fd61425a7abf92ed7cc649d5f99c9a59d18323f35e0cdae31","sha256_unsigned":"924f85393dd105e69d8ec2106165682466abe9f448810aa8d72b5706a0ad2d94","type":"sdcard"}],"supported_devices":["olimex,imx23-olinuxino"],"titles":[{"model":"OLinuXino Micro","vendor":"Olimex"}]}},"source_date_epoch":1721081658,"target":"mxs/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mpc85xx/p1020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"hiveap-330":{"device_packages":["kmod-tpm-i2c-atmel"],"image_prefix":"openwrt-19.07.10-mpc85xx-p1020-hiveap-330","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p1020-hiveap-330-squashfs-sysupgrade.bin","sha256":"f3a9fe84687ed77bfb79386bf9dca1c46f97aadd634a33373edd0d5c93084912","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p1020-hiveap-330-squashfs-fdt.bin","sha256":"0e8feff31209f6972495f02f4bf47b65ca18d5577687747893c64c344757f245","type":"fdt"}],"supported_devices":["aerohive,hiveap-330"],"titles":[{"title":"Aerohive HiveAP-330"}]},"panda":{"device_packages":["kmod-rtc-ds1307","uboot-envtools"],"image_prefix":"openwrt-19.07.10-mpc85xx-p1020-panda","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p1020-panda-squashfs-sysupgrade.bin","sha256":"ee6dedcf5a6af3a15a8a0de976aef8e45cfa7aebc3fb99000cfb289c0593199b","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p1020-panda-squashfs-fdt.bin","sha256":"3c72f0a66bd9cce126c50aca0ce3981882487dc9ab9ba59653631ebe23c0ded8","type":"fdt"}],"supported_devices":["ocedo,panda"],"titles":[{"title":"OCEDO Panda"}]},"ws-ap3710i":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mpc85xx-p1020-ws-ap3710i","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-mpc85xx-p1020-ws-ap3710i-squashfs-sysupgrade.bin","sha256":"d4eaebb387ea03e46a57fae51775a715208ac4f15b7ac5878a14c7a0b34ad47d","type":"sysupgrade"}],"supported_devices":["enterasys,ws-ap3710i"],"titles":[{"title":"Enterasys WS-AP3710i"}]}},"source_date_epoch":1650114812,"target":"mpc85xx/p1020","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm27xx/bcm2708/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_arm1176jzf-s_vfp","default_packages":["base-files","bcm27xx-gpu-fw","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-fs-vfat","kmod-nft-offload","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-sound-arm-bcm2835","kmod-sound-core","kmod-usb-hid","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed"],"metadata_version":1,"profiles":{"rpi":{"device_packages":["cypress-firmware-43430-sdio","brcmfmac-nvram-43430-sdio","kmod-brcmfmac","wpad-basic-mbedtls","iwinfo"],"image_prefix":"openwrt-23.05.4-bcm27xx-bcm2708-rpi","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2708-rpi-squashfs-sysupgrade.img.gz","sha256":"9d50423040ee1856a24f68bffc825d58857590e473c7359aca3cbee15ae82345","sha256_unsigned":"e4a0cccdb759dfb59382f27c4c0cf621d5bfc37af0e9f2091688b3b73154e765","type":"sysupgrade"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2708-rpi-ext4-factory.img.gz","sha256":"bdfeae5d9aa3c70be737559701d5b3fe1a805f74215d268339fd506a7e2519dc","sha256_unsigned":"bdfeae5d9aa3c70be737559701d5b3fe1a805f74215d268339fd506a7e2519dc","type":"factory"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2708-rpi-ext4-sysupgrade.img.gz","sha256":"2958b2aee0e20a012f97fa273483397f01ca32d9adb7529839449693bc2c1d4d","sha256_unsigned":"76d7b0888fcaaf233721949aece6f78870f9abb60b326a8e999da7bbbae5fef5","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2708-rpi-squashfs-factory.img.gz","sha256":"edd869bd7a0de10bf301e7035ac7700aa7e025465f0b9677ef28e0e09f6b345a","sha256_unsigned":"edd869bd7a0de10bf301e7035ac7700aa7e025465f0b9677ef28e0e09f6b345a","type":"factory"}],"supported_devices":["rpi-b","rpi-b-plus","rpi-cm","rpi-zero","rpi-zero-w","raspberrypi,model-b","raspberrypi,model-b-plus","raspberrypi,model-b-rev2","raspberrypi,compute-module","raspberrypi,compute-module-1","raspberrypi,model-zero","raspberrypi,model-zero-w"],"titles":[{"model":"B/B+/CM/Zero/ZeroW","vendor":"Raspberry Pi"}]}},"source_date_epoch":1721081658,"target":"bcm27xx/bcm2708","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /www/langs/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-feedback-link": "フィードバック", 3 | "tr-server-link": "すべてのダウンロード", 4 | "tr-custom-build": "カスタムビルド", 5 | "tr-customize": "インストールされたパッケージ、初回起動時のスクリプトのカスタマイズ", 6 | "tr-request-build": "ビルドをリクエスト", 7 | "tr-not-found": "モデルが見つかりませんでした!", 8 | "tr-load": "デバイス用の OpenWrt ファームウェアをダウンロード", 9 | "tr-message": "名前またはモデル名を入力し、リリースビルドまたは \"snapshot\" ビルドを選択します。", 10 | "tr-version-build": "このビルドについて", 11 | "tr-links": "リンク", 12 | "tr-model": "モデル", 13 | "tr-target": "プラットフォーム", 14 | "tr-version": "バージョン", 15 | "tr-date": "日付", 16 | "tr-downloads": "イメージをダウンロード", 17 | "tr-dtb-help": "Device tree blob。このファイルはハードウェアに対してLinux Kernelを構成します。", 18 | "tr-uboot-help": "ブートローダー イメージ。ブートの初期段階でオペレーティングシステムを読み込む、低レベルソフトウェアです。", 19 | "tr-factory-help": "OpenWrtを最初にルーターへフラッシュする際に \"Factory\" イメージを使用します。通常、メーカーファームウェアのWebインターフェースを通して実行します。", 20 | "tr-sysupgrade-help": "OpenWrtを既に実行中のルーターをアップデートする際に \"Sysupgrade\" イメージを使用します。イメージはLuCI Webインターフェースまたはターミナルで使用できます。", 21 | "tr-kernel-help": "単体のLinux Kernelイメージです。", 22 | "tr-initramfs-help": "最小限のファイルシステムを持つLinux Kernelです。初回インストールやリカバリーに役立ちます。", 23 | "tr-rootfs-help": "単体のルートファイルシステム イメージです。", 24 | "tr-sdcard-help": "SDカード上への書き込みに使用するイメージです。", 25 | "tr-tftp-help": "ブートローダーのTFTP方式を用いてデバイスにフラッシュする際に使用するTFTPイメージです。", 26 | "tr-other-help": "その他のイメージタイプです。", 27 | "tr-build-successful": "ビルド成功", 28 | "tr-request-image": "イメージをリクエスト", 29 | "tr-build-size": "選択されたパッケージはデバイスのストレージを超過しています", 30 | "tr-build-failed": "ビルド失敗", 31 | "tr-title": "OpenWrt ファームウェア セレクター", 32 | "tr-custom-downloads": "カスタム ダウンロード", 33 | "tr-cpximg-help": "純正ファームウェアのsysupgrade、または内蔵のcpximg loaderで使用します。", 34 | "tr-eva-help": "OpenWrtとブートローダーのイメージ。", 35 | "tr-check-again": "5 秒後にもう一度確認してください…", 36 | "tr-download-imagebuilder": "イメージビルダーアーカイブのダウンロード", 37 | "tr-unpack-imagebuilder": "イメージビルダーのセットアップ", 38 | "tr-calculate-packages-hash": "検証されたパッケージ", 39 | "tr-building-image": "ファームウェアイメージの生成", 40 | "tr-init": "ビルド要求の受信", 41 | "tr-packages": "インストールされたパッケージ", 42 | "tr-defaults": "初回起動時に実行されるスクリプト (uci-defaults)", 43 | "tr-latest-releases": "最新版", 44 | "tr-validate-manifest": "マニフェストを検証", 45 | "tr-container-setup": "コンテナのセットアップ" 46 | } 47 | -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/imx6/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","blkid","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","blkid"],"metadata_version":1,"profiles":{"apalis":{"device_packages":["kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-pps-gpio","kmod-rtc-ds1307"],"image_prefix":"openwrt-19.07.4-imx6-apalis","images":[{"name":"openwrt-19.07.4-imx6-apalis-squashfs.sysupgrade.bin","sha256":"03edebaca5a2b764c6777e407270318bf1e6358eb1db4355fcb29e3d10a6d5f6","type":"sysupgrade"},{"name":"openwrt-19.07.4-imx6-apalis-squashfs.combined.bin","sha256":"46c61bdcc5f6c532db85be31ac4c72be036eb6c37c46631a1b2fcd5e0abbf8c1","type":"combined"}],"supported_devices":["apalis,ixora","apalis,eval"],"titles":[{"title":"Toradex Apalis family"}]},"cubox":{"device_packages":["kmod-drm-imx","kmod-drm-imx-hdmi","kmod-usb-hid"],"image_prefix":"openwrt-19.07.4-imx6-cubox-i","images":[{"name":"openwrt-19.07.4-imx6-cubox-i-squashfs-combined.bin","sha256":"aab5d5b13de2c5bc9b452cd0436e5e72b059e57669896b7ecbf9eb50b12b6642","type":"combined"}],"supported_devices":[],"titles":[{"title":"SolidRun CuBox-i"}]},"ventana":{"device_packages":["kmod-sky2","kmod-sound-core","kmod-sound-soc-imx","kmod-sound-soc-imx-sgtl5000","kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-hwmon-gsc","kmod-leds-gpio","kmod-pps-gpio","kobs-ng"],"image_prefix":"openwrt-19.07.4-imx6-ventana","images":[{"name":"openwrt-19.07.4-imx6-ventana-squashfs-bootfs.tar.gz","sha256":"51d7de83f2c472b43b766a70ed527a7ae65265e3499259e532972195c14fce00","type":"bootfs"},{"name":"openwrt-19.07.4-imx6-ventana-squashfs-nand.ubi","sha256":"5a56ddb288661bf49cc7e5ad818f938448ac04587aa6dd675b5322c2e45a23d4","type":"nand"},{"name":"openwrt-19.07.4-imx6-ventana-large-squashfs-nand.ubi","sha256":"4f7a5c26e8b92dcaf46a0bc7b4ccd49aee20533892891bafc42db9e0e2f9e8bd","type":"nand"}],"supported_devices":[],"titles":[{"title":"Gateworks Ventana family (normal NAND flash)"}]}},"target":"imx6/generic","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mpc85xx/p1020/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_8540","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","kmod-input-core","kmod-input-gpio-keys","kmod-button-hotplug","kmod-leds-gpio","swconfig","kmod-ath9k","wpad-basic","kmod-usb2"],"metadata_version":1,"profiles":{"hiveap-330":{"device_packages":["kmod-tpm-i2c-atmel"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-hiveap-330","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-hiveap-330-squashfs-sysupgrade.bin","sha256":"62e4813d5787da8ad483bad70539786be7a47bf9551fb4d0f80d83efeb8de343","type":"sysupgrade"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-hiveap-330-squashfs-fdt.bin","sha256":"0e8feff31209f6972495f02f4bf47b65ca18d5577687747893c64c344757f245","type":"fdt"}],"supported_devices":["aerohive,hiveap-330"],"titles":[{"title":"Aerohive HiveAP-330"}]},"panda":{"device_packages":["kmod-rtc-ds1307","uboot-envtools"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-panda","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-panda-squashfs-fdt.bin","sha256":"3c72f0a66bd9cce126c50aca0ce3981882487dc9ab9ba59653631ebe23c0ded8","type":"fdt"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-panda-squashfs-sysupgrade.bin","sha256":"c98a252c580193ddfc4b7db500faa7361a4956f22f6e3d92d13cacad78cc1a1c","type":"sysupgrade"}],"supported_devices":["ocedo,panda"],"titles":[{"title":"OCEDO Panda"}]},"ws-ap3710i":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-ws-ap3710i","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mpc85xx-p1020-ws-ap3710i-squashfs-sysupgrade.bin","sha256":"bd495b062887a125c8e355009c9345c908f8b5870419de4dfe088ec21f1be2dd","type":"sysupgrade"}],"supported_devices":["enterasys,ws-ap3710i"],"titles":[{"title":"Enterasys WS-AP3710i"}]}},"target":"mpc85xx/p1020","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/imx6/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","blkid","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","uboot-envtools","mkf2fs","e2fsprogs","blkid"],"metadata_version":1,"profiles":{"apalis":{"device_packages":["kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-pps-gpio","kmod-rtc-ds1307"],"image_prefix":"openwrt-imx6-apalis","images":[{"name":"openwrt-imx6-apalis-squashfs.combined.bin","sha256":"818105651ef3191d1e24facedf1863d42d79985769c0c92bd154be55ffb2d843","type":"combined"},{"name":"openwrt-imx6-apalis-squashfs.sysupgrade.bin","sha256":"14b51b926b1fa7c669b83fa4dfe85e7f314011529374539de8c6ef3d178e384b","type":"sysupgrade"}],"supported_devices":["apalis,ixora","apalis,eval"],"titles":[{"model":"Apalis family","vendor":"Toradex"}]},"cubox":{"device_packages":["kmod-drm-imx","kmod-drm-imx-hdmi","kmod-usb-hid"],"image_prefix":"openwrt-imx6-cubox-i","images":[{"name":"openwrt-imx6-cubox-i-squashfs-combined.bin","sha256":"80520fe5b6c18eb24b5f3fb3574ca7029a66bf5cc4ac5d825431c78024d01a19","type":"combined"}],"supported_devices":[],"titles":[{"model":"CuBox-i","vendor":"SolidRun"}]},"ventana":{"device_packages":["kmod-sky2","kmod-sound-core","kmod-sound-soc-imx","kmod-sound-soc-imx-sgtl5000","kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-hwmon-gsc","kmod-leds-gpio","kmod-pps-gpio","kobs-ng"],"image_prefix":"openwrt-imx6-ventana-large","images":[{"name":"openwrt-imx6-ventana-large-squashfs-nand.ubi","sha256":"992a68703f1fdf17ad952ca0ba2eee4d743c6f2f91a0b9c3487627f5bbc61811","type":"nand"},{"name":"openwrt-imx6-ventana-squashfs-bootfs.tar.gz","sha256":"c69264cff12152b89949b63ebf51b3c2a6c9938b78eeadce1e108ca830ba210c","type":"bootfs"},{"name":"openwrt-imx6-ventana-squashfs-nand.ubi","sha256":"1c20b760fe3c30e898ca26498e6dc94aef9919b27a899297ac3654ee93670c68","type":"nand"}],"supported_devices":[],"titles":[{"model":"Ventana family","variant":"large NAND flash","vendor":"Gateworks"}]}},"target":"imx6/generic","version_code":"r14459-96586ad8ca","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /www/langs/sr_Latn.json: -------------------------------------------------------------------------------- 1 | { 2 | "tr-feedback-link": "Povratna informacija", 3 | "tr-server-link": "Sva preuzimanja", 4 | "tr-not-found": "Nije pronađen modul!", 5 | "tr-load": "Preuzmi OpenWrt Firmware za tvoj uređaj", 6 | "tr-title": "OpenWrt Firmware Izbor", 7 | "tr-message": "Upišite naziv modela vašeg uređaja, zatim izaberite stabilni build ili noćni ( tkz. \"snapshot\") build.", 8 | "tr-version-build": "O ovom build-u", 9 | "tr-custom-build": "Personalni build", 10 | "tr-customize": "Personalizovati", 11 | "tr-request-build": "ZAHTEVAJ BUILD", 12 | "tr-model": "Model", 13 | "tr-target": "Platforma", 14 | "tr-version": "Verzija", 15 | "tr-date": "Datum", 16 | "tr-downloads": "Preuzmi sliku", 17 | "tr-custom-downloads": "Personalizovana preuzimanja", 18 | "tr-dtb-help": "\"Device tree blob\". Ovaj file konfiguriše Linux Kernel za hardware.", 19 | "tr-uboot-help": "\"Bootloader image\". Low-level software which loads the operating system early on boot.", 20 | "tr-cpximg-help": "Koristiti uz sysupgrade u originalnom (stock) firmware-u ili sa ugrađenim cpximg modulom, za učitavanje.", 21 | "tr-eva-help": "Slika (Image) sa OpenWrt & boot loader.", 22 | "tr-sysupgrade-help": "Koristiti Sysupgrade image za update rutera koji već radi sa OpenWrt sistemom. Image se može instalirati ili korišćenjem LuCI web interfejsa ili putem CMD terminala.", 23 | "tr-kernel-help": "Linux kernel kao poseban image.", 24 | "tr-initramfs-help": "Linux kernel sa minimalnim file sistemom. Korisno kod prve instalacije ili prilikom oporavka sistema.", 25 | "tr-rootfs-help": "Root fajl sistem kao poseban image.", 26 | "tr-sdcard-help": "Image koji se namenjen da se flash-uje na SD karticu.", 27 | "tr-other-help": "Ostali tipovi image fileova.", 28 | "tr-build-successful": "Build uspešan", 29 | "tr-build-failed": "Build neuspešan", 30 | "tr-request-image": "Zahtevati image", 31 | "tr-check-again": "Proverite ponovo za 5 sekundi...", 32 | "tr-factory-help": "Koristiti Factory image za flash-ovanje rutera sa OpenWrt sistemom, kada se OpenWrt sistem instalira po prvi put. U normalnoj proceduri, ovo se radi putem Web interfejsa originalnog firmware-a.", 33 | "tr-tftp-help": "TFTP images se koriste da se flash-uje uređaj uz pomoć TFTP metode flash-ovanja bootloader-a." 34 | } 35 | -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/scheduled_for_removal/ath25/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","wpad-mini","kmod-ath5k","swconfig","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"generic":{"device_packages":[],"image_prefix":"openwrt-ath25-generic","images":[{"name":"openwrt-ath25-generic-kernel.lzma","sha256":"62cc5edaac81efac519f6ecd20c8e8edf7e8e0ac2eb006d50c5ad3376960e3a9","type":"kernel"},{"name":"openwrt-ath25-generic-kernel.elf","sha256":"6bb174b4cec0049aa2de11aef08cd31cda16be29b4d2c2d63abd9e8d10293592","type":"kernel"},{"name":"openwrt-ath25-generic-squashfs-rootfs.bin","sha256":"dc1f4a7dccd9535a9267ccc60eaeab2b003174c49e884e3e5e0ed539e596c8d3","type":"rootfs"},{"name":"openwrt-ath25-generic-kernel.gz","sha256":"829d19dd5b740ee9820105ef14a97647f2643169df4d902535953ced88e7c4f7","type":"kernel"},{"name":"openwrt-ath25-generic-squashfs-sysupgrade.bin","sha256":"eb8f337a31cef6fb22aa7424768a092fccf6397d3bd9d07a59d7e67f2d9d2563","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"Generic AR2xxx board","vendor":"Atheros"}]},"ubnt2":{"device_packages":[],"image_prefix":"openwrt-ath25-ubnt2","images":[{"name":"openwrt-ath25-ubnt2-squashfs-sysupgrade.bin","sha256":"b9636586bb12983ca02feede3ea926028924fc2e0272bf185780171870621641","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"XS2","vendor":"Ubiquiti"}]},"ubnt2-pico2":{"device_packages":[],"image_prefix":"openwrt-ath25-ubnt2-pico2","images":[{"name":"openwrt-ath25-ubnt2-pico2-squashfs-sysupgrade.bin","sha256":"d2ce12d872ef36cee0a2982db57d2a69ab742addac7e60608d73facee0bbfba6","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"XS2-8","vendor":"Ubiquiti"}]},"ubnt5":{"device_packages":[],"image_prefix":"openwrt-ath25-ubnt5","images":[{"name":"openwrt-ath25-ubnt5-squashfs-sysupgrade.bin","sha256":"6682ff5623615c5a42127b4c8c59d43dff08e4fd69ed68c15785f7bd48d783c3","type":"sysupgrade"}],"supported_devices":[],"titles":[{"model":"XS5","vendor":"Ubiquiti"}]}},"target":"ath25/generic","version_code":"r14200-bcf0704bd2","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bmips/bcm6362/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"mips_mips32","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","ethtool","firewall4","fstools","kmod-gpio-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"huawei_hg253s-v2":{"device_packages":["nand-utils","kmod-usb-ohci","kmod-usb-ledtrig-usbport","kmod-usb2","kmod-leds-bcm6328","kmod-leds-gpio"],"image_prefix":"openwrt-23.05.4-bmips-bcm6362-huawei_hg253s-v2","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6362-huawei_hg253s-v2-squashfs-flash.bin","sha256":"ce596cf167c9d72ecf7d9d7cd75feb32ba803836200b020efa00a14f28b21c73","sha256_unsigned":"ce596cf167c9d72ecf7d9d7cd75feb32ba803836200b020efa00a14f28b21c73","type":"flash"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6362-huawei_hg253s-v2-squashfs-sysupgrade.bin","sha256":"006c464da954d822bb412f68a6b32cd0a727f4735ab40b052b874e1a9cd1179a","sha256_unsigned":"97a8053e62931d704ae67f190b10519be8eb835c92056e2ee4ce5a3b5d46e59f","type":"sysupgrade"}],"supported_devices":["huawei,hg253s-v2"],"titles":[{"model":"HG253s","variant":"v2","vendor":"Huawei"}]},"netgear_dgnd3700-v2":{"device_packages":["nand-utils","kmod-usb-ohci","kmod-usb-ledtrig-usbport","kmod-usb2","kmod-b43","wpad-basic-mbedtls","kmod-leds-bcm6328","kmod-leds-gpio","iwinfo"],"image_prefix":"openwrt-23.05.4-bmips-bcm6362-netgear_dgnd3700-v2","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6362-netgear_dgnd3700-v2-squashfs-sysupgrade.bin","sha256":"2e19db67d72acec45562b2b6ab6031a911fd196ed93da32902c77ad1cdc53f94","sha256_unsigned":"a1eb5082d8e1f1545b9828dcc083a5f8571625f0a52f5ff67c6319dbfc095edf","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bmips-bcm6362-netgear_dgnd3700-v2-squashfs-cfe.bin","sha256":"ad3f741b3b451a3a23657ce36a536dbee6404199a4f83e94f5f2e8d69e929bbd","sha256_unsigned":"ad3f741b3b451a3a23657ce36a536dbee6404199a4f83e94f5f2e8d69e929bbd","type":"cfe"}],"supported_devices":["netgear,dgnd3700-v2"],"titles":[{"model":"DGND3700","variant":"v2","vendor":"NETGEAR"}]}},"source_date_epoch":1721081658,"target":"bmips/bcm6362","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07.4/targets/mvebu/cortexa72/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a72","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","kmod-gpio-button-hotplug","e2fsprogs","ethtool","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"marvell_armada7040-db":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada7040-db","images":[{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada7040-db-squashfs-sdcard.img.gz","sha256":"9058218ee09a8b48ca20bf8ffa7d65d7b32ea2e1d0d5e786ee11e1ce174fe012","type":"sdcard"},{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada7040-db-ext4-sdcard.img.gz","sha256":"e863d93a4fe367b58d5cfa60fab13974845873ad9f88d78f5188fe7965138ecc","type":"sdcard"}],"supported_devices":["marvell,armada7040-db"],"titles":[{"title":"Marvell Armada 7040 DB board"}]},"marvell_armada8040-db":{"device_packages":[],"image_prefix":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada8040-db","images":[{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada8040-db-squashfs-sdcard.img.gz","sha256":"c4d907416b4a2a79c1194848bd612e10f834532e3b0a309bc3547d17c54aa3e0","type":"sdcard"},{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_armada8040-db-ext4-sdcard.img.gz","sha256":"65ee0608317d61742df4799145bf9e49f7bec5ce0c5c9d954b7ecba3142e0269","type":"sdcard"}],"supported_devices":["marvell,armada8040-db"],"titles":[{"title":"Marvell Armada 8040 DB board"}]},"marvell_macchiatobin":{"device_packages":["kmod-i2c-core","kmod-i2c-mux","kmod-i2c-mux-pca954x"],"image_prefix":"openwrt-19.07.4-mvebu-cortexa72-marvell_macchiatobin","images":[{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_macchiatobin-ext4-sdcard.img.gz","sha256":"2205f5dd2bd3cd50991b78fbef40ed1bdaedd4050d2108bcf998d097460fd948","type":"sdcard"},{"name":"openwrt-19.07.4-mvebu-cortexa72-marvell_macchiatobin-squashfs-sdcard.img.gz","sha256":"162b841407a3635a21de1a3f864563bf33e5f16681573c21344cd77a5680cfd2","type":"sdcard"}],"supported_devices":["marvell,armada8040-mcbin"],"titles":[{"title":"MACCHIATObin (SolidRun Armada 8040 Community Board)"}]}},"target":"mvebu/cortexa72","version_code":"r11208-ce6496d796","version_number":"19.07.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm27xx/bcm2710/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a53","default_packages":["base-files","bcm27xx-gpu-fw","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-fs-vfat","kmod-nft-offload","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-sound-arm-bcm2835","kmod-sound-core","kmod-usb-hid","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed"],"metadata_version":1,"profiles":{"rpi-3":{"device_packages":["cypress-firmware-43430-sdio","brcmfmac-nvram-43430-sdio","cypress-firmware-43455-sdio","brcmfmac-nvram-43455-sdio","kmod-brcmfmac","wpad-basic-mbedtls","iwinfo"],"image_prefix":"openwrt-23.05.4-bcm27xx-bcm2710-rpi-3","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2710-rpi-3-squashfs-sysupgrade.img.gz","sha256":"596f804dc44be9244aa33ac292c4f1657e03b3b099a51e62632513d8630dbd68","sha256_unsigned":"266b364db84cffe3704ef2a527921dc5c9a29c94c58d8049284453beb681aae8","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2710-rpi-3-squashfs-factory.img.gz","sha256":"94e800e1f93ae0ba3c64423fae1fe7541d0da28124a1b68457f44740fb7046a5","sha256_unsigned":"94e800e1f93ae0ba3c64423fae1fe7541d0da28124a1b68457f44740fb7046a5","type":"factory"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2710-rpi-3-ext4-factory.img.gz","sha256":"eba746b008055dc1ac64b6d6e8e6a4e958ce30d9402f866bd905185822b00199","sha256_unsigned":"eba746b008055dc1ac64b6d6e8e6a4e958ce30d9402f866bd905185822b00199","type":"factory"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2710-rpi-3-ext4-sysupgrade.img.gz","sha256":"1a5ab9301c22786576afb415ab0b978ef0ad493853bc8d23661b397c4e65ea73","sha256_unsigned":"0ca42250d43a86d4f8021daf4f41c6708c97cd813fb11dc79f74d7fe72228c53","type":"sysupgrade"}],"supported_devices":["rpi-3-b","rpi-3-b-plus","rpi-zero-2","raspberrypi,2-model-b-rev2","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3","raspberrypi,model-zero-2"],"titles":[{"model":"3B/3B+/CM3","variant":"(64bit)","vendor":"Raspberry Pi"},{"model":"2B-1.2","variant":"(64bit)","vendor":"Raspberry Pi"}]}},"source_date_epoch":1721081658,"target":"bcm27xx/bcm2710","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/x86/64/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"x86_64","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","grub2-bios-setup","kmod-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-amazon-ena","kmod-amd-xgbe","kmod-bnx2","kmod-e1000e","kmod-e1000","kmod-forcedeth","kmod-fs-vfat","kmod-igb","kmod-igc","kmod-ixgbe","kmod-r8169","kmod-tg3"],"image_prefix":"openwrt-23.05.4-x86-64-generic","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-x86-64-generic-ext4-combined.img.gz","sha256":"66a6e090de4f5dedb68bf91676afec3d89fb743495e873d5d85e4558e6982f63","sha256_unsigned":"94e59e2f5d1bb1a4355b13aaf842b16cd6f258afa908c849cabd57b813e7898a","type":"combined"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-64-generic-squashfs-combined.img.gz","sha256":"bd2fb2517c240e445731957db495f650169c4625f2d720c990145bc30d55e9ed","sha256_unsigned":"05c997afddc53eeceda9753b4e2411925ceb90e2b88645a59b720778d8cacf2d","type":"combined"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-64-generic-ext4-rootfs.img.gz","sha256":"d524b129a5c0934045ff9a513aff2755de1edd8417948407e6c071a3cfc52564","sha256_unsigned":"d524b129a5c0934045ff9a513aff2755de1edd8417948407e6c071a3cfc52564","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-64-generic-squashfs-combined-efi.img.gz","sha256":"877e917b4cbde613c1bb927fb715bf26feff857cbec0af44e4fb4971a4906adb","sha256_unsigned":"5102bb07049adbbb81f2be8f40ab380cc1d8bad4cbfedf42fa42d37f1c7f36a0","type":"combined-efi"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-64-generic-squashfs-rootfs.img.gz","sha256":"b70db1ac57971c7b9e2f109e13c4b098212020db3519b608b00e79bd253c4829","sha256_unsigned":"b70db1ac57971c7b9e2f109e13c4b098212020db3519b608b00e79bd253c4829","type":"rootfs"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-64-generic-ext4-combined-efi.img.gz","sha256":"c8d031a4f754ff0292cab4de627362bdacd2648803ff967a4ddb0941d6c10ab0","sha256_unsigned":"c9ee8f5368086889d27510884e669db9d63800b59f4a01d84ebef570b1916253","type":"combined-efi"}],"supported_devices":[],"titles":[{"model":"x86/64","vendor":"Generic"}]}},"source_date_epoch":1721081658,"target":"x86/64","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/imx6/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","blkid","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","blkid"],"metadata_version":1,"profiles":{"apalis":{"device_packages":["kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-pps-gpio","kmod-rtc-ds1307"],"image_prefix":"openwrt-19.07.10-imx6-apalis","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-apalis-squashfs.combined.bin","sha256":"1b99bdb6aa0d21185e876d5b35eb2ddfb37dfadfd3112e9ce95314ec9a19d638","type":"combined"},{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-apalis-squashfs.sysupgrade.bin","sha256":"88d427de5f44bd7c3797c327adbcb0b392fa918e00d752aaf460bd7f31a8c31b","type":"sysupgrade"}],"supported_devices":["apalis,ixora","apalis,eval"],"titles":[{"title":"Toradex Apalis family"}]},"cubox":{"device_packages":["kmod-drm-imx","kmod-drm-imx-hdmi","kmod-usb-hid"],"image_prefix":"openwrt-19.07.10-imx6-cubox-i","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-cubox-i-squashfs-combined.bin","sha256":"af5e1c4240484088769268317f3304a973b9bf7470e767c87a76501bd87eabb4","type":"combined"}],"supported_devices":[],"titles":[{"title":"SolidRun CuBox-i"}]},"ventana":{"device_packages":["kmod-sky2","kmod-sound-core","kmod-sound-soc-imx","kmod-sound-soc-imx-sgtl5000","kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-hwmon-gsc","kmod-leds-gpio","kmod-pps-gpio","kobs-ng"],"image_prefix":"openwrt-19.07.10-imx6-ventana","images":[{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-ventana-squashfs-bootfs.tar.gz","sha256":"37a6e6e992df18bc1680ba5bee72f713cb9d1c2df0d1598be08177c430e41837","type":"bootfs"},{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-ventana-squashfs-nand.ubi","sha256":"8b1af2d77ea5ef99a61a824c42a36642bb7f23e6cb4d4811b9a80766c997eff3","type":"nand"},{"filesystem":"squashfs","name":"openwrt-19.07.10-imx6-ventana-large-squashfs-nand.ubi","sha256":"fde2ab504ce1095e7547a8af0a23e552a20f7c5db2458407adb01b58c6fb543d","type":"nand"}],"supported_devices":[],"titles":[{"title":"Gateworks Ventana family (normal NAND flash)"}]}},"source_date_epoch":1650114812,"target":"imx6/generic","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/19.07.10/targets/mvebu/cortexa72/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a72","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","kmod-gpio-button-hotplug","e2fsprogs","ethtool","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"marvell_armada7040-db":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada7040-db","images":[{"filesystem":"ext4","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada7040-db-ext4-sdcard.img.gz","sha256":"363f2d182dda74187d6f0e5184fa709a03fe5ec67f941eaf08489cc63f8a107f","type":"sdcard"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada7040-db-squashfs-sdcard.img.gz","sha256":"ee94b4e214a7343f5c9e33c3654f7a7600dd4aaf5e6e36cf62c641010383c06b","type":"sdcard"}],"supported_devices":["marvell,armada7040-db"],"titles":[{"title":"Marvell Armada 7040 DB board"}]},"marvell_armada8040-db":{"device_packages":[],"image_prefix":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada8040-db","images":[{"filesystem":"ext4","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada8040-db-ext4-sdcard.img.gz","sha256":"4a28eca5046f87b0edc886d5db0c36119e8454c53f61a8521cfa858ce3a4368a","type":"sdcard"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_armada8040-db-squashfs-sdcard.img.gz","sha256":"77c4189b6ef6e28ed17507d287f715c2a75f0433c3eabe069360e663003a2fed","type":"sdcard"}],"supported_devices":["marvell,armada8040-db"],"titles":[{"title":"Marvell Armada 8040 DB board"}]},"marvell_macchiatobin":{"device_packages":["kmod-i2c-core","kmod-i2c-mux","kmod-i2c-mux-pca954x"],"image_prefix":"openwrt-19.07.10-mvebu-cortexa72-marvell_macchiatobin","images":[{"filesystem":"ext4","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_macchiatobin-ext4-sdcard.img.gz","sha256":"b5017e0ae57892809e4d47edb97e5756ab98d63c596f725e3db7ba7264a08e36","type":"sdcard"},{"filesystem":"squashfs","name":"openwrt-19.07.10-mvebu-cortexa72-marvell_macchiatobin-squashfs-sdcard.img.gz","sha256":"c0da1962fc56568c97d30e59eeb4d129dca4e6fc124f9cf5cdab0d7777b71b3a","type":"sdcard"}],"supported_devices":["marvell,armada8040-mcbin"],"titles":[{"title":"MACCHIATObin (SolidRun Armada 8040 Community Board)"}]}},"source_date_epoch":1650114812,"target":"mvebu/cortexa72","version_code":"r11427-9ce6aa9d8d","version_number":"19.07.10"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/armsr/armv8/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_generic","default_packages":["base-files","blkid","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-amazon-ena","kmod-e1000e","kmod-vmxnet3","kmod-rtc-rx8025","kmod-i2c-mux-pca954x","kmod-gpio-pca953x","partx-utils","kmod-wdt-sp805","kmod-mvneta","kmod-mvpp2","kmod-fsl-dpaa1-net","kmod-fsl-dpaa2-net","kmod-fsl-enetc-net","kmod-dwmac-imx","kmod-fsl-fec","kmod-thunderx-net","kmod-dwmac-rockchip","kmod-dwmac-sun8i","kmod-phy-aquantia","kmod-phy-broadcom","kmod-phy-marvell","kmod-phy-marvell-10g","kmod-sfp","kmod-atlantic","kmod-bcmgenet","kmod-octeontx2-net","kmod-renesas-net-avb","kmod-phy-realtek","kmod-phy-smsc"],"image_prefix":"openwrt-23.05.4-armsr-armv8-generic","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-armsr-armv8-generic-ext4-rootfs.img.gz","sha256":"c6c6cac6c3fb899f06320494db1c30546181ca35fde9e8cef882258522fb706d","sha256_unsigned":"c6c6cac6c3fb899f06320494db1c30546181ca35fde9e8cef882258522fb706d","type":"rootfs"},{"filesystem":"initramfs","name":"openwrt-23.05.4-armsr-armv8-generic-initramfs-kernel.bin","sha256":"3a01564df99eed89176e666803ed099ca79b14a296ffe08ba064eab68c69edf0","sha256_unsigned":"3a01564df99eed89176e666803ed099ca79b14a296ffe08ba064eab68c69edf0","type":"kernel"},{"filesystem":"ext4","name":"openwrt-23.05.4-armsr-armv8-generic-ext4-combined.img.gz","sha256":"09ef3be69eb7b1a0ef2068c60251d39d20a17bf9f89e035683ae8d70bd6141d5","sha256_unsigned":"84c394ec5521f4b38aa5988832203d877be77d1d6bcedfc5d494b5bea47d32df","type":"combined"},{"filesystem":"squashfs","name":"openwrt-23.05.4-armsr-armv8-generic-squashfs-combined.img.gz","sha256":"5e1b52a3497cab6555cbbf50c7cce137e18057bf663956d917d71d5b767707d2","sha256_unsigned":"cf552149faf4b9e4d91187681c89b17a2a756cf986b106b26bf84aa3295faa31","type":"combined"},{"filesystem":"squashfs","name":"openwrt-23.05.4-armsr-armv8-generic-squashfs-rootfs.img.gz","sha256":"922980e521f39f959888c994f29c47712bf5dbd086d6b99b652da2f183e5c76f","sha256_unsigned":"922980e521f39f959888c994f29c47712bf5dbd086d6b99b652da2f183e5c76f","type":"rootfs"}],"supported_devices":[],"titles":[{"title":"Generic EFI Boot"}]}},"source_date_epoch":1721081658,"target":"armsr/armv8","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/imx6/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","mkf2fs","e2fsprogs","blkid","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","mkf2fs","e2fsprogs","blkid"],"metadata_version":1,"profiles":{"apalis":{"device_packages":["kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-leds-gpio","kmod-gpio-button-hotplug","kmod-pps-gpio","kmod-rtc-ds1307"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-apalis","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-apalis-squashfs.combined.bin","sha256":"fcc72c0cfff0b842b2281584bbdbddf85b7400239b22cff6b799367f9e5b5030","type":"combined"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-apalis-squashfs.sysupgrade.bin","sha256":"38dd1721df533e11cc0de9639668493af1a9ec070f758545b14b4727d22dbefb","type":"sysupgrade"}],"supported_devices":["apalis,ixora","apalis,eval"],"titles":[{"title":"Toradex Apalis family"}]},"cubox":{"device_packages":["kmod-drm-imx","kmod-drm-imx-hdmi","kmod-usb-hid"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-cubox-i","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-cubox-i-squashfs-combined.bin","sha256":"292235ae6fff458977b195b01ad940ad6a2aab0431d58fec3d4804a8b926930a","type":"combined"}],"supported_devices":[],"titles":[{"title":"SolidRun CuBox-i"}]},"ventana":{"device_packages":["kmod-sky2","kmod-sound-core","kmod-sound-soc-imx","kmod-sound-soc-imx-sgtl5000","kmod-can","kmod-can-flexcan","kmod-can-raw","kmod-hwmon-gsc","kmod-leds-gpio","kmod-pps-gpio","kobs-ng"],"image_prefix":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-ventana-large","images":[{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-ventana-large-squashfs-nand.ubi","sha256":"5690018dfb9044d206c2b7d88817d0b7af5ff35d60900cbf9c19de1b0b4dff66","type":"nand"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-ventana-squashfs-bootfs.tar.gz","sha256":"156901b776e90c022173dcdfa869a9c62780984d2f398d70b686f1a6870071cd","type":"bootfs"},{"name":"openwrt-19.07-snapshot-r11210-29b4104d69-imx6-ventana-squashfs-nand.ubi","sha256":"8f31896acc61557c07f1be84874b456e31612ddc62f8123c731f93a31a3d5419","type":"nand"}],"supported_devices":[],"titles":[{"title":"Gateworks Ventana family (large NAND flash)"}]}},"target":"imx6/generic","version_code":"r11210-29b4104d69","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/x86/legacy/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"i386_pentium-mmx","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","grub2-bios-setup","kmod-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-3c59x","kmod-8139too","kmod-e100","kmod-e1000","kmod-natsemi","kmod-ne2k-pci","kmod-pcnet32","kmod-r8169","kmod-sis900","kmod-tg3","kmod-via-rhine","kmod-via-velocity","kmod-forcedeth"],"image_prefix":"openwrt-23.05.4-x86-legacy-generic","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-legacy-generic-squashfs-combined-efi.img.gz","sha256":"74138df7a3bc0c4f278e52a8753743ea4ebc833c1ad13f173b147b479a1dfb14","sha256_unsigned":"ece78ad2ec4216ea39f85d95ed8f89e036cc9ad2d99308671445b82e1996d1de","type":"combined-efi"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-legacy-generic-ext4-combined.img.gz","sha256":"cb861fedab75c0730a5643c0a1408110eb7c7f11da5eaf19c6c76a6058433089","sha256_unsigned":"53f3f383e9f5aefb6674a780fc89c9058a51d375d5ef886baf8916a267b4ce09","type":"combined"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-legacy-generic-squashfs-combined.img.gz","sha256":"94204ae8689f576f3ae9481a17f6746502b39a7ba53cc870c9e71d29a3163f46","sha256_unsigned":"1cedacb1041c138f0234a83299f3e6ac47fcc521ab20edeea37594a89382805b","type":"combined"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-legacy-generic-ext4-rootfs.img.gz","sha256":"7ab49f8f6cca44a8ce6c1e6709dd2a78bbaebc43dfdd90fdd2e51c809f63b1c2","sha256_unsigned":"7ab49f8f6cca44a8ce6c1e6709dd2a78bbaebc43dfdd90fdd2e51c809f63b1c2","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-legacy-generic-squashfs-rootfs.img.gz","sha256":"694c64ed9ceea11ab7e781559cd658c467ed05ee5d332e9dce6aa5c853b4e37d","sha256_unsigned":"694c64ed9ceea11ab7e781559cd658c467ed05ee5d332e9dce6aa5c853b4e37d","type":"rootfs"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-legacy-generic-ext4-combined-efi.img.gz","sha256":"d07a584c5d66201315e719e6d9b5a2395e6db073f9f8dc992b2c6e17001595aa","sha256_unsigned":"d50de5e6a4e4ef9af70f2ac6834ea0ab35a07dd4eb2a22917e82e41c9ba4131a","type":"combined-efi"}],"supported_devices":[],"titles":[{"model":"x86/legacy","vendor":"Generic"}]}},"source_date_epoch":1721081658,"target":"x86/legacy","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/armsr/armv7/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a15_neon-vfpv4","default_packages":["base-files","blkid","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-amazon-ena","kmod-e1000e","kmod-vmxnet3","kmod-rtc-rx8025","kmod-i2c-mux-pca954x","kmod-gpio-pca953x","partx-utils","kmod-wdt-sp805","kmod-mvneta","kmod-mvpp2","kmod-fsl-dpaa1-net","kmod-fsl-dpaa2-net","kmod-fsl-enetc-net","kmod-dwmac-imx","kmod-fsl-fec","kmod-thunderx-net","kmod-dwmac-rockchip","kmod-dwmac-sun8i","kmod-phy-aquantia","kmod-phy-broadcom","kmod-phy-marvell","kmod-phy-marvell-10g","kmod-sfp","kmod-atlantic","kmod-bcmgenet","kmod-octeontx2-net","kmod-renesas-net-avb","kmod-phy-realtek","kmod-phy-smsc"],"image_prefix":"openwrt-23.05.4-armsr-armv7-generic","images":[{"filesystem":"initramfs","name":"openwrt-23.05.4-armsr-armv7-generic-initramfs-kernel.bin","sha256":"d1a85a504149885111f9459c02b3836044c10ca93da55910f8c6a218c1780f6c","sha256_unsigned":"d1a85a504149885111f9459c02b3836044c10ca93da55910f8c6a218c1780f6c","type":"kernel"},{"filesystem":"ext4","name":"openwrt-23.05.4-armsr-armv7-generic-ext4-rootfs.img.gz","sha256":"3d417fde024d8ac371de265cf6cbd4235f115d0c2d4bb1bed498c43eb3da79c8","sha256_unsigned":"3d417fde024d8ac371de265cf6cbd4235f115d0c2d4bb1bed498c43eb3da79c8","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-23.05.4-armsr-armv7-generic-squashfs-combined.img.gz","sha256":"e528922402bc2a97f6ac6d80712b341a4ca378574176826e7db633ea0002bf0a","sha256_unsigned":"3dbae27b6e3e661507d3395ab364512a7d72b651d1cb170399cc08cace32b004","type":"combined"},{"filesystem":"ext4","name":"openwrt-23.05.4-armsr-armv7-generic-ext4-combined.img.gz","sha256":"8bf22e9c5fbf592f9886c871c10b7d2d7664aba26e36beac36de191e279d9f22","sha256_unsigned":"924394103c1f18b428cce284da6c159721ed7cc9355dbbbb8efdfdbb4bf6d7d1","type":"combined"},{"filesystem":"squashfs","name":"openwrt-23.05.4-armsr-armv7-generic-squashfs-rootfs.img.gz","sha256":"cd1c597560e6b3d1c546fef76c4953779c10d265ad3010057f98a6df7dedea2b","sha256_unsigned":"cd1c597560e6b3d1c546fef76c4953779c10d265ad3010057f98a6df7dedea2b","type":"rootfs"}],"supported_devices":[],"titles":[{"title":"Generic EFI Boot"}]}},"source_date_epoch":1721081658,"target":"armsr/armv7","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/zynq/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a9_neon","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-fs-msdos","kmod-nft-offload","kmod-usb-storage","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"avnet_zynq-zed":{"device_packages":[],"image_prefix":"openwrt-23.05.4-zynq-generic-avnet_zynq-zed","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-zynq-generic-avnet_zynq-zed-squashfs-sdcard.img.gz","sha256":"1097b2ee304558c87a28dd39d5128f354c96a742cf5b69a001fac0b462354049","sha256_unsigned":"1097b2ee304558c87a28dd39d5128f354c96a742cf5b69a001fac0b462354049","type":"sdcard"}],"supported_devices":["avnet,zynq-zed"],"titles":[{"model":"ZedBoard","vendor":"Avnet"}]},"digilent_zynq-zybo":{"device_packages":[],"image_prefix":"openwrt-23.05.4-zynq-generic-digilent_zynq-zybo","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-zynq-generic-digilent_zynq-zybo-squashfs-sdcard.img.gz","sha256":"0de7c5177ae307c779c348c0c030d2a84d6cce9792413c5132356bd497155eba","sha256_unsigned":"0de7c5177ae307c779c348c0c030d2a84d6cce9792413c5132356bd497155eba","type":"sdcard"}],"supported_devices":["digilent,zynq-zybo"],"titles":[{"model":"Zybo","vendor":"Digilent"}]},"digilent_zynq-zybo-z7":{"device_packages":[],"image_prefix":"openwrt-23.05.4-zynq-generic-digilent_zynq-zybo-z7","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-zynq-generic-digilent_zynq-zybo-z7-squashfs-sdcard.img.gz","sha256":"b5722fe4a899ff93610ba00658b78be158b693885f515b0af6430b5a4b55fb18","sha256_unsigned":"b5722fe4a899ff93610ba00658b78be158b693885f515b0af6430b5a4b55fb18","type":"sdcard"}],"supported_devices":["digilent,zynq-zybo-z7"],"titles":[{"model":"Zybo Z7","vendor":"Digilent"}]},"xlnx_zynq-zc702":{"device_packages":["kmod-can","kmod-can-xilinx-can"],"image_prefix":"openwrt-23.05.4-zynq-generic-xlnx_zynq-zc702","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-zynq-generic-xlnx_zynq-zc702-squashfs-sdcard.img.gz","sha256":"6785ff8d909b9386dfd0776deb4dfc457c70066e7dd38ce9088e0443821803d8","sha256_unsigned":"6785ff8d909b9386dfd0776deb4dfc457c70066e7dd38ce9088e0443821803d8","type":"sdcard"}],"supported_devices":["xlnx,zynq-zc702"],"titles":[{"model":"ZC702","vendor":"Xilinx"}]}},"source_date_epoch":1721081658,"target":"zynq/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/x86/generic/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"i386_pentium4","default_packages":["base-files","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","grub2-bios-setup","kmod-button-hotplug","kmod-nft-offload","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"generic":{"device_packages":["kmod-3c59x","kmod-8139too","kmod-e100","kmod-e1000","kmod-natsemi","kmod-ne2k-pci","kmod-pcnet32","kmod-r8169","kmod-sis900","kmod-tg3","kmod-via-rhine","kmod-via-velocity","kmod-forcedeth","kmod-fs-vfat"],"image_prefix":"openwrt-23.05.4-x86-generic-generic","images":[{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-generic-generic-squashfs-rootfs.img.gz","sha256":"7d718be754c716e12a954481072d3c35225322726162a6ee1326604e55c128ab","sha256_unsigned":"7d718be754c716e12a954481072d3c35225322726162a6ee1326604e55c128ab","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-generic-generic-squashfs-combined.img.gz","sha256":"21bd35bdf7f8b7745741dd7e7c61ffb8e176ca520453e07d9cc22112d78a20b0","sha256_unsigned":"482df071ea9ac3d1450cf70540a7171da79bb0062a9874537879373c3ee9d821","type":"combined"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-generic-generic-ext4-combined.img.gz","sha256":"56b7d9b5877954eb997369b4760e13df0b650e9303751ddbc35217afc6227368","sha256_unsigned":"8cc8097769c27c4bc914d24205711d01c6c929617443b50ee1b44f2992c1a2ad","type":"combined"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-generic-generic-ext4-combined-efi.img.gz","sha256":"980554f889d66618704b214fbf07411b62510ce19558281719f4bb545c2c71aa","sha256_unsigned":"56f15aef40c204e0f6aea6d4a0b2dee052163b806f831b8eb7081b7627e91cdd","type":"combined-efi"},{"filesystem":"ext4","name":"openwrt-23.05.4-x86-generic-generic-ext4-rootfs.img.gz","sha256":"f84d31e334d51e66b54e32e925898c75e6b76c0ddbf746c7a817f807544e7311","sha256_unsigned":"f84d31e334d51e66b54e32e925898c75e6b76c0ddbf746c7a817f807544e7311","type":"rootfs"},{"filesystem":"squashfs","name":"openwrt-23.05.4-x86-generic-generic-squashfs-combined-efi.img.gz","sha256":"3ea6b43bd4f1339650416461fca0a4149ca59c6d840df262e339d336c49bef82","sha256_unsigned":"14191452768790b5d134ce0511e8aa72c25e9089db66b2fc488fdcdd85bf404f","type":"combined-efi"}],"supported_devices":[],"titles":[{"model":"x86","vendor":"Generic"}]}},"source_date_epoch":1721081658,"target":"x86/generic","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/bcm27xx/bcm2709/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"arm_cortex-a7_neon-vfpv4","default_packages":["base-files","bcm27xx-gpu-fw","busybox","ca-bundle","dnsmasq","dropbear","e2fsprogs","firewall4","fstools","kmod-fs-vfat","kmod-nft-offload","kmod-nls-cp437","kmod-nls-iso8859-1","kmod-sound-arm-bcm2835","kmod-sound-core","kmod-usb-hid","libc","libgcc","libustream-mbedtls","logd","mkf2fs","mtd","netifd","nftables","odhcp6c","odhcpd-ipv6only","opkg","partx-utils","ppp","ppp-mod-pppoe","procd","procd-seccomp","procd-ujail","uci","uclient-fetch","urandom-seed"],"metadata_version":1,"profiles":{"rpi-2":{"device_packages":["cypress-firmware-43430-sdio","brcmfmac-nvram-43430-sdio","cypress-firmware-43455-sdio","brcmfmac-nvram-43455-sdio","kmod-brcmfmac","wpad-basic-mbedtls","iwinfo"],"image_prefix":"openwrt-23.05.4-bcm27xx-bcm2709-rpi-2","images":[{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2709-rpi-2-ext4-factory.img.gz","sha256":"72eb233f3072653be75e53cf972cd312bcb0ffc04b8f1c7210535ee856e8858f","sha256_unsigned":"72eb233f3072653be75e53cf972cd312bcb0ffc04b8f1c7210535ee856e8858f","type":"factory"},{"filesystem":"ext4","name":"openwrt-23.05.4-bcm27xx-bcm2709-rpi-2-ext4-sysupgrade.img.gz","sha256":"a95fa340abe27b23f8ebbc035afe5cd8ff090aefcecbfb293f2abb735a77f7c8","sha256_unsigned":"bb46c5b5c413e508337ec14213a41d139f4e54c838e5de682c260b80327b43ac","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2709-rpi-2-squashfs-sysupgrade.img.gz","sha256":"5916e1b8786f06436a9414630c1273ba7a5e9f1b9ca8d18852130dc5e3120324","sha256_unsigned":"095edc566473be81fd2bcd33e117578b7b73e36bad9ad3e63f6211c95b099a27","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-bcm27xx-bcm2709-rpi-2-squashfs-factory.img.gz","sha256":"d462abbf07b66a7e1637079961fcae57a877290d0c4f25666c11d3a99db0feec","sha256_unsigned":"d462abbf07b66a7e1637079961fcae57a877290d0c4f25666c11d3a99db0feec","type":"factory"}],"supported_devices":["rpi-2-b","rpi-3-b","rpi-3-b-plus","rpi-cm","rpi-zero-2","raspberrypi,2-model-b","raspberrypi,2-model-b-rev2","raspberrypi,3-model-b","raspberrypi,3-model-b-plus","raspberrypi,3-compute-module","raspberrypi,compute-module-3","raspberrypi,400","raspberrypi,4-compute-module","raspberrypi,4-model-b","raspberrypi,model-zero-2"],"titles":[{"model":"2B/2B 1.2","variant":"(32bit)","vendor":"Raspberry Pi"},{"model":"3B/3B+/CM3","variant":"(32bit)","vendor":"Raspberry Pi"},{"model":"4B/400/CM4","variant":"(32bit)","vendor":"Raspberry Pi"}]}},"source_date_epoch":1721081658,"target":"bcm27xx/bcm2709","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} -------------------------------------------------------------------------------- /tests/profiles/snapshots/targets/apm821xx/nand/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["base-files","busybox","ca-bundle","dropbear","fstools","libc","libgcc","libustream-wolfssl","logd","mtd","netifd","opkg","uci","uclient-fetch","urandom-seed","urngd","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug","kmod-ath9k","swconfig","wpad-basic-wolfssl","dnsmasq","firewall","ip6tables","iptables","kmod-ipt-offload","odhcp6c","odhcpd-ipv6only","ppp","ppp-mod-pppoe","kmod-leds-gpio","kmod-i2c-core","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"meraki_mr24":{"device_packages":["kmod-spi-gpio","-swconfig"],"image_prefix":"openwrt-apm821xx-nand-meraki_mr24","images":[{"name":"openwrt-apm821xx-nand-meraki_mr24-squashfs-sysupgrade.bin","sha256":"8f6ed0bca7abf225e9e66cb91a5c0af3efdfc769163c3a7b2805b463d677049d","type":"sysupgrade"}],"supported_devices":["meraki,mr24","mr24"],"titles":[{"model":"MR24","vendor":"Cisco Meraki"}]},"meraki_mx60":{"device_packages":["kmod-spi-gpio","kmod-usb-ledtrig-usbport","kmod-usb-dwc2","kmod-usb-storage","block-mount"],"image_prefix":"openwrt-apm821xx-nand-meraki_mx60","images":[{"name":"openwrt-apm821xx-nand-meraki_mx60-squashfs-sysupgrade.bin","sha256":"6ca04c1be719e7ee9e38c17a0b77aa398a83b47ffc134f12265133343429476a","type":"sysupgrade"}],"supported_devices":["meraki,mx60","mx60"],"titles":[{"model":"MX60/MX60W","vendor":"Cisco Meraki"}]},"netgear_wndap620":{"device_packages":["kmod-eeprom-at24"],"image_prefix":"openwrt-apm821xx-nand-netgear_wndap620","images":[{"name":"openwrt-apm821xx-nand-netgear_wndap620-squashfs-sysupgrade.bin","sha256":"82f3253a7e3f393aade32544bd80fd1750ebc04a8ff71b9f501008cdde23531a","type":"sysupgrade"},{"name":"openwrt-apm821xx-nand-netgear_wndap620-squashfs-factory.img","sha256":"7ad741741ef30e6fbb7e2671de604c892e985680b49d06ca2ad426712c3f45f5","type":"factory"}],"supported_devices":["netgear,wndap620"],"titles":[{"model":"WNDAP620 (Premium Wireless-N)","vendor":"NETGEAR"}]},"netgear_wndap660":{"device_packages":["kmod-eeprom-at24"],"image_prefix":"openwrt-apm821xx-nand-netgear_wndap660","images":[{"name":"openwrt-apm821xx-nand-netgear_wndap660-squashfs-factory.img","sha256":"22893d35438f10e4c45eeea649ff977d7c251cd373bc2c3fea795d5850526fc3","type":"factory"},{"name":"openwrt-apm821xx-nand-netgear_wndap660-squashfs-sysupgrade.bin","sha256":"2a04df055cd28068efe5dda87a36559ea509cfa8e94724d622c57a7efc32b292","type":"sysupgrade"}],"supported_devices":["netgear,wndap660"],"titles":[{"model":"WNDAP660 (Dual Radio Dual Band Wireless-N)","vendor":"NETGEAR"}]}},"target":"apm821xx/nand","version_code":"r14460-17e64b9447","version_number":"SNAPSHOT"} -------------------------------------------------------------------------------- /tests/profiles/releases/19.07-SNAPSHOT/targets/mvebu/cortexa72/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"aarch64_cortex-a72","default_packages":["base-files","libc","libgcc","busybox","dropbear","mtd","uci","opkg","netifd","fstools","uclient-fetch","logd","urandom-seed","urngd","uboot-envtools","kmod-gpio-button-hotplug","e2fsprogs","ethtool","mkf2fs","partx-utils","dnsmasq","iptables","ip6tables","ppp","ppp-mod-pppoe","firewall","odhcpd-ipv6only","odhcp6c","kmod-ipt-offload","uboot-envtools","kmod-gpio-button-hotplug"],"metadata_version":1,"profiles":{"marvell_armada7040-db":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada7040-db","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada7040-db-ext4-sdcard.img.gz","sha256":"eafeee785560cfa9f61c7f7b0afabd5511ad72e08b159f012e37b118a9d272ed","type":"sdcard"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada7040-db-squashfs-sdcard.img.gz","sha256":"94de226e58914a9ec8e6404d40eb63cb17c5581df7812d4014e4e91f4113c7b5","type":"sdcard"}],"supported_devices":["marvell,armada7040-db"],"titles":[{"title":"Marvell Armada 7040 DB board"}]},"marvell_armada8040-db":{"device_packages":[],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada8040-db","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada8040-db-ext4-sdcard.img.gz","sha256":"792e7e90433f0b67c068f219b63d5e8b4eafa2eacd6dbd226900462992cb762f","type":"sdcard"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_armada8040-db-squashfs-sdcard.img.gz","sha256":"b6fd7230403e8f289aff3a1fe27e480cb200a79735c6c00dd5ae289bcc660631","type":"sdcard"}],"supported_devices":["marvell,armada8040-db"],"titles":[{"title":"Marvell Armada 8040 DB board"}]},"marvell_macchiatobin":{"device_packages":["kmod-i2c-core","kmod-i2c-mux","kmod-i2c-mux-pca954x"],"image_prefix":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_macchiatobin","images":[{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_macchiatobin-ext4-sdcard.img.gz","sha256":"00ed0efb574be7a496a198c1ddff2ad318f2289995f38e23426a429ad2e2803c","type":"sdcard"},{"name":"openwrt-19.07-snapshot-r11208-ce6496d796-mvebu-cortexa72-marvell_macchiatobin-squashfs-sdcard.img.gz","sha256":"541e87e3b06b43083376a719c271d1bf265855d31ea2b32417eda076a00fa146","type":"sdcard"}],"supported_devices":["marvell,armada8040-mcbin"],"titles":[{"title":"MACCHIATObin (SolidRun Armada 8040 Community Board)"}]}},"target":"mvebu/cortexa72","version_code":"r11208-ce6496d796","version_number":"19.07-SNAPSHOT"} -------------------------------------------------------------------------------- /misc/releases/23.05.4/targets/apm821xx/sata/profiles.json: -------------------------------------------------------------------------------- 1 | {"arch_packages":"powerpc_464fp","default_packages":["badblocks","base-files","block-mount","block-mount","busybox","ca-bundle","dropbear","e2fsprogs","f2fsck","fdisk","fstools","kmod-dm","kmod-gpio-button-hotplug","kmod-hwmon-drivetemp","kmod-i2c-core","kmod-leds-gpio","kmod-md-mod","libc","libgcc","libustream-mbedtls","logd","lsblk","mdadm","mkf2fs","mtd","netifd","opkg","partx-utils","procd","procd-seccomp","procd-ujail","uboot-envtools","uci","uclient-fetch","urandom-seed","urngd"],"metadata_version":1,"profiles":{"wd_mybooklive":{"device_packages":["kmod-usb-dwc2","kmod-usb-ledtrig-usbport","kmod-usb-storage","kmod-fs-vfat","wpad-basic-mbedtls","iwinfo"],"image_prefix":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive","images":[{"name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-apollo3g.dtb","sha256":"28c2a8e0698c7742d14930c5576397c6b37ae1d7c02d494b5e5a7ef5d8e01c04","sha256_unsigned":"28c2a8e0698c7742d14930c5576397c6b37ae1d7c02d494b5e5a7ef5d8e01c04","type":"apollo3g.dtb"},{"filesystem":"ext4","name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-ext4-sysupgrade.img.gz","sha256":"057f08cd3a35087cdb4eeb8346c42c2a60c032852d27e7b32fe4d4edcee1c769","sha256_unsigned":"1149c2bcf38042ab385ba29a1e0c37fd645bfa3e2e6e01df6d7ea265b931ba49","type":"sysupgrade"},{"filesystem":"squashfs","name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-squashfs-factory.img.gz","sha256":"50a77545248710fa87c4848eff8d0292d1c086fda0b1e140458d6b94cf26d991","sha256_unsigned":"50a77545248710fa87c4848eff8d0292d1c086fda0b1e140458d6b94cf26d991","type":"factory"},{"filesystem":"initramfs","name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-initramfs-kernel.bin","sha256":"4356460926e908c81e43c81fe4a6f05175374f7cc4119f5173f1c75b72fde80d","sha256_unsigned":"4356460926e908c81e43c81fe4a6f05175374f7cc4119f5173f1c75b72fde80d","type":"kernel"},{"filesystem":"ext4","name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-ext4-factory.img.gz","sha256":"0c79826c7f10aea6bf7b0a5edebd514252ba38e635b2c8cf97648c50ec383312","sha256_unsigned":"0c79826c7f10aea6bf7b0a5edebd514252ba38e635b2c8cf97648c50ec383312","type":"factory"},{"filesystem":"squashfs","name":"openwrt-23.05.4-apm821xx-sata-wd_mybooklive-squashfs-sysupgrade.img.gz","sha256":"c0ecddd404988d8d2a7eb0c4c394142a2480e33278ba0be4bf7019fada2e8a54","sha256_unsigned":"03e1247ca3c0c1dbb5815743567b10b9e6749a94541f7a60df3a13716dfcc916","type":"sysupgrade"}],"supported_devices":["wd,mybooklive","mbl","wd,mybooklive-duo"],"titles":[{"model":"My Book Live","vendor":"Western Digital"},{"model":"My Book Live Duo","vendor":"Western Digital"}]}},"source_date_epoch":1721081658,"target":"apm821xx/sata","version_code":"r24012-d8dd03c46f","version_number":"23.05.4"} --------------------------------------------------------------------------------