0001-Align-early-init-PATH-with-system-wide-OpenWrt-path.patch 902 B

1234567891011121314151617181920212223242526272829303132
  1. From 45cb04fd85d788a37367a5385e5e90dd98a0a991 Mon Sep 17 00:00:00 2001
  2. From: Jo-Philipp Wich <jow@openwrt.org>
  3. Date: Thu, 14 Jan 2016 13:51:36 +0100
  4. Subject: [PATCH] Align early init PATH with system wide OpenWrt path value
  5. Changeset r47080 globally unified the executable search path in OpenWrt,
  6. now update procd to use the same path value.
  7. This fixes diverging path values observed in programs launched by netifd
  8. which inherits the early path value from procd.
  9. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
  10. ---
  11. initd/early.c | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/initd/early.c b/initd/early.c
  14. index e87774f..5821c58 100644
  15. --- a/initd/early.c
  16. +++ b/initd/early.c
  17. @@ -90,7 +90,7 @@ early_mounts(void)
  18. static void
  19. early_env(void)
  20. {
  21. - setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin", 1);
  22. + setenv("PATH", "/usr/sbin:/usr/bin:/sbin:/bin", 1);
  23. }
  24. void
  25. --
  26. 2.1.4