diff options
author | Daniel Dickinson <daniel@cshore.neomailbox.net> | 2011-01-18 14:46:25 +0000 |
---|---|---|
committer | Daniel Dickinson <daniel@cshore.neomailbox.net> | 2011-01-18 14:46:25 +0000 |
commit | d333072259eab4f7113f3ff96f5338dd2fe63590 (patch) | |
tree | f5addc3c8c71f2625d8b43e537ebb4c80156f26b /package/base-files | |
parent | b0d7e5ba2e0e67d25577b97e81c9b9a7a6a94234 (diff) | |
download | upstream-d333072259eab4f7113f3ff96f5338dd2fe63590.tar.gz upstream-d333072259eab4f7113f3ff96f5338dd2fe63590.tar.bz2 upstream-d333072259eab4f7113f3ff96f5338dd2fe63590.zip |
[package] base-files: Fix typo in option name for disabling failsafe announcment
Thanks to Andrey Zholos for this patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25040 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 01058ba871..2ef88dbb74 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -317,7 +317,7 @@ define ImageConfigOptions echo 'pi_netmask=$(if $(CONFIG_TARGET_PREINIT_NETMASK),$(CONFIG_TARGET_PREINIT_NETMASK),"255.255.255.0")' >>$(1)/lib/preinit/00_preinit.conf echo 'pi_broadcast=$(if $(CONFIG_TARGET_PREINIT_BROADCAST),$(CONFIG_TARGET_PREINIT_BROADCAST),"192.168.1.255")' >>$(1)/lib/preinit/00_preinit.conf echo 'pi_preinit_net_messages="$(CONFIG_TARGET_PREINIT_SHOW_NETMSG)"' >>$(1)/lib/preinit/00_preinit.conf - echo 'pi_preinit_no_failsafe_netmsg="$(CONFIG_TARGET_SUPPRESS_FAILSAFE_NETMSG)"' >>$(1)/lib/preinit/00_preinit.conf + echo 'pi_preinit_no_failsafe_netmsg="$(CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG)"' >>$(1)/lib/preinit/00_preinit.conf endef endif |