diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:07:05 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-08-04 19:07:05 +0000 |
commit | 02a623ddf96aa97c341a287bbb4ec5370a069444 (patch) | |
tree | 6923139fb98dd1d2e99b456503b37d4dd92e1136 /target/linux | |
parent | fa0ac2de33c0d19b5aa035d5091f77ddc74b0e6f (diff) |
buildroot: remove trailing spaces
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`;
do
sed -i 's/ \+$//' $i;
done
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/Config.in.advanced | 20 | ||||
-rw-r--r-- | target/linux/Makefile.in | 2 | ||||
-rw-r--r-- | target/linux/Makefile.in.advanced | 4 |
3 files changed, 13 insertions, 13 deletions
diff --git a/target/linux/Config.in.advanced b/target/linux/Config.in.advanced index 3e68145db..a5f9418b8 100644 --- a/target/linux/Config.in.advanced +++ b/target/linux/Config.in.advanced @@ -1,33 +1,33 @@ if BR2_KERNEL_LINUX_ADVANCED # --- "Linux kernel options" # This file exports the following symbols for use by Makefile's -# +# # BR2_PACKAGE_LINUX -# +# # BR2_KERNEL_SITE # BR2_DOWNLOAD_LINUX26_VERSION # BR2_LINUX26_VERSION -# +# # BR2_KERNEL_PATCH_SITE # BR2_KERNEL_PATCH -# +# # BR2_LINUX26_CUSTOM # BR2_CUSTOM_LINUX26_PATCH_SITE # BR2_CUSTOM_LINUX26_PATCH -# +# # BR2_LINUX_BSP_PATCH -# +# # BR2_PACKAGE_LINUX_USE_KCONFIG # BR2_PACKAGE_LINUX_USE_DEFCONFIG # BR2_PACKAGE_LINUX_USE_XCONFIG # BR2_PACKAGE_LINUX_KCONFIG -# +# # BR2_PACKAGE_LINUX_FORMAT -# +# # BR2_LINUX_COPYTO_ROOTFS # BR2_LINUX_COPYTO_TFTPBOOT # BR2_LINUX_COPYTO -# +# # --------------------------------------------------------------------------- # --- These 'constants' requires regular maintenance, so put them first config BR2_KERNEL_PATCH_LEVEL @@ -340,7 +340,7 @@ source "target/device/Config.in.linux.patches" config BR2_LINUX_BOARD_PATCH bool "Add board specific patch" - default y + default y config BR2_LINUX_BSP_PATCH string "Additional patch to apply (from \$(DL_DIR))" diff --git a/target/linux/Makefile.in b/target/linux/Makefile.in index eb2b36ee1..ca6b352cf 100644 --- a/target/linux/Makefile.in +++ b/target/linux/Makefile.in @@ -91,7 +91,7 @@ LINUX26_MAKE_FLAGS = HOSTCC="$(HOSTCC)" HOSTCFLAGS="$(HOSTCFLAGS)" \ INSTALL_MOD_PATH=$(TARGET_DIR) \ CROSS_COMPILE=$(KERNEL_CROSS) \ LDFLAGS="$(TARGET_LDFLAGS)" \ - LZMA="$(LZMA)" + LZMA="$(LZMA)" $(LINUX26_KCONFIG): @if [ ! -f "$(LINUX26_KCONFIG)" ] ; then \ diff --git a/target/linux/Makefile.in.advanced b/target/linux/Makefile.in.advanced index 9a3a69a50..c3d713a3d 100644 --- a/target/linux/Makefile.in.advanced +++ b/target/linux/Makefile.in.advanced @@ -187,7 +187,7 @@ LINUX26_MAKE_FLAGS = HOSTCC="$(HOSTCC)" HOSTCFLAGS="$(HOSTCFLAGS)" \ INSTALL_MOD_PATH=$(TARGET_DIR) \ CROSS_COMPILE=$(KERNEL_CROSS) \ LDFLAGS="$(TARGET_LDFLAGS)" \ - LZMA="$(LZMA)" + LZMA="$(LZMA)" # ============================================================================= # ifneq ($(strip $(LINUX26_VERSION)),$(strip $(LINUX_HEADERS_VERSION))) @@ -300,7 +300,7 @@ KERNEL_EXTRA_VERSION:=$(strip $(subst ",,$(BR2_EXTRA_VERSION))) $(LINUX26_DIR)/.config: $(LINUX26_DIR)/.patched.board ifeq ($(BR2_PACKAGE_LINUX_USE_DEFCONFIG),y) - $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig + $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig endif ifeq ($(BR2_PACKAGE_LINUX_USE_XCONFIG),y) $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(KERNEL_CONFIG_METHOD) |