treewide: fix spelling 'seperate' -> 'separate'
This popular spelling mistake was also introduced by myself lately. Fix it everywhere. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
1ca5de13a1
commit
ebcb4f1d0a
@ -17,7 +17,7 @@ menu "Target Images"
|
|||||||
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_lantiq
|
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_lantiq
|
||||||
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_mpc85xx
|
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_mpc85xx
|
||||||
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_ramips
|
default TARGET_INITRAMFS_COMPRESSION_LZMA if TARGET_ramips
|
||||||
default TARGET_INITRAMFS_COMPRESSION_XZ if USES_SEPERATE_INITRAMFS
|
default TARGET_INITRAMFS_COMPRESSION_XZ if USES_SEPARATE_INITRAMFS
|
||||||
default TARGET_INITRAMFS_COMPRESSION_NONE
|
default TARGET_INITRAMFS_COMPRESSION_NONE
|
||||||
depends on TARGET_ROOTFS_INITRAMFS
|
depends on TARGET_ROOTFS_INITRAMFS
|
||||||
help
|
help
|
||||||
@ -36,11 +36,11 @@ menu "Target Images"
|
|||||||
bool "lzma"
|
bool "lzma"
|
||||||
|
|
||||||
config TARGET_INITRAMFS_COMPRESSION_LZO
|
config TARGET_INITRAMFS_COMPRESSION_LZO
|
||||||
depends on !TARGET_ROOTFS_INITRAMFS_SEPERATE
|
depends on !TARGET_ROOTFS_INITRAMFS_SEPARATE
|
||||||
bool "lzo"
|
bool "lzo"
|
||||||
|
|
||||||
config TARGET_INITRAMFS_COMPRESSION_LZ4
|
config TARGET_INITRAMFS_COMPRESSION_LZ4
|
||||||
depends on !TARGET_ROOTFS_INITRAMFS_SEPERATE
|
depends on !TARGET_ROOTFS_INITRAMFS_SEPARATE
|
||||||
bool "lz4"
|
bool "lz4"
|
||||||
|
|
||||||
config TARGET_INITRAMFS_COMPRESSION_XZ
|
config TARGET_INITRAMFS_COMPRESSION_XZ
|
||||||
@ -65,12 +65,12 @@ menu "Target Images"
|
|||||||
help
|
help
|
||||||
Ignore the initramfs passed by the bootloader.
|
Ignore the initramfs passed by the bootloader.
|
||||||
|
|
||||||
config TARGET_ROOTFS_INITRAMFS_SEPERATE
|
config TARGET_ROOTFS_INITRAMFS_SEPARATE
|
||||||
bool "seperate ramdisk"
|
bool "separate ramdisk"
|
||||||
depends on USES_SEPERATE_INITRAMFS && TARGET_ROOTFS_INITRAMFS && !TARGET_INITRAMFS_FORCE
|
depends on USES_SEPARATE_INITRAMFS && TARGET_ROOTFS_INITRAMFS && !TARGET_INITRAMFS_FORCE
|
||||||
default y if USES_SEPERATE_INITRAMFS
|
default y if USES_SEPARATE_INITRAMFS
|
||||||
help
|
help
|
||||||
Generate seperate initrd.cpio instead of embedding it.
|
Generate separate initrd.cpio instead of embedding it.
|
||||||
This is useful for generating images with a dedicated
|
This is useful for generating images with a dedicated
|
||||||
ramdisk e.g. in U-Boot's uImage and uImage.FIT formats.
|
ramdisk e.g. in U-Boot's uImage and uImage.FIT formats.
|
||||||
|
|
||||||
|
@ -210,7 +210,7 @@ define Build/fit
|
|||||||
$(if $(word 2,$(1)),-d $(word 2,$(1))) -C $(word 1,$(1)) \
|
$(if $(word 2,$(1)),-d $(word 2,$(1))) -C $(word 1,$(1)) \
|
||||||
$(if $(findstring with-rootfs,$(word 3,$(1))),-r $(IMAGE_ROOTFS)) \
|
$(if $(findstring with-rootfs,$(word 3,$(1))),-r $(IMAGE_ROOTFS)) \
|
||||||
$(if $(findstring with-initrd,$(word 3,$(1))), \
|
$(if $(findstring with-initrd,$(word 3,$(1))), \
|
||||||
$(if $(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPERATE), \
|
$(if $(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE), \
|
||||||
-i $(KERNEL_BUILD_DIR)/initrd.cpio$(strip $(call Build/initrd_compression)))) \
|
-i $(KERNEL_BUILD_DIR)/initrd.cpio$(strip $(call Build/initrd_compression)))) \
|
||||||
-a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
|
-a $(KERNEL_LOADADDR) -e $(if $(KERNEL_ENTRY),$(KERNEL_ENTRY),$(KERNEL_LOADADDR)) \
|
||||||
$(if $(DEVICE_FDT_NUM),-n $(DEVICE_FDT_NUM)) \
|
$(if $(DEVICE_FDT_NUM),-n $(DEVICE_FDT_NUM)) \
|
||||||
|
@ -48,7 +48,7 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPERATE),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y)
|
||||||
define Kernel/SetInitramfs/PreConfigure
|
define Kernel/SetInitramfs/PreConfigure
|
||||||
grep -v -e CONFIG_BLK_DEV_INITRD $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config
|
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_BLK_DEV_INITRD=y' >> $(LINUX_DIR)/.config
|
||||||
@ -73,7 +73,7 @@ endif
|
|||||||
rm -f $(LINUX_DIR)/.config.prev
|
rm -f $(LINUX_DIR)/.config.prev
|
||||||
mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config.old
|
mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config.old
|
||||||
$(call Kernel/SetInitramfs/PreConfigure)
|
$(call Kernel/SetInitramfs/PreConfigure)
|
||||||
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPERATE),y)
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y)
|
||||||
echo 'CONFIG_INITRAMFS_ROOT_UID=$(shell id -u)' >> $(LINUX_DIR)/.config
|
echo 'CONFIG_INITRAMFS_ROOT_UID=$(shell id -u)' >> $(LINUX_DIR)/.config
|
||||||
echo 'CONFIG_INITRAMFS_ROOT_GID=$(shell id -g)' >> $(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
|
echo "$(if $(CONFIG_TARGET_INITRAMFS_FORCE),CONFIG_INITRAMFS_FORCE=y,# CONFIG_INITRAMFS_FORCE is not set)" >> $(LINUX_DIR)/.config
|
||||||
@ -159,7 +159,7 @@ define Kernel/CompileImage/Initramfs
|
|||||||
$(CP) $(GENERIC_PLATFORM_DIR)/other-files/init $(TARGET_DIR)/init
|
$(CP) $(GENERIC_PLATFORM_DIR)/other-files/init $(TARGET_DIR)/init
|
||||||
$(if $(SOURCE_DATE_EPOCH),touch -hcd "@$(SOURCE_DATE_EPOCH)" $(TARGET_DIR)/init)
|
$(if $(SOURCE_DATE_EPOCH),touch -hcd "@$(SOURCE_DATE_EPOCH)" $(TARGET_DIR)/init)
|
||||||
rm -rf $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)/usr/initramfs_data.cpio*
|
rm -rf $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)/usr/initramfs_data.cpio*
|
||||||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPERATE),y)
|
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE),y)
|
||||||
ifeq ($(CONFIG_EXTERNAL_CPIO),y)
|
ifeq ($(CONFIG_EXTERNAL_CPIO),y)
|
||||||
$(CP) $(CONFIG_EXTERNAL_CPIO) $(KERNEL_BUILD_DIR)/initrd.cpio
|
$(CP) $(CONFIG_EXTERNAL_CPIO) $(KERNEL_BUILD_DIR)/initrd.cpio
|
||||||
else
|
else
|
||||||
|
@ -119,7 +119,7 @@ menuconfig INITOPT
|
|||||||
prompt "Environment variables to set when starting init (start with none)" if INITOPT
|
prompt "Environment variables to set when starting init (start with none)" if INITOPT
|
||||||
default ""
|
default ""
|
||||||
help
|
help
|
||||||
Should be a space seperated list of variable assignments. These
|
Should be a space separated list of variable assignments. These
|
||||||
variables will be present in the environment. Spaces may not be
|
variables will be present in the environment. Spaces may not be
|
||||||
present (including through expansion) even in a quoted string
|
present (including through expansion) even in a quoted string
|
||||||
(env doesn't understanding quoting).
|
(env doesn't understanding quoting).
|
||||||
|
@ -42,7 +42,7 @@ define Package/b43legacy-firmware/config
|
|||||||
depends on B43LEGACY_FW_SQUASH
|
depends on B43LEGACY_FW_SQUASH
|
||||||
default "1,2,3,4"
|
default "1,2,3,4"
|
||||||
help
|
help
|
||||||
This is a comma seperated list of core revision numbers.
|
This is a comma separated list of core revision numbers.
|
||||||
|
|
||||||
Example (keep files for rev4 only):
|
Example (keep files for rev4 only):
|
||||||
4
|
4
|
||||||
|
@ -209,7 +209,7 @@ config PACKAGE_B43_USE_BCMA
|
|||||||
default "16,28,29,30" if TARGET_bcm47xx_mips74k
|
default "16,28,29,30" if TARGET_bcm47xx_mips74k
|
||||||
default "5,6,7,8,9,10,11,13,15,16,28,29,30"
|
default "5,6,7,8,9,10,11,13,15,16,28,29,30"
|
||||||
help
|
help
|
||||||
This is a comma seperated list of core revision numbers.
|
This is a comma separated list of core revision numbers.
|
||||||
|
|
||||||
Example (keep files for rev5 only):
|
Example (keep files for rev5 only):
|
||||||
5
|
5
|
||||||
@ -224,7 +224,7 @@ config PACKAGE_B43_USE_BCMA
|
|||||||
default "N,HT" if TARGET_bcm47xx_mips74k
|
default "N,HT" if TARGET_bcm47xx_mips74k
|
||||||
default "G,N,LP,HT"
|
default "G,N,LP,HT"
|
||||||
help
|
help
|
||||||
This is a comma seperated list of PHY types:
|
This is a comma separated list of PHY types:
|
||||||
A => A-PHY
|
A => A-PHY
|
||||||
AG => Dual A-PHY G-PHY
|
AG => Dual A-PHY G-PHY
|
||||||
G => G-PHY
|
G => G-PHY
|
||||||
|
@ -33,7 +33,7 @@ sub target_config_features(@) {
|
|||||||
/^fpu$/ and $ret .= "\tselect HAS_FPU\n";
|
/^fpu$/ and $ret .= "\tselect HAS_FPU\n";
|
||||||
/^spe_fpu$/ and $ret .= "\tselect HAS_SPE_FPU\n";
|
/^spe_fpu$/ and $ret .= "\tselect HAS_SPE_FPU\n";
|
||||||
/^ramdisk$/ and $ret .= "\tselect USES_INITRAMFS\n";
|
/^ramdisk$/ and $ret .= "\tselect USES_INITRAMFS\n";
|
||||||
/^seperate_ramdisk$/ and $ret .= "\tselect USES_INITRAMFS\n\tselect USES_SEPERATE_INITRAMFS\n";
|
/^separate_ramdisk$/ and $ret .= "\tselect USES_INITRAMFS\n\tselect USES_SEPARATE_INITRAMFS\n";
|
||||||
/^powerpc64$/ and $ret .= "\tselect powerpc64\n";
|
/^powerpc64$/ and $ret .= "\tselect powerpc64\n";
|
||||||
/^nommu$/ and $ret .= "\tselect NOMMU\n";
|
/^nommu$/ and $ret .= "\tselect NOMMU\n";
|
||||||
/^mips16$/ and $ret .= "\tselect HAS_MIPS16\n";
|
/^mips16$/ and $ret .= "\tselect HAS_MIPS16\n";
|
||||||
|
@ -51,7 +51,7 @@ config USES_DEVICETREE
|
|||||||
config USES_INITRAMFS
|
config USES_INITRAMFS
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config USES_SEPERATE_INITRAMFS
|
config USES_SEPARATE_INITRAMFS
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config USES_SQUASHFS
|
config USES_SQUASHFS
|
||||||
|
@ -3,7 +3,7 @@ From: Joakim Zhang <qiangqing.zhang@nxp.com>
|
|||||||
Date: Fri, 12 Jul 2019 08:02:38 +0000
|
Date: Fri, 12 Jul 2019 08:02:38 +0000
|
||||||
Subject: [PATCH] can: rx-offload: Prepare for CAN FD support
|
Subject: [PATCH] can: rx-offload: Prepare for CAN FD support
|
||||||
|
|
||||||
The skbs for classic CAN and CAN FD frames are allocated with seperate
|
The skbs for classic CAN and CAN FD frames are allocated with separate
|
||||||
functions: alloc_can_skb() and alloc_canfd_skb().
|
functions: alloc_can_skb() and alloc_canfd_skb().
|
||||||
|
|
||||||
In order to support CAN FD frames via the rx-offload helper, the driver
|
In order to support CAN FD frames via the rx-offload helper, the driver
|
||||||
|
@ -6,7 +6,7 @@ ARCH:=arm
|
|||||||
BOARD:=mediatek
|
BOARD:=mediatek
|
||||||
BOARDNAME:=MediaTek Ralink ARM
|
BOARDNAME:=MediaTek Ralink ARM
|
||||||
SUBTARGETS:=mt7622 mt7623 mt7629
|
SUBTARGETS:=mt7622 mt7623 mt7629
|
||||||
FEATURES:=squashfs nand seperate_ramdisk fpu
|
FEATURES:=squashfs nand separate_ramdisk fpu
|
||||||
|
|
||||||
KERNEL_PATCHVER:=5.4
|
KERNEL_PATCHVER:=5.4
|
||||||
KERNEL_TESTING_PATCHVER:=5.10
|
KERNEL_TESTING_PATCHVER:=5.10
|
||||||
|
@ -5,7 +5,7 @@ Subject: [PATCH] rockchip: use system LED for OpenWrt
|
|||||||
|
|
||||||
Use the SYS LED on the casing for showing system status.
|
Use the SYS LED on the casing for showing system status.
|
||||||
|
|
||||||
This patch is kept seperate from the NanoPi R2S support patch, as i plan
|
This patch is kept separate from the NanoPi R2S support patch, as i plan
|
||||||
on submitting the device support upstream.
|
on submitting the device support upstream.
|
||||||
|
|
||||||
Signed-off-by: David Bauer <mail@david-bauer.net>
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
||||||
|
@ -5,7 +5,7 @@ Subject: [PATCH] rockchip: use system LED for OpenWrt
|
|||||||
|
|
||||||
Use the SYS LED on the casing for showing system status.
|
Use the SYS LED on the casing for showing system status.
|
||||||
|
|
||||||
This patch is kept seperate from the NanoPi R2S support patch, as i plan
|
This patch is kept separate from the NanoPi R2S support patch, as i plan
|
||||||
on submitting the device support upstream.
|
on submitting the device support upstream.
|
||||||
|
|
||||||
Signed-off-by: David Bauer <mail@david-bauer.net>
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
||||||
|
Loading…
Reference in New Issue
Block a user