You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(5) |
Jun
(13) |
Jul
(6) |
Aug
|
Sep
(16) |
Oct
(14) |
Nov
(10) |
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(38) |
Feb
(49) |
Mar
(21) |
Apr
(41) |
May
(15) |
Jun
(38) |
Jul
(43) |
Aug
(13) |
Sep
(37) |
Oct
(61) |
Nov
(17) |
Dec
(2) |
2005 |
Jan
(68) |
Feb
(11) |
Mar
(28) |
Apr
(25) |
May
(11) |
Jun
(11) |
Jul
(21) |
Aug
(6) |
Sep
(117) |
Oct
(38) |
Nov
(4) |
Dec
(12) |
2006 |
Jan
(21) |
Feb
(34) |
Mar
(72) |
Apr
(21) |
May
(78) |
Jun
(61) |
Jul
(45) |
Aug
(46) |
Sep
(72) |
Oct
(18) |
Nov
(29) |
Dec
(31) |
2007 |
Jan
(9) |
Feb
(8) |
Mar
(9) |
Apr
(30) |
May
(8) |
Jun
(16) |
Jul
(3) |
Aug
(8) |
Sep
(10) |
Oct
(17) |
Nov
(4) |
Dec
(22) |
2008 |
Jan
(16) |
Feb
(9) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(2) |
Mar
(8) |
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ne...@ne...> - 2007-03-10 17:25:34
|
My mistake! /etc/password was overrided by the ramdisk one, not from the mainmodule, so, apparently my previus post is wrong and unionfs branches are in the right order. Anyway, the right way to solve my problem is to add the asterisk user =66rom the loadmod.sh in the minimodule. More, you can also, if needed, change the branches order in unionfs using unionctl commands in the loadmod.sh script (if available in the mainmodule ), anyway, i think that implement something that permit to select the "precedence" of the minimodule in the unionfs branches order is something that is anyway desiderable. --=20 Franco (nextime) Lanza Busto Arsizio - Italy SIP://ca...@ca... NO TCPA: http://www.no1984.org you can download my public key at: http://danex.nexlab.it/nextime.asc || Key Servers Key ID =3D D6132D50 Key fingerprint =3D 66ED 5211 9D59 DA53 1DF7 4189 DFED F580 D613 2D50 ----------------------------------- echo 16i[q]sa[ln0=3Daln100%Pln100/snlbx]sbA0D212153574F444E4957204553552045= 4D20454B414D204F54204847554F4E452059415020544F4E4E4143205345544147204C4C494= 2snlbxq | dc ----------------------------------- |
From: <ne...@ne...> - 2007-03-10 10:28:33
|
First of all, sorry for the wrong post on the "cvs" mailing list! The message was: Ciao all. I think that MiniModule unionfs overlaying is conceptually wrong. in the base module we have 2 init script that mount main and mini modules by using unionfs. While Mainmodule is overlayed in morphix-start in this way: mount -t unionfs -o dirs=3D/mnt/main${UNIONFS_MOUNT_OPT},debug=3D$DEBU= GOVERLAY none /mnt/main unionctl /mnt/main --add --mode ro /mnt/main_ro unionctl /mnt/main --add --mode rw $DIR2/root MiniModules are overlayed in load-minimodules.sh with: if [ -d /mnt/main/mnt/mini/mod$count/root ]; then unionctl /mnt/main --add --after 0 --mode ro /mnt/main/mnt/mini/mod$= count/root fi This make the root file system on the resulting live cd booted like this: root@Medianix:~# unionctl / --list /mnt/.hidden_base/ramdisk/var/tmp/overlay/root (rw-) /mnt/mini/mod2/root (r--) /mnt/.hidden_base/mnt/main_ro (r--) root@Medianix:~# as the "0" branch is the rw mounted ramdisk, so, when add to the unionfs the MiniModule, it will go after this and before the Main that is /mnt/.hidden_base/mnt/main_ro. In this way if we have 2 files (let me say for an example, /etc/passwd) both in main *and* minimodule, the main one take precedence over the minimodule one. While having multiple minimodule with the same file can open some issues, i think that it will be better to permit to minimodules to take precedence over the mainmodule, so, i think that in load-minimodules.sh the unionctl line shuld be unionctl /mnt/main --add --mode ro /mnt/main/mnt/mini/mod$count/root without the --after 0 switch. Another idea is to use a file inside the minimodule, something like "unionfsposition" that contain the position to insert the minimodule branch, letting us configure this from the minimodule itself. Something like: if [ -d /mnt/main/mnt/mini/mod$count/root ]; then if [ -f /mnt/main/mnt/mini/mod$count/unionfspos ]; then ufsafter=3D"--after `cat /mnt/main/mnt/mini/mod$count/unionfspos`" fi unionctl /mnt/main --add $ufsafter --mode ro /mnt/main/mnt/mini/mod$count= /root fi --=20 Franco (nextime) Lanza Busto Arsizio - Italy SIP://ca...@ca... NO TCPA: http://www.no1984.org you can download my public key at: http://danex.nexlab.it/nextime.asc || Key Servers Key ID =3D D6132D50 Key fingerprint =3D 66ED 5211 9D59 DA53 1DF7 4189 DFED F580 D613 2D50 ----------------------------------- echo 16i[q]sa[ln0=3Daln100%Pln100/snlbx]sbA0D212153574F444E4957204553552045= 4D20454B414D204F54204847554F4E452059415020544F4E4E4143205345544147204C4C494= 2snlbxq | dc ----------------------------------- |
From: Brendan M. S. <me...@ba...> - 2007-02-25 20:41:03
|
Hi All, On 2/25/07, Jure Cuhalev wrote: > > Please note that qemu is free, kqemu is non-free. > > KQEMU 1.3.0pre10 (the official QEMU Acceleration module) is open > source as of Monday February 5, 2007. It can be found at the official > QEMU site along with a nice technical doc. Thanks for pointing this out Jure. Looks like it will hit sid soon:- http://packages.debian.org/experimental/misc/kqemu-common I can be fast and pure :) Brendan |
From: Brendan M. S. <me...@ba...> - 2007-02-25 19:58:41
|
Hi All, Since I now have a new Autotesting machine back on line. http://morphix.org/autobuilds/ http://www.morphix.org/autobuilds/video/?C=M;O=D In the AutoTesting logs I kept getting "Could not open '/dev/kqemu' - QEMU acceleration layer not activated" So a little digging around. http://www.qemu.org/kqemu-doc.html Please note that qemu is free, kqemu is non-free. I already had non-free in my /etc/apt/sources.list:- deb http://ftp.debian.org/debian/ sid main contrib non-free With the following commands, (got to love sid):- sudo apt-get install kqemu-common kqemu-modules-2.6-686 sudo modprobe kqemu I then booted up a version of MorphixLiveKiosk I am debugging. sudo qemu -cdrom ./MorphixLiveKiosk.iso -boot d Time to boot up to morphix home page in qmeu emulator (with kqemu): 5min 7 Seconds Without using kqemu:- sudo qemu -no-kqemu -cdrom ./MorphixLiveKiosk.iso -boot d Time to boot up to morphix home page in qmeu emulator (w/o kqemu) 12min 55 Seconds I could not boot using the '-kernel-kqemu' option, Using a MorphixLiveCD inside the kqmeu is so much faster. If you do no mind non-free I would heavily recommend kqmeu, it is very fast. NB these boot-up times are running qemu on a PIII with just 256Mb of Ram. I am going to set AutoTesting to _not_ use kqemu (-no-kqemu). The AutoTesting videos are cron job sso no rush and reduces possible emulations problems. Also if AutoTesting is not using kqemu it keeps the non-heretics happy, the video are produced using all free tools. Especially as the videos are open, royalty-free multimedia format:- http://en.wikipedia.org/wiki/Theora#Technical_details Regards, Brendan |
From: Alex de L. <al...@de...> - 2007-02-12 17:46:44
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hey Matthew, Matthew Ray wrote: > Is anyone using Ubuntu as a base for their mainmod? I've been using > Etch but ever since Iceweasel replaced Firefox I've been having a lot > of issues with the browser starting. Basically it won't start in qemu > from my minimod or from a menu. I've removed all of my plugin > dependencies and my browser configuration and nothing seems to matter. > "ps -ef" shows it running, but for some reason it never displays and > I can't find a useful way to debug it. Odd. As a last resort you might want to remove the ~/.firefox and ~/.mozilla directories in your user's homedirectory, it has helped in the past. strace works well for debugging btw. > So I thought I'd try out > Ubuntu since they didn't switch out their Firefox. I'd just like to > see an example mainmod.xml or be pointed to one. If you're using Ubuntu as the build-system, then this should just be a matter of replacing the repository- and suite-entries for the Ubuntu variants. I personally don't build using Ubuntu (and neither do the autobuilds), but there were a few others using mmaker for their Ubuntu livecds. cheers, Alex -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF0KgTQeuQA5TF/UsRArpCAJ9D5UW+E5x2NUKfDcV1EBXOZVjHEQCdHiOj Mu7FKe8ovgYfLl5anvzbNqM= =amdN -----END PGP SIGNATURE----- |
From: Alex de L. <al...@de...> - 2007-02-12 17:35:41
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hey Paul Paul wrote: > Thanks - It fixes the dependency problem with Sarge, just need to get it > tested with a Sid/Etch build now... Okay, will you do that? You can also wait until my sid-buildserver does the build tonight. > On a related subject, looking at the build logs for morphix-kde, I see wvdial > returns an error to apt when it runs the post install script - Should this > error be ignored and the package left in a broken state, or removed from the > template ? IMHO, it should be removed then. There's probably a better dialup-tool in KDE anyway. cheers, Alex -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF0KVoQeuQA5TF/UsRAuTKAJ0ffu66+nGy6blIfnXFrKK8yloZLACcCBTL m3l6PvpwV4lPHoAYHMSUhhc= =b5jW -----END PGP SIGNATURE----- |
From: Paul <pa...@tu...> - 2007-02-12 13:41:09
|
Hi Alex On Monday 12 February 2007 09:18, Alex de Landgraaf wrote: > > Any chance we could have a new morpix-init-kde uploaded - If this fixes a > > dependency problem on both Sid and Sarge builds (the latter is currently > > failing), the same fix can be applied to the other morphix-init-* > > packages. > > Done (0.1-5), do let me know. Thanks - It fixes the dependency problem with Sarge, just need to get it tested with a Sid/Etch build now... On a related subject, looking at the build logs for morphix-kde, I see wvdial returns an error to apt when it runs the post install script - Should this error be ignored and the package left in a broken state, or removed from the template ? Regards, Paul. |
From: Alex de L. <al...@de...> - 2007-02-12 09:18:18
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Paul wrote: > Hi Alex > > On Monday 12 February 2007 00:02, pa...@us... wrote: >> --- trunk/scripts-main/kde/debian/changelog 2007-01-01 16:28:19 UTC >> (rev 2457) +++ trunk/scripts-main/kde/debian/changelog 2007-02-12 >> 00:02:44 UTC (rev 2458) > > Any chance we could have a new morpix-init-kde uploaded - If this fixes a > dependency problem on both Sid and Sarge builds (the latter is currently > failing), the same fix can be applied to the other morphix-init-* packages. Done (0.1-5), do let me know. cheers, Alex -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF0DDeQeuQA5TF/UsRAgvfAJ9rUoBb7Zp1SZWIew8g6L/L+TJS/wCfTu8Q meWmz6upHDq9uFV19fiXqT4= =IKAN -----END PGP SIGNATURE----- |
From: Matthew R. <mat...@gm...> - 2007-02-12 03:20:33
|
Is anyone using Ubuntu as a base for their mainmod? I've been using Etch but ever since Iceweasel replaced Firefox I've been having a lot of issues with the browser starting. Basically it won't start in qemu from my minimod or from a menu. I've removed all of my plugin dependencies and my browser configuration and nothing seems to matter. "ps -ef" shows it running, but for some reason it never displays and I can't find a useful way to debug it. So I thought I'd try out Ubuntu since they didn't switch out their Firefox. I'd just like to see an example mainmod.xml or be pointed to one. Thanks, Matt |
From: Paul <pa...@tu...> - 2007-02-12 00:10:17
|
Hi Alex On Monday 12 February 2007 00:02, pa...@us... wrote: > --- trunk/scripts-main/kde/debian/changelog 2007-01-01 16:28:19 UTC > (rev 2457) +++ trunk/scripts-main/kde/debian/changelog 2007-02-12 > 00:02:44 UTC (rev 2458) Any chance we could have a new morpix-init-kde uploaded - If this fixes a dependency problem on both Sid and Sarge builds (the latter is currently failing), the same fix can be applied to the other morphix-init-* packages. Regards, Paul. |
From: Alex de L. <al...@de...> - 2007-01-30 13:16:00
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Joshua Perrymon wrote: > I believe the best way to do this would be system-wide using /etc/profile. > > I just released my first distro BTW. www.packetfocus.com/hackos Sounds good! If you have any questions do let me know. If you want to do a public release, send a blurb about your distro and we'll get you some healthy pagerank via morphix.org. cheers, Alex -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFv0UNQeuQA5TF/UsRAnlgAJsFOf3SzHmI0Y2/U1RZZrDEeY4N8ACeLxco asdNvutk1qRAzDMcZq0YXbY= =f5QB -----END PGP SIGNATURE----- |
From: Joshua P. <jo...@pa...> - 2007-01-30 13:05:07
|
Thanks for the response Alex, I believe the best way to do this would be system-wide using /etc/profile. I just released my first distro BTW. www.packetfocus.com/hackos The next step I need to do is to remove some of the apps that I don't need. Right now the distro is about 802mb :) Cheers!!! JP -----Original Message----- From: mor...@li... [mailto:mor...@li...] On Behalf Of Alex de Landgraaf Sent: Wednesday, January 31, 2007 12:02 AM Cc: mor...@li... Subject: Re: [Morphix-devel] Setting up paths -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hey Joshua, If you want to do this system-wide, you'd probably modify /etc/profile in the mainmod. For only the morph-user, you could take a look in the /etc/skel/ files. You could use a minimod (there are more ways than one to get this to work). You could modify your ~/.bash_profile and make a homedirectory-minimodule, which would set the JAVA_HOME variable for the current user. cheers, Alex Joshua Perrymon wrote: > What is the best way to setup paths? Ex: JAVA_HOME I am trying when I > do morphix-chroot but this isn't getting over to my build. > > Is this something I should be doing in a mini_mod? Or is there an > easier way to run commands like export? > > Cheers, > > > Joshua Perrymon- CE|H,OPST,OPSA,ISECOM Trainer Hacking Director > PacketFocus Security Solutions -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFv0G5QeuQA5TF/UsRApWEAJ4pOaNWwtfY9X6DlBDz1bpejAhAjwCaAn5G KfRcM/55FUIgMK5Ue28cuyE= =ud4d -----END PGP SIGNATURE----- ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Morphix-devel mailing list Mor...@li... https://lists.sourceforge.net/lists/listinfo/morphix-devel |
From: Alex de L. <al...@de...> - 2007-01-30 13:01:49
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hey Joshua, If you want to do this system-wide, you'd probably modify /etc/profile in the mainmod. For only the morph-user, you could take a look in the /etc/skel/ files. You could use a minimod (there are more ways than one to get this to work). You could modify your ~/.bash_profile and make a homedirectory-minimodule, which would set the JAVA_HOME variable for the current user. cheers, Alex Joshua Perrymon wrote: > What is the best way to setup paths? Ex: JAVA_HOME > I am trying when I do morphix-chroot but this isn't getting over to my > build. > > Is this something I should be doing in a mini_mod? Or is there an easier way > to run commands like export? > > Cheers, > > > Joshua Perrymon- CE|H,OPST,OPSA,ISECOM Trainer > Hacking Director > PacketFocus Security Solutions -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFv0G5QeuQA5TF/UsRApWEAJ4pOaNWwtfY9X6DlBDz1bpejAhAjwCaAn5G KfRcM/55FUIgMK5Ue28cuyE= =ud4d -----END PGP SIGNATURE----- |
From: Joshua P. <jo...@pa...> - 2007-01-29 04:43:42
|
What is the best way to setup paths? Ex: JAVA_HOME I am trying when I do morphix-chroot but this isn't getting over to my build. Is this something I should be doing in a mini_mod? Or is there an easier way to run commands like export? Cheers, Joshua Perrymon- CE|H,OPST,OPSA,ISECOM Trainer Hacking Director PacketFocus Security Solutions URL: www.packetfocus.com Email: jo...@pa... Skype: packetfocus Linkedin: http://www.linkedin.com/in/packetfocus Office: Sydney, Australia Tel:(61)02 8005 1420 Office: Birmingham, Alabama Tel:(1)205 383 4820 LEGAL CONFIDENTIAL: The information in this e-mail and in any attachment may contain information which is legally privileged. It is intended only for the attention and use of the named recipient. If you are not the intended recipient, you are not authorized to retain, disclose, copy or distribute the message and/or any of its attachments. If you received this e-mail in error, please notify me and delete this message. Thank-you. |
From: Brendan M. S. <me...@ba...> - 2007-01-17 21:10:12
|
Hi All, Autobuilding is still moving along. http://morphix.org/autobuilds/ Today we have a nice shiny basemod, with morphix kernel 2.6.17. http://www.morphix.org/autobuilds/base/basemod-2.6.17-2007-01-17_0600.iso http://www.morphix.org/autobuilds/base/?C=M;O=D And today the AutoTesting of this new shinny basemod went well. Using basemod-2.6.17 and and today's lightgui-MainModule we have a nice video of a sucessful boot (using qemu):- http://www.morphix.org/autobuilds/video/lightgui-2007-01-17_0400.mod_basemod-2.6.17-2007-01-17_0600.iso.ogg http://www.morphix.org/autobuilds/video/?C=M;O=D Guest builds are still available. http://www.morphix.org/index.php?option=com_joomlaboard&Itemid=90&func=view&id=667&catid=14 We aren't able to build and upload every main module we have templates for. If you have a Morphix or Debian server with a local mirror and lots of bandwidth, you can help us out! Regards, Brendan |
From: Matthew R. <mat...@gm...> - 2007-01-14 07:08:36
|
So I have a new Dell Optiplex 320 and a month-old build of Morphix with Etch sources and this machine will not boot at all. Googling around says to add "pci=nomsi" to my boot options for the kernel, so I added them to the end of the grub line and still nothing. Has anyone else played with these machines? Dell seems to be working extra hard lately to drop Linux compatibility (I had to send back a whole shipment of Dimension C521s because of their sheer crappiness). I'm not getting any debugging messages, just the output of the kernel to be booted with the options. My plan of attack is to grab the latest of everything and try again, but I thought I might ask if anyone here knows better. Thanks, Matt |
From: Brendan M. S. <me...@ba...> - 2007-01-03 00:59:47
|
Hi All, On 1/2/07, Brendan M. Sleight wrote: > I try and file a suitable bug-report upsteam. But by the time I test > this on plain debootstrap sid, it may have already been fixed. Tried to file a bug report. Alas I can not re-create the error when using plain debian debootstrap sid. http://www.barwap.com/morphix/sid-xorg/sid-debootstrap.txt [From the bottom upwards] Using just sid, xorg is installable. Using mmaker, if I do not have <packagereq>xorg</packagereq> in the template before morphix-init-matchbox:- http://www.barwap.com/morphix/sid-xorg/mmaker.log Exec: /usr/sbin/chroot /tmp/libmorphix-6i45IF /usr/bin/apt-get -qq -y --force-yes install morphix-init-matchbox E: Broken packages So morphix-init-matchbox is still a broken package. I just can not understand why this is broken. Regards, Brendan |
From: Brendan M. S. <me...@ba...> - 2007-01-02 00:43:31
|
Fixed, so just for reference... > > Brendan M. Sleight wrote: > > > Maybe I should put xserver-org as a 'Pre-Depends:' > Pre-Depends did not work either. Doing it manually - the simular error > as before. The correct depends is xorg http://svn.sourceforge.net/morphix/?rev=2456&view=rev Using etch, xserver-xorg being in the depends chain does not cause a probem. When using _unstable_ it does cause a problem at the moment. I have updated the templates http://svn.sourceforge.net/morphix/?rev=2457&view=rev So that xserver-xorg is installed first, not something that depends on xserver-xorg trying to install xserver-xorg. In time xserver-xorg and xorg should not be need in a template. I try and file a suitable bug-report upsteam. But by the time I test this on plain debootstrap sid, it may have already been fixed. Regards, Brendan |
From: Brendan M. S. <me...@ba...> - 2007-01-01 10:19:06
|
On 12/30/06, Alex de Landgraaf <al...@de...> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Brendan M. Sleight wrote: > > Maybe I should put xserver-org as a 'Pre-Depends:' > > Maybe that would work better, yes. Still odd that this is failing. Maybe > some dependancy of matchbox is the problem. As discussed in irc, it affect all of the morphix-init-* Pre-Depends did not work either. Doing it manually - the simular error as before. Reading around. I may be using the wrong depends. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=400654 http://packages.debian.org/unstable/x11/xorg "Higher level metapackages, such as those for desktop environments, can depend on this package and simplify their dependencies." I try this. - As long as Alex does not shot me for causing another set of package uploads. Regards, Brendan |
From: Alex de L. <al...@de...> - 2006-12-30 09:47:23
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Brendan M. Sleight wrote: > Maybe I should put xserver-org as a 'Pre-Depends:' Maybe that would work better, yes. Still odd that this is failing. Maybe some dependancy of matchbox is the problem. > BTW - Autobuilds basemod-2.6.17 keep failing. Size on morphix.org is > very small and I always get md5sum errors when autotesting. Seems to be an upload-issue. I'm currently uploading tonights basemod manually, will look into it. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFljWWQeuQA5TF/UsRAovWAJ4qJZ9Q2+8rr6yKqFqaVuJZ/ffSDwCZAUvv 2askiM5l0Q7dP3juPWzK9yA= =s+Qw -----END PGP SIGNATURE----- |
From: Alex de L. <al...@de...> - 2006-12-30 09:42:18
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Brendan M. Sleight wrote: > IMHO - the mainmodule is the best place, > keeps the base small. You're correct. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFljRTQeuQA5TF/UsRAs1rAKCAYnK1pRm6FtDRksGsey8CdzaXPwCeLoA1 I734AakxIwx7S4Af3tdfJt0= =+ZjO -----END PGP SIGNATURE----- |
From: Brendan M. S. <me...@ba...> - 2006-12-30 09:23:47
|
Hi, Should all mainmodules templates contain :- <packagereq>locales</packagereq> Or is this best in the base. IMHO - the mainmodule is the best place, keeps the base small. Regards, Brendan |
From: Brendan M. S. <me...@ba...> - 2006-12-30 09:19:07
|
On 12/30/06, Alex de Landgraaf wrote: > Could you try it with a template where xserver-xorg is included above > morphix-init-matchbox? I tried it manually, in chroot. Once xserver-xorg is installed, morphix-init-matchbox isntalls with no problems. Maybe I should put xserver-org as a 'Pre-Depends:' BTW - Autobuilds basemod-2.6.17 keep failing. Size on morphix.org is very small and I always get md5sum errors when autotesting. Regards, Brendan |
From: Alex de L. <al...@de...> - 2006-12-30 00:47:57
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Brendan M. Sleight wrote: > Any suggestions to the following ? Any guess what I have done wrong ? Could you try it with a template where xserver-xorg is included above morphix-init-matchbox? I suspect it's just better to have xserver-xorg installed before you install matchbox. Sounds odd though. Will give it a try in the morning. Alex -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFlbcnQeuQA5TF/UsRAup/AJ9FniZogoQBijDsPteKAF7JNCmQDQCfXrUr 2C5m7ubgr3lAqkh+pC/th4Y= =ry4W -----END PGP SIGNATURE----- |
From: Brendan M. S. <me...@ba...> - 2006-12-29 21:40:17
|
Dear All, Any suggestions to the following ? Any guess what I have done wrong ? Regards, Brendan <Extract of mmaker log> Exec: /usr/sbin/chroot /tmp/libmorphix-WMKZiy /usr/bin/apt-get -qq -y --force-yes install morphix-init-matchbox E: Broken packages </Extract of mmaker log> Then using morphix-chroot on the mainmodule sh-3.1# apt-get update Get:1 http://127.0.0.1 sid Release.gpg [378B] Hit http://127.0.0.1 sid Release Ign http://127.0.0.1 sid/main Packages/DiffIndex Hit http://127.0.0.1 sid/main Packages Ign http://www.morphix.org ./ Release.gpg Ign http://www.morphix.org ./ Release Ign http://www.morphix.org ./ Packages/DiffIndex Ign http://www.morphix.org ./ Packages Hit http://www.morphix.org ./ Packages Fetched 1B in 0s (1B/s) Reading package lists... Done sh-3.1# apt-get install morphix-init-matchbox Reading package lists... Done Building dependency tree... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. Since you only requested a single operation it is extremely likely that the package is simply not installable and a bug report against that package should be filed. The following information may help to resolve the situation: The following packages have unmet dependencies: morphix-init-matchbox: Depends: xserver-xorg but it is not going to be installed E: Broken packages sh-3.1# apt-get install xserver-xorg Reading package lists... Done Building dependency tree... Done The following extra packages will be installed: discover discover-data libdiscover2 xkb-data xserver-xorg-core xserver-xorg-input-acecad xserver-xorg-input-kbd xserver-xorg-input-mouse xserver-xorg-video-vesa xserver-xorg-video-voodoo Recommended packages: xresprobe mdetect The following NEW packages will be installed: discover discover-data libdiscover2 xkb-data xserver-xorg xserver-xorg-core xserver-xorg-input-acecad xserver-xorg-input-kbd xserver-xorg-input-mouse xserver-xorg-video-vesa xserver-xorg-video-voodoo 0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. Need to get 5131kB of archives. After unpacking 18.7MB of additional disk space will be used. Do you want to continue [Y/n]? N Abort. sh-3.1# |