diff options
author | dir <dir@ableton.com> | 2017-11-30 14:48:41 +0100 |
---|---|---|
committer | dir <dir@ableton.com> | 2018-08-13 17:54:03 +0200 |
commit | 6ffa4d43382fe8187a0b336b091d1c400a4a7081 (patch) | |
tree | eb99ef0e5e63ceb996214b1703ecabe4a3bd499f /package/base-files/Makefile | |
parent | 009e895adb57d1738b10c5dea3d6af88c5142abc (diff) |
Implement mdev logging output on demand
@upstream
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 78da71657..8a8a26e5e 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -21,6 +21,12 @@ CONFIG_STYLE:= manual BUILD_STYLE:= manual INSTALL_STYLE:= manual +ifeq ($(ADK_RUNTIME_DEV_MDEV_LOGGING),y) +ADK_RUNTIME_DEV_MDEV_LOGGING_LINE:='echo >/dev/mdev.log' +else +ADK_RUNTIME_DEV_MDEV_LOGGING_LINE:='' +endif + do-install: $(CP) ./src/* $(IDIR_BASE_FILES) mkdir -p $(IDIR_BASE_FILES)/{etc,dev,boot,root,sys,proc,tmp,run,var,mnt,media} @@ -55,9 +61,11 @@ endif endif ifeq ($(ADK_RUNTIME_DEV_MDEV),y) $(CP) ./files/rcdev.mdev $(IDIR_BASE_FILES)/etc/init.d/rcdev + $(SED) "s#@ADK_RUNTIME_DEV_MDEV_LOGGING@#"$(ADK_RUNTIME_DEV_MDEV_LOGGING_LINE)"#g" $(IDIR_BASE_FILES)/etc/init.d/rcdev $(CP) ./files/mdev.conf $(IDIR_BASE_FILES)/etc $(CP) ./files/mdev $(IDIR_BASE_FILES)/etc endif + ifeq ($(ADK_RUNTIME_DEV_UDEV),y) $(CP) ./files/rcdev.udev $(IDIR_BASE_FILES)/etc/init.d/rcdev endif |