* [Buildroot] Need help getting started with X11 @ 2014-11-24 12:41 Lennart Ramberg 2014-11-24 20:07 ` Thomas Petazzoni 0 siblings, 1 reply; 5+ messages in thread From: Lennart Ramberg @ 2014-11-24 12:41 UTC (permalink / raw) To: buildroot Hello, I need help getting started with X11. Is there any Buildroot tutorial about this? Or, if anyone would be so kind, I'm stuck at the below defconfig. The system works in the sense that I can ssh into it, but now I want graphics on the console display. I have not yet anything in the overlays that starts or otherwise relates to xorg. My target chipset is Intel 852GM. For one thing, what is supposed to create an xorg.conf? And I suppose X should be started somehow in supervisor.d like I start sshd there. BR2_x86_i686=y BR2_TOOLCHAIN_BUILDROOT_GLIBC=y # BR2_TARGET_GENERIC_GETTY is not set BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_DEFCONFIG="i386" BR2_LINUX_KERNEL_INSTALL_TARGET=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XSERVER_XORG_SERVER=y BR2_PACKAGE_XAPP_TWM=y BR2_PACKAGE_XAPP_XINIT=y BR2_PACKAGE_XAPP_XWD=y BR2_PACKAGE_PYTHON=y BR2_PACKAGE_SQLITE=y BR2_PACKAGE_CAIRO=y BR2_PACKAGE_LIBCURL=y BR2_PACKAGE_NTP=y BR2_PACKAGE_OPENSSH=y BR2_PACKAGE_SUPERVISOR=y BR2_PACKAGE_NANO=y # BR2_PACKAGE_NANO_TINY is not set BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_BLOCKS=1000000 BR2_TARGET_GRUB2=y Regards Lennart -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141124/a62dfc6d/attachment.html> ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] Need help getting started with X11 2014-11-24 12:41 [Buildroot] Need help getting started with X11 Lennart Ramberg @ 2014-11-24 20:07 ` Thomas Petazzoni 2014-11-25 10:50 ` Lennart Ramberg 0 siblings, 1 reply; 5+ messages in thread From: Thomas Petazzoni @ 2014-11-24 20:07 UTC (permalink / raw) To: buildroot Dear Lennart Ramberg, On Mon, 24 Nov 2014 13:41:38 +0100, Lennart Ramberg wrote: > Or, if anyone would be so kind, I'm stuck at the below defconfig. > The system works in the sense that I can ssh into it, but now I want > graphics on the console display. > I have not yet anything in the overlays that starts or otherwise relates to > xorg. > My target chipset is Intel 852GM. > For one thing, what is supposed to create an xorg.conf? These days, if you enable udev a xorg.conf is often not needed. > And I suppose X should be started somehow in supervisor.d like I start sshd > there. > > BR2_x86_i686=y > BR2_TOOLCHAIN_BUILDROOT_GLIBC=y > # BR2_TARGET_GENERIC_GETTY is not set > BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_DEFCONFIG="i386" > BR2_LINUX_KERNEL_INSTALL_TARGET=y > BR2_PACKAGE_XORG7=y > BR2_PACKAGE_XSERVER_XORG_SERVER=y Make sure to also enable the Intel graphics driver, i.e. BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL. Note that you need to switch the "modular X.org server" variant to achieve that. And then, start the X server by simply running "X". Best regards, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] Need help getting started with X11 2014-11-24 20:07 ` Thomas Petazzoni @ 2014-11-25 10:50 ` Lennart Ramberg 2014-11-25 18:02 ` Thomas Petazzoni 0 siblings, 1 reply; 5+ messages in thread From: Lennart Ramberg @ 2014-11-25 10:50 UTC (permalink / raw) To: buildroot Thanks Thomas, On Mon, Nov 24, 2014 at 9:07 PM, Thomas Petazzoni < thomas.petazzoni@free-electrons.com> wrote: > Dear Lennart Ramberg, > > On Mon, 24 Nov 2014 13:41:38 +0100, Lennart Ramberg wrote: > > > Or, if anyone would be so kind, I'm stuck at the below defconfig. > > The system works in the sense that I can ssh into it, but now I want > > graphics on the console display. > > I have not yet anything in the overlays that starts or otherwise relates > to > > xorg. > > My target chipset is Intel 852GM. > > For one thing, what is supposed to create an xorg.conf? > > These days, if you enable udev a xorg.conf is often not needed. > > > And I suppose X should be started somehow in supervisor.d like I start > sshd > > there. > > > > BR2_x86_i686=y > > BR2_TOOLCHAIN_BUILDROOT_GLIBC=y > > # BR2_TARGET_GENERIC_GETTY is not set > > BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" > > BR2_LINUX_KERNEL=y > > BR2_LINUX_KERNEL_DEFCONFIG="i386" > > BR2_LINUX_KERNEL_INSTALL_TARGET=y > > BR2_PACKAGE_XORG7=y > > BR2_PACKAGE_XSERVER_XORG_SERVER=y > > Make sure to also enable the Intel graphics driver, i.e. > BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL. Note that you need to switch the > "modular X.org server" variant to achieve that. > > And then, start the X server by simply running "X". > > Best regards, > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux, Kernel and Android engineering > http://free-electrons.com > At first all was well, at least the screen went black, X was visible in top and I could get out with Ctrl-c. So far so good. Then I recalled that I had not done 'make'. So I did make, but a bug(?) stopped further advancements. I don't know how to file a bug report, but maybe the below is of use (I figure next stable release is imminent). Regards Lennart First my new defconfig: BR2_x86_i686=y BR2_TOOLCHAIN_BUILDROOT_GLIBC=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y # BR2_TARGET_GENERIC_GETTY is not set BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_DEFCONFIG="i386" BR2_LINUX_KERNEL_INSTALL_TARGET=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XSERVER_XORG_SERVER=y BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y BR2_PACKAGE_XAPP_TWM=y BR2_PACKAGE_XAPP_XINIT=y BR2_PACKAGE_XAPP_XWD=y BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL=y BR2_PACKAGE_MCOOKIE=y BR2_PACKAGE_PYTHON=y BR2_PACKAGE_SQLITE=y BR2_PACKAGE_CAIRO=y BR2_PACKAGE_LIBCURL=y BR2_PACKAGE_NTP=y BR2_PACKAGE_OPENSSH=y BR2_PACKAGE_SUPERVISOR=y BR2_PACKAGE_NANO=y # BR2_PACKAGE_NANO_TINY is not set BR2_TARGET_ROOTFS_EXT2=y BR2_TARGET_ROOTFS_EXT2_BLOCKS=1000000 BR2_TARGET_GRUB2=y I had done a 'git pull' earlier today. Then, just now, a 'make' once before the below 'make': lennart at lennart-Latitude-E6520 ~/buildroot $ make /usr/bin/make -j1 HOSTCC="/usr/bin/gcc" HOSTCXX="/usr/bin/g++" silentoldconfig make[1]: Entering directory `/home/lennart/buildroot' BR2_DEFCONFIG='' KCONFIG_AUTOCONFIG=/home/lennart/buildroot/output/build/buildroot-config/auto.conf KCONFIG_AUTOHEADER=/home/lennart/buildroot/output/build/buildroot-config/autoconf.h KCONFIG_TRISTATE=/home/lennart/buildroot/output/build/buildroot-config/tristate.config BR2_CONFIG=/home/lennart/buildroot/.config BR2_EXTERNAL=support/dummy-external /home/lennart/buildroot/output/build/buildroot-config/conf --silentoldconfig Config.in make[1]: Leaving directory `/home/lennart/buildroot' >>> eudev 1.9 Building PATH="/home/lennart/buildroot/output/host/bin:/home/lennart/buildroot/output/host/sbin:/home/lennart/buildroot/output/host/usr/bin:/home/lennart/buildroot/output/host/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" /usr/bin/make -j9 -C /home/lennart/buildroot/output/build/eudev-1.9/ make[1]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9' /usr/bin/make all-recursive make[2]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9' Making all in src make[3]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src' Making all in libudev make[4]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' Making all in udev make[4]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' /usr/bin/make all-am make[5]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' make[5]: Nothing to be done for `all-am'. make[5]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' make[4]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' Making all in accelerometer make[4]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' Making all in ata_id make[4]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9/src/ata_id' CC ata_id.o ata_id.c:35:23: fatal error: scsi/scsi.h: No such file or directory #include <scsi/scsi.h> ^ compilation terminated. make[4]: *** [ata_id.o] Error 1 make[4]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src/ata_id' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/lennart/buildroot/output/build/eudev-1.9' make: *** [/home/lennart/buildroot/output/build/eudev-1.9/.stamp_built] Error 2 lennart at lennart-Latitude-E6520 ~/buildroot $ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141125/5c65880c/attachment.html> ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] Need help getting started with X11 2014-11-25 10:50 ` Lennart Ramberg @ 2014-11-25 18:02 ` Thomas Petazzoni 2014-11-26 16:47 ` Lennart Ramberg 0 siblings, 1 reply; 5+ messages in thread From: Thomas Petazzoni @ 2014-11-25 18:02 UTC (permalink / raw) To: buildroot Dear Lennart Ramberg, On Tue, 25 Nov 2014 11:50:25 +0100, Lennart Ramberg wrote: > At first all was well, at least the screen went black, X was visible in top > and I could get out with Ctrl-c. > So far so good. > Then I recalled that I had not done 'make'. > So I did make, but a bug(?) stopped further advancements. > I don't know how to file a bug report, but maybe the below is of use (I > figure next stable release is imminent). > > Regards > Lennart > > First my new defconfig: > > BR2_x86_i686=y > BR2_TOOLCHAIN_BUILDROOT_GLIBC=y > BR2_TOOLCHAIN_BUILDROOT_CXX=y > BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y > # BR2_TARGET_GENERIC_GETTY is not set > BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" > BR2_LINUX_KERNEL=y > BR2_LINUX_KERNEL_DEFCONFIG="i386" > BR2_LINUX_KERNEL_INSTALL_TARGET=y > BR2_PACKAGE_XORG7=y > BR2_PACKAGE_XSERVER_XORG_SERVER=y > BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y > BR2_PACKAGE_XAPP_TWM=y > BR2_PACKAGE_XAPP_XINIT=y > BR2_PACKAGE_XAPP_XWD=y > BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL=y > BR2_PACKAGE_MCOOKIE=y > BR2_PACKAGE_PYTHON=y > BR2_PACKAGE_SQLITE=y > BR2_PACKAGE_CAIRO=y > BR2_PACKAGE_LIBCURL=y > BR2_PACKAGE_NTP=y > BR2_PACKAGE_OPENSSH=y > BR2_PACKAGE_SUPERVISOR=y > BR2_PACKAGE_NANO=y > # BR2_PACKAGE_NANO_TINY is not set > BR2_TARGET_ROOTFS_EXT2=y > BR2_TARGET_ROOTFS_EXT2_BLOCKS=1000000 > BR2_TARGET_GRUB2=y > > I had done a 'git pull' earlier today. Then, just now, a 'make' once before > the below 'make': > > lennart at lennart-Latitude-E6520 ~/buildroot $ make > /usr/bin/make -j1 HOSTCC="/usr/bin/gcc" HOSTCXX="/usr/bin/g++" > silentoldconfig > make[1]: Entering directory `/home/lennart/buildroot' > BR2_DEFCONFIG='' > KCONFIG_AUTOCONFIG=/home/lennart/buildroot/output/build/buildroot-config/auto.conf > KCONFIG_AUTOHEADER=/home/lennart/buildroot/output/build/buildroot-config/autoconf.h > KCONFIG_TRISTATE=/home/lennart/buildroot/output/build/buildroot-config/tristate.config > BR2_CONFIG=/home/lennart/buildroot/.config > BR2_EXTERNAL=support/dummy-external > /home/lennart/buildroot/output/build/buildroot-config/conf > --silentoldconfig Config.in > make[1]: Leaving directory `/home/lennart/buildroot' > >>> eudev 1.9 Building > PATH="/home/lennart/buildroot/output/host/bin:/home/lennart/buildroot/output/host/sbin:/home/lennart/buildroot/output/host/usr/bin:/home/lennart/buildroot/output/host/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" > /usr/bin/make -j9 -C /home/lennart/buildroot/output/build/eudev-1.9/ > make[1]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9' > /usr/bin/make all-recursive > make[2]: Entering directory `/home/lennart/buildroot/output/build/eudev-1.9' > Making all in src > make[3]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src' > Making all in libudev > make[4]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' > make[4]: Nothing to be done for `all'. > make[4]: Leaving directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' > Making all in udev > make[4]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > /usr/bin/make all-am > make[5]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > make[5]: Nothing to be done for `all-am'. > make[5]: Leaving directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > make[4]: Leaving directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > Making all in accelerometer > make[4]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' > make[4]: Nothing to be done for `all'. > make[4]: Leaving directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' > Making all in ata_id > make[4]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9/src/ata_id' > CC ata_id.o > ata_id.c:35:23: fatal error: scsi/scsi.h: No such file or directory > #include <scsi/scsi.h> > ^ > compilation terminated. This seems weird because <scsi/scsi.h> is part of the C library. Can you do a full rebuild, i.e "make clean all", and see if you can reproduce the problem. Beware that when you update Buildroot or you make certain changes to the configuration, you need to do a full rebuild. See http://buildroot.org/downloads/manual/manual.html#full-rebuild for more details. Best regards, Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] Need help getting started with X11 2014-11-25 18:02 ` Thomas Petazzoni @ 2014-11-26 16:47 ` Lennart Ramberg 0 siblings, 0 replies; 5+ messages in thread From: Lennart Ramberg @ 2014-11-26 16:47 UTC (permalink / raw) To: buildroot Thank you Thomas, On Tue, Nov 25, 2014 at 7:02 PM, Thomas Petazzoni < thomas.petazzoni@free-electrons.com> wrote: > Dear Lennart Ramberg, > > On Tue, 25 Nov 2014 11:50:25 +0100, Lennart Ramberg wrote: > > > At first all was well, at least the screen went black, X was visible in > top > > and I could get out with Ctrl-c. > > So far so good. > > Then I recalled that I had not done 'make'. > > So I did make, but a bug(?) stopped further advancements. > > I don't know how to file a bug report, but maybe the below is of use (I > > figure next stable release is imminent). > > > > Regards > > Lennart > > > > First my new defconfig: > > > > BR2_x86_i686=y > > BR2_TOOLCHAIN_BUILDROOT_GLIBC=y > > BR2_TOOLCHAIN_BUILDROOT_CXX=y > > BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y > > # BR2_TARGET_GENERIC_GETTY is not set > > BR2_ROOTFS_OVERLAY="board/eta/board1/rootfs-overlay/" > > BR2_LINUX_KERNEL=y > > BR2_LINUX_KERNEL_DEFCONFIG="i386" > > BR2_LINUX_KERNEL_INSTALL_TARGET=y > > BR2_PACKAGE_XORG7=y > > BR2_PACKAGE_XSERVER_XORG_SERVER=y > > BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y > > BR2_PACKAGE_XAPP_TWM=y > > BR2_PACKAGE_XAPP_XINIT=y > > BR2_PACKAGE_XAPP_XWD=y > > BR2_PACKAGE_XDRIVER_XF86_VIDEO_INTEL=y > > BR2_PACKAGE_MCOOKIE=y > > BR2_PACKAGE_PYTHON=y > > BR2_PACKAGE_SQLITE=y > > BR2_PACKAGE_CAIRO=y > > BR2_PACKAGE_LIBCURL=y > > BR2_PACKAGE_NTP=y > > BR2_PACKAGE_OPENSSH=y > > BR2_PACKAGE_SUPERVISOR=y > > BR2_PACKAGE_NANO=y > > # BR2_PACKAGE_NANO_TINY is not set > > BR2_TARGET_ROOTFS_EXT2=y > > BR2_TARGET_ROOTFS_EXT2_BLOCKS=1000000 > > BR2_TARGET_GRUB2=y > > > > I had done a 'git pull' earlier today. Then, just now, a 'make' once > before > > the below 'make': > > > > lennart at lennart-Latitude-E6520 ~/buildroot $ make > > /usr/bin/make -j1 HOSTCC="/usr/bin/gcc" HOSTCXX="/usr/bin/g++" > > silentoldconfig > > make[1]: Entering directory `/home/lennart/buildroot' > > BR2_DEFCONFIG='' > > > KCONFIG_AUTOCONFIG=/home/lennart/buildroot/output/build/buildroot-config/auto.conf > > > KCONFIG_AUTOHEADER=/home/lennart/buildroot/output/build/buildroot-config/autoconf.h > > > KCONFIG_TRISTATE=/home/lennart/buildroot/output/build/buildroot-config/tristate.config > > BR2_CONFIG=/home/lennart/buildroot/.config > > BR2_EXTERNAL=support/dummy-external > > /home/lennart/buildroot/output/build/buildroot-config/conf > > --silentoldconfig Config.in > > make[1]: Leaving directory `/home/lennart/buildroot' > > >>> eudev 1.9 Building > > > PATH="/home/lennart/buildroot/output/host/bin:/home/lennart/buildroot/output/host/sbin:/home/lennart/buildroot/output/host/usr/bin:/home/lennart/buildroot/output/host/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games" > > /usr/bin/make -j9 -C /home/lennart/buildroot/output/build/eudev-1.9/ > > make[1]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9' > > /usr/bin/make all-recursive > > make[2]: Entering directory > `/home/lennart/buildroot/output/build/eudev-1.9' > > Making all in src > > make[3]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src' > > Making all in libudev > > make[4]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' > > make[4]: Nothing to be done for `all'. > > make[4]: Leaving directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/libudev' > > Making all in udev > > make[4]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > > /usr/bin/make all-am > > make[5]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > > make[5]: Nothing to be done for `all-am'. > > make[5]: Leaving directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > > make[4]: Leaving directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/udev' > > Making all in accelerometer > > make[4]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' > > make[4]: Nothing to be done for `all'. > > make[4]: Leaving directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/accelerometer' > > Making all in ata_id > > make[4]: Entering directory > > `/home/lennart/buildroot/output/build/eudev-1.9/src/ata_id' > > CC ata_id.o > > ata_id.c:35:23: fatal error: scsi/scsi.h: No such file or directory > > #include <scsi/scsi.h> > > ^ > > compilation terminated. > > This seems weird because <scsi/scsi.h> is part of the C library. Can > you do a full rebuild, i.e "make clean all", and see if you can > reproduce the problem. > > Beware that when you update Buildroot or you make certain changes to > the configuration, you need to do a full rebuild. See > http://buildroot.org/downloads/manual/manual.html#full-rebuild for more > details. > > Best regards, > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux, Kernel and Android engineering > http://free-electrons.com > I am sorry for jumping for help. I should have read the fine manual and thought of rebuilding all. I am now on track with X again. Thanks again and regards.. Lennart -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20141126/8b2a9205/attachment.html> ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-11-26 16:47 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-11-24 12:41 [Buildroot] Need help getting started with X11 Lennart Ramberg 2014-11-24 20:07 ` Thomas Petazzoni 2014-11-25 10:50 ` Lennart Ramberg 2014-11-25 18:02 ` Thomas Petazzoni 2014-11-26 16:47 ` Lennart Ramberg
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox