-
-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
174 changed files
with
35,677 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
LINUX_VERSION-6.11 = | ||
LINUX_KERNEL_HASH-6.11 = 55d2c6c025ebc27810c748d66325dd5bc601e8d32f8581d9e77673529bdacb2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
# | ||
# Copyright (C) 2006-2020 OpenWrt.org | ||
|
||
ifdef CONFIG_STRIP_KERNEL_EXPORTS | ||
KERNEL_MAKEOPTS_IMAGE += \ | ||
EXTRA_LDSFLAGS="-I$(KERNEL_BUILD_DIR) -include symtab.h" | ||
endif | ||
|
||
INITRAMFS_EXTRA_FILES ?= $(GENERIC_PLATFORM_DIR)/image/initramfs-base-files.txt | ||
|
||
export HOST_EXTRACFLAGS=-I$(STAGING_DIR_HOST)/include | ||
|
||
# defined in quilt.mk | ||
Kernel/Patch:=$(Kernel/Patch/Default) | ||
|
||
ifneq (,$(findstring .xz,$(LINUX_SOURCE))) | ||
LINUX_CAT:=xzcat | ||
else | ||
LINUX_CAT:=$(STAGING_DIR_HOST)/bin/libdeflate-gzip -dc | ||
endif | ||
|
||
ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"") | ||
ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"") | ||
define Kernel/Prepare/Default | ||
$(LINUX_CAT) $(DL_DIR)/$(LINUX_SOURCE) | $(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS) | ||
$(Kernel/Patch) | ||
$(if $(QUILT),touch $(LINUX_DIR)/.quilt_used) | ||
endef | ||
else | ||
define Kernel/Prepare/Default | ||
$(LINUX_CAT) $(DL_DIR)/$(LINUX_SOURCE) | $(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS) | ||
$(Kernel/Patch) | ||
$(if $(QUILT),touch $(LINUX_DIR)/.quilt_used) | ||
endef | ||
endif | ||
else | ||
define Kernel/Prepare/Default | ||
mkdir -p $(KERNEL_BUILD_DIR) | ||
if [ -d $(LINUX_DIR) ]; then \ | ||
rmdir $(LINUX_DIR); \ | ||
fi | ||
ln -s $(CONFIG_EXTERNAL_KERNEL_TREE) $(LINUX_DIR) | ||
if [ -d $(LINUX_DIR)/user_headers ]; then \ | ||
rm -rf $(LINUX_DIR)/user_headers; \ | ||
fi | ||
endef | ||
endif | ||
|
||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) | ||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y) | ||
define Kernel/SetInitramfs/PreConfigure | ||
grep -v -e CONFIG_BLK_DEV_INITRD $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config | ||
echo 'CONFIG_BLK_DEV_INITRD=y' >> $(LINUX_DIR)/.config | ||
echo 'CONFIG_INITRAMFS_SOURCE=""' >> $(LINUX_DIR)/.config | ||
endef | ||
else | ||
ifeq ($(strip $(CONFIG_EXTERNAL_CPIO)),"") | ||
define Kernel/SetInitramfs/PreConfigure | ||
grep -v -e INITRAMFS -e CONFIG_RD_ -e CONFIG_BLK_DEV_INITRD $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config | ||
echo 'CONFIG_BLK_DEV_INITRD=y' >> $(LINUX_DIR)/.config | ||
echo 'CONFIG_INITRAMFS_SOURCE="$(strip $(TARGET_DIR) $(INITRAMFS_EXTRA_FILES))"' >> $(LINUX_DIR)/.config | ||
endef | ||
else | ||
define Kernel/SetInitramfs/PreConfigure | ||
grep -v INITRAMFS $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config | ||
echo 'CONFIG_INITRAMFS_SOURCE="$(call qstrip,$(CONFIG_EXTERNAL_CPIO))"' >> $(LINUX_DIR)/.config | ||
endef | ||
endif | ||
endif | ||
|
||
define Kernel/SetInitramfs | ||
rm -f $(LINUX_DIR)/.config.prev | ||
mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config.old | ||
$(call Kernel/SetInitramfs/PreConfigure) | ||
echo "# CONFIG_INITRAMFS_PRESERVE_MTIME is not set" >> $(LINUX_DIR)/.config | ||
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y) | ||
echo 'CONFIG_INITRAMFS_ROOT_UID=$(shell id -u)' >> $(LINUX_DIR)/.config | ||
echo 'CONFIG_INITRAMFS_ROOT_GID=$(shell id -g)' >> $(LINUX_DIR)/.config | ||
echo "$(if $(CONFIG_TARGET_INITRAMFS_FORCE),CONFIG_INITRAMFS_FORCE=y,# CONFIG_INITRAMFS_FORCE is not set)" >> $(LINUX_DIR)/.config | ||
else | ||
echo "# CONFIG_INITRAMFS_FORCE is not set" >> $(LINUX_DIR)/.config | ||
endif | ||
echo "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_NONE),CONFIG_INITRAMFS_COMPRESSION_NONE=y,# CONFIG_INITRAMFS_COMPRESSION_NONE is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_GZIP),CONFIG_INITRAMFS_COMPRESSION_GZIP=y\nCONFIG_RD_GZIP=y,# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set\n# CONFIG_RD_GZIP is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_BZIP2),CONFIG_INITRAMFS_COMPRESSION_BZIP2=y\nCONFIG_RD_BZIP2=y,# CONFIG_INITRAMFS_COMPRESSION_BZIP2 is not set\n# CONFIG_RD_BZIP2 is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZMA),CONFIG_INITRAMFS_COMPRESSION_LZMA=y\nCONFIG_RD_LZMA=y,# CONFIG_INITRAMFS_COMPRESSION_LZMA is not set\n# CONFIG_RD_LZMA is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZO),CONFIG_INITRAMFS_COMPRESSION_LZO=y\nCONFIG_RD_LZO=y,# CONFIG_INITRAMFS_COMPRESSION_LZO is not set\n# CONFIG_RD_LZO is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_XZ),CONFIG_INITRAMFS_COMPRESSION_XZ=y\nCONFIG_RD_XZ=y,# CONFIG_INITRAMFS_COMPRESSION_XZ is not set\n# CONFIG_RD_XZ is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZ4),CONFIG_INITRAMFS_COMPRESSION_LZ4=y\nCONFIG_RD_LZ4=y,# CONFIG_INITRAMFS_COMPRESSION_LZ4 is not set\n# CONFIG_RD_LZ4 is not set)" >> $(LINUX_DIR)/.config | ||
echo -e "$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_ZSTD),CONFIG_INITRAMFS_COMPRESSION_ZSTD=y\nCONFIG_RD_ZSTD=y,# CONFIG_INITRAMFS_COMPRESSION_ZSTD is not set\n# CONFIG_RD_ZSTD is not set)" >> $(LINUX_DIR)/.config | ||
endef | ||
else | ||
endif | ||
|
||
define Kernel/SetNoInitramfs | ||
mv $(LINUX_DIR)/.config.set $(LINUX_DIR)/.config.old | ||
grep -v INITRAMFS $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config.set | ||
echo 'CONFIG_INITRAMFS_SOURCE=""' >> $(LINUX_DIR)/.config.set | ||
echo '# CONFIG_INITRAMFS_FORCE is not set' >> $(LINUX_DIR)/.config.set | ||
echo "# CONFIG_INITRAMFS_PRESERVE_MTIME is not set" >> $(LINUX_DIR)/.config.set | ||
endef | ||
|
||
define Kernel/Configure/Default | ||
rm -f $(LINUX_DIR)/localversion | ||
$(LINUX_CONF_CMD) > $(LINUX_DIR)/.config.target | ||
# copy CONFIG_KERNEL_* settings over to .config.target | ||
awk '/^(#[[:space:]]+)?CONFIG_KERNEL/{sub("CONFIG_KERNEL_","CONFIG_");print}' $(TOPDIR)/.config >> $(LINUX_DIR)/.config.target | ||
echo "# CONFIG_KALLSYMS_EXTRA_PASS is not set" >> $(LINUX_DIR)/.config.target | ||
echo "# CONFIG_KALLSYMS_ALL is not set" >> $(LINUX_DIR)/.config.target | ||
echo "CONFIG_KALLSYMS_UNCOMPRESSED=y" >> $(LINUX_DIR)/.config.target | ||
$(SCRIPT_DIR)/package-metadata.pl kconfig $(TMP_DIR)/.packageinfo $(TOPDIR)/.config $(KERNEL_PATCHVER) > $(LINUX_DIR)/.config.override | ||
$(SCRIPT_DIR)/kconfig.pl 'm+' '+' $(LINUX_DIR)/.config.target /dev/null $(LINUX_DIR)/.config.override > $(LINUX_DIR)/.config.set | ||
$(call Kernel/SetNoInitramfs) | ||
rm -rf $(KERNEL_BUILD_DIR)/modules | ||
cmp -s $(LINUX_DIR)/.config.set $(LINUX_DIR)/.config.prev || { \ | ||
cp $(LINUX_DIR)/.config.set $(LINUX_DIR)/.config; \ | ||
cp $(LINUX_DIR)/.config.set $(LINUX_DIR)/.config.prev; \ | ||
} | ||
$(_SINGLE) [ -d $(LINUX_DIR)/user_headers ] || $(KERNEL_MAKE) $(if $(findstring uml,$(BOARD)),ARCH=$(ARCH)) INSTALL_HDR_PATH=$(LINUX_DIR)/user_headers headers_install | ||
grep '=[ym]' $(LINUX_DIR)/.config.set | LC_ALL=C sort | $(MKHASH) md5 > $(LINUX_DIR)/.vermagic | ||
endef | ||
|
||
define Kernel/Configure/Initramfs | ||
$(call Kernel/SetInitramfs) | ||
endef | ||
|
||
define Kernel/CompileModules/Default | ||
rm -f $(LINUX_DIR)/vmlinux $(LINUX_DIR)/System.map | ||
+$(KERNEL_MAKE) $(if $(KERNELNAME),$(KERNELNAME),all) modules | ||
# If .config did not change, use the previous timestamp to avoid package rebuilds | ||
cmp -s $(LINUX_DIR)/.config $(LINUX_DIR)/.config.modules.save && \ | ||
mv $(LINUX_DIR)/.config.modules.save $(LINUX_DIR)/.config; \ | ||
$(CP) $(LINUX_DIR)/.config $(LINUX_DIR)/.config.modules.save | ||
endef | ||
|
||
OBJCOPY_STRIP = -R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id | ||
|
||
# AMD64 shares the location with x86 | ||
ifeq ($(LINUX_KARCH),x86_64) | ||
IMAGES_DIR:=../../x86/boot | ||
endif | ||
|
||
define Kernel/CopyImage | ||
cmp -s $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/vmlinux$(1).debug || { \ | ||
$(KERNEL_CROSS)objcopy -O binary $(OBJCOPY_STRIP) -S $(LINUX_DIR)/vmlinux $(LINUX_KERNEL)$(1); \ | ||
$(KERNEL_CROSS)objcopy $(OBJCOPY_STRIP) -S $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/vmlinux$(1).elf; \ | ||
$(CP) $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/vmlinux$(1).debug; \ | ||
$(foreach k, \ | ||
$(if $(KERNEL_IMAGES),$(KERNEL_IMAGES),$(filter-out vmlinux dtbs,$(KERNELNAME))), \ | ||
$(CP) $(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/$(IMAGES_DIR)/$(k) $(KERNEL_BUILD_DIR)/$(k)$(1); \ | ||
) \ | ||
} | ||
endef | ||
|
||
define Kernel/CompileImage/Default | ||
rm -f $(TARGET_DIR)/init | ||
+$(KERNEL_MAKE) $(KERNEL_MAKEOPTS_IMAGE) $(if $(KERNELNAME),$(KERNELNAME),all) | ||
$(call Kernel/CopyImage) | ||
endef | ||
|
||
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) | ||
define Kernel/CompileImage/Initramfs | ||
$(call Kernel/Configure/Initramfs) | ||
$(CP) $(GENERIC_PLATFORM_DIR)/other-files/init $(TARGET_DIR)/init | ||
$(if $(SOURCE_DATE_EPOCH),touch -hcd "@$(SOURCE_DATE_EPOCH)" $(TARGET_DIR) $(TARGET_DIR)/init) | ||
rm -rf $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)/usr/initramfs_data.cpio* | ||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y) | ||
ifneq ($(call qstrip,$(CONFIG_EXTERNAL_CPIO)),) | ||
$(CP) $(CONFIG_EXTERNAL_CPIO) $(KERNEL_BUILD_DIR)/initrd.cpio | ||
else | ||
( cd $(TARGET_DIR); find . | LC_ALL=C sort | $(STAGING_DIR_HOST)/bin/cpio --reproducible -o -H newc -R 0:0 > $(KERNEL_BUILD_DIR)/initrd.cpio ) | ||
endif | ||
$(if $(SOURCE_DATE_EPOCH),touch -hcd "@$(SOURCE_DATE_EPOCH)" $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_BZIP2),$(STAGING_DIR_HOST)/bin/bzip2 -9 -c < $(KERNEL_BUILD_DIR)/initrd.cpio > $(KERNEL_BUILD_DIR)/initrd.cpio.bzip2) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_GZIP),$(STAGING_DIR_HOST)/bin/libdeflate-gzip -n -f -S .gzip -12 $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZ4),$(STAGING_DIR_HOST)/bin/lz4c -l -c1 -fz --favor-decSpeed $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZMA),$(STAGING_DIR_HOST)/bin/lzma e -lc1 -lp2 -pb2 $(KERNEL_BUILD_DIR)/initrd.cpio $(KERNEL_BUILD_DIR)/initrd.cpio.lzma) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_LZO),$(STAGING_DIR_HOST)/bin/lzop -9 -f $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_XZ),$(STAGING_DIR_HOST)/bin/xz -T$(if $(filter 1,$(NPROC)),2,0) -9 -fz --check=crc32 $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
$(if $(CONFIG_TARGET_INITRAMFS_COMPRESSION_ZSTD),$(STAGING_DIR_HOST)/bin/zstd -T0 -f -o $(KERNEL_BUILD_DIR)/initrd.cpio.zstd $(KERNEL_BUILD_DIR)/initrd.cpio) | ||
endif | ||
+$(KERNEL_MAKE) $(KERNEL_MAKEOPTS_IMAGE) $(if $(KERNELNAME),$(KERNELNAME),all) | ||
$(call Kernel/CopyImage,-initramfs) | ||
endef | ||
else | ||
define Kernel/CompileImage/Initramfs | ||
endef | ||
endif | ||
|
||
define Kernel/Clean/Default | ||
rm -f $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)/.configured | ||
rm -f $(LINUX_KERNEL) | ||
$(_SINGLE)$(MAKE) -C $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) clean | ||
endef |
127 changes: 127 additions & 0 deletions
127
6.11/package/boot/uboot-envtools/files/mediatek_filogic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# | ||
# Copyright (C) 2021 OpenWrt.org | ||
# | ||
|
||
[ -e /etc/config/ubootenv ] && exit 0 | ||
|
||
touch /etc/config/ubootenv | ||
|
||
. /lib/uboot-envtools.sh | ||
. /lib/functions.sh | ||
|
||
board=$(board_name) | ||
|
||
case "$board" in | ||
asus,rt-ax59u) | ||
ubootenv_add_uci_config "/dev/mtd0" "0x100000" "0x20000" "0x20000" | ||
;; | ||
bananapi,bpi-r3) | ||
rootdev="$(cmdline_get_var root)" | ||
rootdev="${rootdev##*/}" | ||
rootdev="${rootdev%%p[0-9]*}" | ||
case "$rootdev" in | ||
mmc*) | ||
local envdev=$(find_mmc_part "ubootenv" $rootdev) | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x40000" "0x40000" "1" | ||
ubootenv_add_uci_config "$envdev" "0x40000" "0x40000" "0x40000" "1" | ||
;; | ||
mtd*) | ||
local envdev=/dev/mtd$(find_mtd_index "u-boot-env") | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1" | ||
ubootenv_add_uci_config "$envdev" "0x20000" "0x20000" "0x20000" "1" | ||
;; | ||
ubi*) | ||
. /lib/upgrade/nand.sh | ||
local envubi=$(nand_find_ubi ubi) | ||
local envdev=/dev/$(nand_find_volume $envubi ubootenv) | ||
local envdev2=/dev/$(nand_find_volume $envubi ubootenv2) | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x1f000" "1" | ||
ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x1f000" "1" | ||
;; | ||
esac | ||
;; | ||
cmcc,rax3000m) | ||
case "$(cmdline_get_var root)" in | ||
/dev/mmc*) | ||
local envdev=$(find_mmc_part "ubootenv" "mmcblk0") | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x40000" "0x40000" "1" | ||
ubootenv_add_uci_config "$envdev" "0x40000" "0x40000" "0x40000" "1" | ||
;; | ||
*) | ||
. /lib/upgrade/nand.sh | ||
local envubi=$(nand_find_ubi ubi) | ||
local envdev=/dev/$(nand_find_volume $envubi ubootenv) | ||
local envdev2=/dev/$(nand_find_volume $envubi ubootenv2) | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x1f000" "1" | ||
ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x1f000" "1" | ||
;; | ||
esac | ||
;; | ||
cetron,ct3003|\ | ||
netgear,wax220|\ | ||
zbtlink,zbt-z8102ax|\ | ||
z8102ax-128m|\ | ||
z8102ax-64m|\ | ||
zbtlink,zbt-z8103ax) | ||
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000" | ||
;; | ||
h3c,magic-nx30-pro|\ | ||
jcg,q30-pro|\ | ||
qihoo,360t7|\ | ||
tplink,tl-xdr4288|\ | ||
tplink,tl-xdr6086|\ | ||
tplink,tl-xdr6088|\ | ||
xiaomi,mi-router-ax3000t-ubootmod|\ | ||
xiaomi,mi-router-wr30u-ubootmod|\ | ||
xiaomi,redmi-router-ax6000-ubootmod) | ||
. /lib/upgrade/nand.sh | ||
local envubi=$(nand_find_ubi ubi) | ||
local envdev=/dev/$(nand_find_volume $envubi ubootenv) | ||
local envdev2=/dev/$(nand_find_volume $envubi ubootenv2) | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x20000" "1" | ||
ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x20000" "1" | ||
;; | ||
glinet,gl-mt2500|\ | ||
glinet,gl-mt6000) | ||
local envdev=$(find_mmc_part "u-boot-env") | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x80000" | ||
;; | ||
glinet,gl-mt3000) | ||
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x20000" | ||
;; | ||
mercusys,mr90x-v1|\ | ||
routerich,ax3000) | ||
local envdev=/dev/mtd$(find_mtd_index "u-boot-env") | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x20000" "1" | ||
;; | ||
ubnt,unifi-6-plus) | ||
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x80000" "0x10000" | ||
;; | ||
xiaomi,mi-router-ax3000t|\ | ||
xiaomi,mi-router-wr30u-112m-nmbm|\ | ||
xiaomi,mi-router-wr30u-stock|\ | ||
xiaomi,redmi-router-ax6000-stock) | ||
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x20000" | ||
ubootenv_add_uci_sys_config "/dev/mtd2" "0x0" "0x10000" "0x20000" | ||
;; | ||
zyxel,ex5601-t0) | ||
local envdev=/dev/mtd$(find_mtd_index "u-boot-env") | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x20000" "0x40000" "2" | ||
;; | ||
zyxel,ex5601-t0-ubootmod) | ||
. /lib/upgrade/nand.sh | ||
local envubi=$(nand_find_ubi ubi) | ||
local envdev=/dev/$(nand_find_volume $envubi ubootenv) | ||
local envdev2=/dev/$(nand_find_volume $envubi ubootenv2) | ||
ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x20000" "1" | ||
ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x20000" "1" | ||
;; | ||
zyxel,ex5700-telenor) | ||
ubootenv_add_uci_config "/dev/ubootenv" "0x0" "0x4000" "0x4000" "1" | ||
;; | ||
esac | ||
|
||
config_load ubootenv | ||
config_foreach ubootenv_add_app_config | ||
|
||
exit 0 |
Oops, something went wrong.