From 009e895adb57d1738b10c5dea3d6af88c5142abc Mon Sep 17 00:00:00 2001 From: stk Date: Wed, 21 Mar 2018 15:53:12 +0100 Subject: Remove glib dependency to libelf It looks like libelf is not used at all by glib, the way it's configured, so remove it. The problem was that libelf would create a libelf.so.0 file that was then mistankenly used by perf (instead of the libelf.so.1 file coming from the elfutils package that it is really supposed to use). This is just the minimal fix that works for us, because we are not using any other packages that depend on libelf; to really fix the problem properly, one would have to do what's mentioned in 2c333655f1 (get rid of libelf by porting existing users to elfutils). --- package/glib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/glib/Makefile b/package/glib/Makefile index 6cf4b874e..a90f8f08d 100644 --- a/package/glib/Makefile +++ b/package/glib/Makefile @@ -11,7 +11,7 @@ PKG_HASH:= 40ef3f44f2c651c7a31aedee44259809b6f03d3d20be44545cd7d177221c0b8d PKG_DESCR:= low-level core library that forms the basis of gtk+ PKG_SECTION:= libs/misc PKG_DEPENDS:= libpcre zlib -PKG_BUILDDEP:= glib-host libffi zlib libelf dbus pcre +PKG_BUILDDEP:= glib-host libffi zlib dbus pcre HOST_BUILDDEP:= pkgconf-host libiconv-host libffi-host python2-host gettext-host util-linux-host PKG_NEEDS:= threads intl iconv PKG_URL:= http://www.gtk.org/ -- cgit v1.2.3 From 6ffa4d43382fe8187a0b336b091d1c400a4a7081 Mon Sep 17 00:00:00 2001 From: dir Date: Thu, 30 Nov 2017 14:48:41 +0100 Subject: Implement mdev logging output on demand @upstream --- package/base-files/Makefile | 8 ++++++++ package/base-files/files/rcdev.mdev | 1 + target/config/Config.in.runtime | 4 ++++ 3 files changed, 13 insertions(+) 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 diff --git a/package/base-files/files/rcdev.mdev b/package/base-files/files/rcdev.mdev index 9af4535c1..b8afd453c 100644 --- a/package/base-files/files/rcdev.mdev +++ b/package/base-files/files/rcdev.mdev @@ -2,6 +2,7 @@ mount -o remount,nosuid,size=128k,mode=0755 -t tmpfs mdev /dev # start mdev dynamic device node management echo >/dev/mdev.seq +@ADK_RUNTIME_DEV_MDEV_LOGGING@ if [ -f /proc/sys/kernel/hotplug ];then echo "/sbin/mdev" >/proc/sys/kernel/hotplug fi diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index 6d5a460ab..35f65b48d 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -64,6 +64,10 @@ config ADK_RUNTIME_DEV_MDEV depends on ADK_PACKAGE_BUSYBOX depends on !ADK_RUNTIME_INIT_SYSTEMD +config ADK_RUNTIME_DEV_MDEV_LOGGING + bool "Log mdev events into /dev/mdev.log" + depends on ADK_RUNTIME_DEV_MDEV + config ADK_RUNTIME_DEV_UDEV bool "Use udev" select ADK_PACKAGE_UDEV -- cgit v1.2.3 From 685114a29b20e073483f395421290b685a4c5899 Mon Sep 17 00:00:00 2001 From: dir Date: Wed, 6 Dec 2017 18:06:12 +0100 Subject: Fix glib building on macOS @upstream --- package/glib/patches/patch-configure | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/glib/patches/patch-configure diff --git a/package/glib/patches/patch-configure b/package/glib/patches/patch-configure new file mode 100644 index 000000000..e7dea094f --- /dev/null +++ b/package/glib/patches/patch-configure @@ -0,0 +1,11 @@ +- glib-2.48.2.orig/configure 2016-08-17 18:37:42.000000000 +0200 ++++ glib-2.48.2/configure 2017-12-14 14:37:31.000000000 +0100 +@@ -6027,7 +6027,7 @@ if test "x$glib_have_cocoa" = "xyes"; th + + $as_echo "#define HAVE_COCOA 1" >>confdefs.h + +- COCOA_LIBS="-Wl,-framework,Foundation" ++ COCOA_LIBS="-Wl,-framework,Foundation,-framework,Cocoa" + LDFLAGS="$LDFLAGS $COCOA_LIBS" + + osx_version=`sw_vers -productVersion` -- cgit v1.2.3 From f8f1be180b4c868f385de586304296bfb5e50587 Mon Sep 17 00:00:00 2001 From: dir Date: Wed, 6 Dec 2017 18:19:06 +0100 Subject: Build util-linux without uuid-lib on macOS @upstream --- package/util-linux/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/util-linux/Makefile b/package/util-linux/Makefile index f95599fcd..86e84ec31 100644 --- a/package/util-linux/Makefile +++ b/package/util-linux/Makefile @@ -108,11 +108,13 @@ endif TARGET_CFLAGS+= -fPIC FAKE_FLAGS+= INSTALLSUID="install -m 4755" -HOST_CONFIGURE_ARGS+= --enable-libuuid \ - --enable-libblkid \ +HOST_CONFIGURE_ARGS+= --enable-libblkid \ --enable-libmount \ --disable-all-programs \ --disable-use-tty-group +ifneq ($(OS_FOR_BUILD),Darwin) +HOST_CONFIGURE_ARGS+= --enable-libuuid +endif fdisk-install: $(INSTALL_DIR) $(IDIR_FDISK)/usr/sbin -- cgit v1.2.3 From 51ef342cd9affe71354c4eb0a03c82f991e354ca Mon Sep 17 00:00:00 2001 From: dir Date: Thu, 14 Dec 2017 15:07:10 +0100 Subject: Speed up compilation of packages. @upstream --- mk/host-bottom.mk | 2 +- mk/pkg-bottom.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mk/host-bottom.mk b/mk/host-bottom.mk index a8f6db773..29cfc57ea 100644 --- a/mk/host-bottom.mk +++ b/mk/host-bottom.mk @@ -78,7 +78,7 @@ host-build: ${_HOST_BUILD_COOKIE}: ${_HOST_CONFIGURE_COOKIE} @$(CMD_TRACE) "compiling.. " ifneq (${HOST_STYLE},manual) - cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \ + cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \ ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET} $(MAKE_TRACE) endif ${MAKE} host-build $(MAKE_TRACE) diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk index c95572141..b46e381de 100644 --- a/mk/pkg-bottom.mk +++ b/mk/pkg-bottom.mk @@ -158,7 +158,7 @@ spkg-install: ${ALL_POSTINST} ${_FAKE_COOKIE}: ${_BUILD_COOKIE} @-rm -f ${_ALL_CONTROLS} @mkdir -p '${STAGING_PKG_DIR}/stamps' ${WRKINST} '${STAGING_TARGET_DIR}/scripts' - @${MAKE} ${_ALL_CONTROLS} $(MAKE_TRACE) + @${MAKE} -j${ADK_MAKE_JOBS} ${_ALL_CONTROLS} $(MAKE_TRACE) @env ${MAKE_ENV} ${MAKE} pre-install $(MAKE_TRACE) ifneq ($(filter meson,${INSTALL_STYLE}),) DESTDIR='$(WRKINST)' PATH='$(HOST_PATH)' \ -- cgit v1.2.3 From 07c3b1bf959087d37b7746189d93b929500855eb Mon Sep 17 00:00:00 2001 From: dir Date: Mon, 26 Mar 2018 18:19:58 +0200 Subject: Add TARGET_DIR to info variables --- mk/build.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mk/build.mk b/mk/build.mk index ed40042d1..5c0dbf761 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -674,4 +674,6 @@ info: @printf "TOOLCHAIN_DIR=$(TOOLCHAIN_DIR)\n" @printf "TARGET_PATH=$(TARGET_PATH)\n" @printf "LINUX_DIR=$(LINUX_DIR)\n" + @printf "TARGET_DIR=$(TARGET_DIR)\n" @printf -- "---OPENADK-INFO---\n" + -- cgit v1.2.3 From e9a80817647b5ac556519822251abd0346b6d468 Mon Sep 17 00:00:00 2001 From: dir Date: Tue, 2 Jan 2018 18:10:24 +0100 Subject: Add simple autologin program to be started by getty @upstream --- package/autologin/Makefile | 33 +++++++++++++++++++++++++++++++++ package/autologin/src/autologin.c | 10 ++++++++++ package/base-files/Makefile | 7 +++++++ package/base-files/files/inittab.serial | 2 +- target/config/Config.in.runtime | 5 +++++ 5 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 package/autologin/Makefile create mode 100644 package/autologin/src/autologin.c diff --git a/package/autologin/Makefile b/package/autologin/Makefile new file mode 100644 index 000000000..cc6fdb66a --- /dev/null +++ b/package/autologin/Makefile @@ -0,0 +1,33 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= autologin +PKG_VERSION:= 1.0 +PKG_RELEASE:= 1 +PKG_DESCR:= tool to automatically login a user with getty +PKG_SECTION:= sys/misc + +PKG_NOPARALLEL:= 1 +NO_DISTFILES:= 1 + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,AUTOLOGIN,autologin,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +BUILD_STYLE:= manual +INSTALL_STYLE:= manual + +TARGET_CPPFLAGS+= -I../autologin +TARGET_CPPFLAGS+= -D_GNU_SOURCE + +do-build: + $(CC) src/autologin.c -o $(WRKBUILD)/autologin + +autologin-install: + $(INSTALL_DIR) $(IDIR_AUTOLOGIN)/bin + $(INSTALL_BIN) $(WRKBUILD)/autologin $(IDIR_AUTOLOGIN)/bin + +include ${ADK_TOPDIR}/mk/pkg-bottom.mk diff --git a/package/autologin/src/autologin.c b/package/autologin/src/autologin.c new file mode 100644 index 000000000..14c7eeb56 --- /dev/null +++ b/package/autologin/src/autologin.c @@ -0,0 +1,10 @@ +// This file is part of the OpenADK project. OpenADK is copyrighted +// material, please see the LICENCE file in the top-level directory. + +#include +#include + +int main() +{ + return execlp("login\0","login\0","-f\0", "root\0" ,0); +} diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 8a8a26e5e..e9dd3d9cc 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -27,6 +27,12 @@ else ADK_RUNTIME_DEV_MDEV_LOGGING_LINE:='' endif +ifeq ($(ADK_RUNTIME_GETTY_SERIAL_AUTOLOGIN),y) +ADK_RUNTIME_GETTY_SERIAL_AUTOLOGIN_STANZA:= -n -l autologin +else +ADK_RUNTIME_GETTY_SERIAL_AUTOLOGIN_STANZA:= +endif + do-install: $(CP) ./src/* $(IDIR_BASE_FILES) mkdir -p $(IDIR_BASE_FILES)/{etc,dev,boot,root,sys,proc,tmp,run,var,mnt,media} @@ -83,6 +89,7 @@ endif cat ./files/inittab.serial >> $(IDIR_BASE_FILES)/etc/inittab $(SED) 's#@DEVICE@#$(ADK_RUNTIME_CONSOLE_SERIAL_DEVICE)#g' $(IDIR_BASE_FILES)/etc/inittab $(SED) 's#@SPEED@#$(ADK_RUNTIME_CONSOLE_SERIAL_SPEED)#' $(IDIR_BASE_FILES)/etc/inittab + $(SED) 's#@AUTOLOGIN@#$(ADK_RUNTIME_GETTY_SERIAL_AUTOLOGIN_STANZA)#' $(IDIR_BASE_FILES)/etc/inittab endif ifeq ($(ADK_RUNTIME_INIT_SYSVINIT),y) cp ./files/inittab.sysvinit $(IDIR_BASE_FILES)/etc/inittab diff --git a/package/base-files/files/inittab.serial b/package/base-files/files/inittab.serial index dcb09e438..ef31f1599 100644 --- a/package/base-files/files/inittab.serial +++ b/package/base-files/files/inittab.serial @@ -1 +1 @@ -@DEVICE@::respawn:/sbin/getty -i -L @DEVICE@ @SPEED@ vt100 +@DEVICE@::respawn:/sbin/getty -i -L @DEVICE@ @SPEED@ vt100 @AUTOLOGIN@ diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index 35f65b48d..7697bcaf9 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -367,6 +367,11 @@ config ADK_RUNTIME_GETTY_SERIAL help Start getty on serial console. +config ADK_RUNTIME_GETTY_SERIAL_AUTOLOGIN + bool "run autologin on serial getty" + depends on ADK_RUNTIME_GETTY_SERIAL + select ADK_PACKAGE_AUTOLOGIN + config ADK_RUNTIME_CONSOLE_VGA_DEVICE string "VGA console device" depends on ADK_TARGET_WITH_VGA || ADK_TARGET_GENERIC -- cgit v1.2.3 From 892990aa9b75b92bb7e6703a14d5aa45c43c5f34 Mon Sep 17 00:00:00 2001 From: dir Date: Tue, 2 Jan 2018 18:11:57 +0100 Subject: Add post build action @upstream --- docs/customize-rootfs.txt | 6 ++++++ target/Makefile | 6 ++++++ target/config/Config.in.adk | 4 ++++ 3 files changed, 16 insertions(+) diff --git a/docs/customize-rootfs.txt b/docs/customize-rootfs.txt index 3518d15bb..54846dba5 100644 --- a/docs/customize-rootfs.txt +++ b/docs/customize-rootfs.txt @@ -21,3 +21,9 @@ You can also point to another directory via: You can start with the example configuration files from +root_*+. The +extra+ directory will never be deleted by any clean target to avoid loss of customized configuration data. + +Another option is to configure a post-build action. This is available +in +Global settings+. It must point to a script relative to the root +of your openadk working copy. It will be invoked as part of the ++*-imageinstall+ step with $ADK_TOPDIR as first argument. You can use +it e.g. to modify the +root_*+ filesystem before bundling it. diff --git a/target/Makefile b/target/Makefile index 846620d6c..128d272de 100644 --- a/target/Makefile +++ b/target/Makefile @@ -228,6 +228,12 @@ endif $(MAKE) -C $(patsubst %-targethelp,%,$@) targethelp %-imageinstall: %-imageprepare +ifdef ADK_POST_BUILD_ACTION +ifneq ($(ADK_POST_BUILD_ACTION),"") + @printf "running post build action '$(ADK_POST_BUILD_ACTION)'\n" + $(ADK_TOPDIR)/$(ADK_POST_BUILD_ACTION) $(ADK_TOPDIR) +endif +endif $(MAKE) -C $(patsubst %-imageinstall,%,$@) imageinstall @for x in $$(ls $(ADK_TOPDIR)/scripts/postimage/*.sh 2>/dev/null); do \ [[ -x "$$x" ]] && $$x; \ diff --git a/target/config/Config.in.adk b/target/config/Config.in.adk index b414b70fd..060ee78e4 100644 --- a/target/config/Config.in.adk +++ b/target/config/Config.in.adk @@ -112,4 +112,8 @@ config ADK_TARGET_PORT help Port to use for SSH when running make check. +config ADK_POST_BUILD_ACTION + string "Path to script run post build. Must be relative to ADK_TOPDIR." + default "" + endmenu -- cgit v1.2.3 From 4d7db460edabbcf82cb5a6d2c5183e0cd0664e9f Mon Sep 17 00:00:00 2001 From: dir Date: Wed, 3 Jan 2018 15:11:19 +0100 Subject: cmake build speedup @upstream --- package/cmake/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/cmake/Makefile b/package/cmake/Makefile index fc9e919f0..431d0850b 100644 --- a/package/cmake/Makefile +++ b/package/cmake/Makefile @@ -25,14 +25,14 @@ $(eval $(call HOST_template,CMAKE,cmake,$(PKG_VERSION)-${PKG_RELEASE})) HOST_STYLE:= manual host-configure: - (cd $(WRKBUILD); ./configure --prefix=${STAGING_HOST_DIR}/usr --system-curl) + (cd $(WRKBUILD); ./configure --prefix=${STAGING_HOST_DIR}/usr --system-curl --parallel=${ADK_MAKE_JOBS} ) host-build: - (cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \ + (cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \ ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET}) $(MAKE_TRACE) cmake-hostinstall: - cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \ + cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \ ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE) include ${ADK_TOPDIR}/mk/host-bottom.mk -- cgit v1.2.3 From 81073bfe34049f0a9c2592bb71afd222cde3773a Mon Sep 17 00:00:00 2001 From: dir Date: Tue, 11 Jul 2017 14:44:26 +0200 Subject: Add libbcm2835 --- package/bcm2835/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package/bcm2835/Makefile diff --git a/package/bcm2835/Makefile b/package/bcm2835/Makefile new file mode 100644 index 000000000..49d9ada74 --- /dev/null +++ b/package/bcm2835/Makefile @@ -0,0 +1,27 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= bcm2835 +PKG_VERSION:= 1.52 +PKG_RELEASE:= 1 +PKG_HASH:= b9fd10f7a80aadaed28a77168709b7c519568a63b6e98d0a50e9c5fe31bea6bb +PKG_DESCR:= the BCM2835 direct hardware access library +PKG_SECTION:= libs/misc +PKG_URL:= http://www.airspayce.com/mikem/bcm2835/ +PKG_SITES:= http://www.airspayce.com/mikem/bcm2835/ + +PKG_SYSTEM_DEPENDS:= raspberry-pi raspberry-pi2 raspberry-pi3 + +DISTFILES:= bcm2835-${PKG_VERSION}.tar.gz + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBBCM2835,libbcm2835,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +bcm2835-install: + $(INSTALL_DIR) $(IDIR_LIBBCM2835)/usr/lib + $(INSTALL_DIR) $(IDIR_LIBBCM2835)/usr/include + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk -- cgit v1.2.3 From 922ca0cee6fd1c5b64e4a66c0167bb385f410bf2 Mon Sep 17 00:00:00 2001 From: dir Date: Wed, 31 Jan 2018 02:59:40 +0100 Subject: Use expat with gdb as otherwise gdbserver didn't work @upstream --- package/gdb/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/gdb/Makefile b/package/gdb/Makefile index ab525a6c2..34e973f12 100644 --- a/package/gdb/Makefile +++ b/package/gdb/Makefile @@ -29,6 +29,7 @@ CONFIGURE_ARGS+= --enable-static \ --disable-gdbtk \ --disable-gdbserver \ --without-x \ + --with-expat \ --disable-sim \ --disable-plugins \ --disable-werror \ -- cgit v1.2.3 From 70a42f6597b06f9be12db1bd32bb6a97d4a2e182 Mon Sep 17 00:00:00 2001 From: dir Date: Wed, 28 Feb 2018 21:03:58 +0100 Subject: Add option to mount debugfs at startup @upstream --- package/base-files/Makefile | 4 ++++ target/config/Config.in.runtime | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/package/base-files/Makefile b/package/base-files/Makefile index e9dd3d9cc..95f22f6f0 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -93,6 +93,10 @@ endif endif ifeq ($(ADK_RUNTIME_INIT_SYSVINIT),y) cp ./files/inittab.sysvinit $(IDIR_BASE_FILES)/etc/inittab +endif +ifeq ($(ADK_RUNTIME_MOUNT_DEBUGFS),y) + echo debugfs /sys/kernel/debug debugfs defaults 0 0 >> $(IDIR_BASE_FILES)/etc/fstab + echo null::sysinit:/bin/mount -a -t debugfs >> $(IDIR_BASE_FILES)/etc/inittab endif test -z $(ADK_RUNTIME_HOSTNAME) || \ echo $(ADK_RUNTIME_HOSTNAME) > $(IDIR_BASE_FILES)/etc/hostname; \ diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index 7697bcaf9..9c9b9cd49 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -188,6 +188,12 @@ config ADK_RUNTIME_USER_SHELL help Set the shell to use. +config ADK_RUNTIME_MOUNT_DEBUGFS + bool "mount debugfs" + depends on !ADK_RUNTIME_INIT_SYSTEMD + help + mount debugfs under /sys/kernel/debug + config ADK_RUNTIME_START_SERVICES bool "start services by default" default n -- cgit v1.2.3 -- cgit v1.2.3