Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

424 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(revision 173)
+++ Makefile	(revision 174)
@@ -149,6 +149,14 @@
 $(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP) $(atf_src_done)
 	$(UNPACK_SRC_ARCHIVE)
 	$(APPLY_PATCHES)
+	@( cd $(SRC_DIR)/configs ; \
+	   echo '# Set BOOTDELAY options:'          >> $(u_boot_config) ; \
+	   echo 'CONFIG_SYS_PROMPT="$(HARDWARE)# "' >> $(u_boot_config) ; \
+	   echo 'CONFIG_BOOTDELAY=3'                >> $(u_boot_config) ; \
+	   echo 'CONFIG_AUTOBOOT_KEYED=y'           >> $(u_boot_config) ; \
+	   echo 'CONFIG_AUTOBOOT_PROMPT="Hit SPACE in %d seconds to stop autoboot.\n"' >> $(u_boot_config) ; \
+	   echo 'CONFIG_AUTOBOOT_STOP_STR=" "'      >> $(u_boot_config) ; \
+	 )
 	# ======= Suppress '_elf.so has a LOAD segment with RWX permissions' warnings =======
 	@( cd $(SRC_DIR) ; \
 	   sed -i 's,^\(KBUILD_LDFLAGS[ \t]*:=\).*,\1 --no-warn-rwx-segments,' Makefile ; \