summaryrefslogtreecommitdiff
path: root/target/linux/patches/3.10.36/startup.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-04-15 10:20:46 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-04-15 10:20:46 +0200
commit67f34421f0ae00adc39cbf016e4b33d2817b854d (patch)
treedf86c2b5a82d9da96fa048ed741f09cfd475330c /target/linux/patches/3.10.36/startup.patch
parent96a83976f70dc1bfcedadcf94f59502ab2b4014d (diff)
parent4a1c24c3c1c4db2aa462a0400efe31658ae7d7c6 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/linux/patches/3.10.36/startup.patch')
-rw-r--r--target/linux/patches/3.10.36/startup.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/target/linux/patches/3.10.36/startup.patch b/target/linux/patches/3.10.36/startup.patch
new file mode 100644
index 000000000..3ebc5db1e
--- /dev/null
+++ b/target/linux/patches/3.10.36/startup.patch
@@ -0,0 +1,34 @@
+diff -Nur linux-3.10.33.orig/init/initramfs.c linux-3.10.33/init/initramfs.c
+--- linux-3.10.33.orig/init/initramfs.c 2014-03-07 06:58:45.000000000 +0100
++++ linux-3.10.33/init/initramfs.c 2014-03-15 18:32:07.240436750 +0100
+@@ -622,6 +622,9 @@
+ */
+ load_default_modules();
+ }
++#ifdef CONFIG_DEVTMPFS_MOUNT
++ devtmpfs_mount("dev");
++#endif
+ return 0;
+ }
+ rootfs_initcall(populate_rootfs);
+diff -Nur linux-3.10.33.orig/init/main.c linux-3.10.33/init/main.c
+--- linux-3.10.33.orig/init/main.c 2014-03-07 06:58:45.000000000 +0100
++++ linux-3.10.33/init/main.c 2014-03-15 18:32:07.240436750 +0100
+@@ -885,6 +885,8 @@
+ if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
+ pr_err("Warning: unable to open an initial console.\n");
+
++ printk(KERN_WARNING "Starting Linux (built with OpenADK).\n");
++
+ (void) sys_dup(0);
+ (void) sys_dup(0);
+ /*
+@@ -893,7 +895,7 @@
+ */
+
+ if (!ramdisk_execute_command)
+- ramdisk_execute_command = "/init";
++ ramdisk_execute_command = "/sbin/init";
+
+ if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
+ ramdisk_execute_command = NULL;