On Thursday 09 October 2008 15.52:50 Koen Kooi wrote:
>
> Angstrom 2008 now has busybox 1.11.1 as default which some added
> features over 1.9.2:
>
> * working run-parts
> * init and linuxrc support
> * shadow password support
> * login support
> * better mount support
>
> This should enable us to dump some non busybox utils from the rootfs
> (util-linux-ng-(u)mount, tinylogin, base-passwd, etc).
> Any volunteers for trying that?
>

I was just working on replacing tinylogin with busybox because I need a 
B921600 serial line with getty and I did not want to fix this for tinylogin 
that is not very well supported anymore.

You could also add this very simple patch for busybox. (included).

I can try it if you want. Trying with org.openembedded.dev git branch is 
enough ?

Valentin
diff -upNr busybox-1.7.2/libbb/speed_table.c busybox-1.7.2-921600/libbb/speed_table.c
--- busybox-1.7.2/libbb/speed_table.c	2007-09-03 13:48:41.000000000 +0200
+++ busybox-1.7.2-921600/libbb/speed_table.c	2008-10-09 16:23:26.269592899 +0200
@@ -52,6 +52,9 @@ static const struct speed_map speeds[] =
 #ifdef B460800
 	{B460800, 460800/256 + 0x8000U},
 #endif
+#ifdef B921600
+	{B921600, 921600/256 + 0x8000U},
+#endif
 };
 
 enum { NUM_SPEEDS = ARRAY_SIZE(speeds) };
_______________________________________________
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel

Reply via email to