Re: [beagleboard] Help Needed : Custom built debian image

2014-04-07 Thread viraniac
Hi lisarden,

I am tried to make the bare minimum image but that takes too long to boot 
while compared to the image supplied by the Beagleboard community. Also if 
you see all the questions that I posted were about customizing the image 
using the image-builder script. So its not that I am going from end to the 
beginning. I am at the extreme begininning of creating a customized OS. 

Let me tell you my requirement.

I need a OS that shows a splash screen at boot. Once the OS is booted it 
will run a Java program instead of lxde to show the UI.

I had no luck with splash till now though I know that I have to use 
psplash. Also I tried changing the /etc/lightdm/lightdm.conf and 
/usr/share/xsession/LXDE.desktop file to invoke the java program but had no 
luck with it. I tried disabling the lightdm service by removing the 
/etc/rc5.d/lightdm symlink but still lightdm starts and shows LXDE at boot 
up.

Please Robert and lisarden, help me with this so that I can complete the 
image.

PS: I have customized the target/chroot/beagleboard.org.sh file to add the 
oracle_jdk into the image and to remove chromium from the image. the rest 
of the packages are left as it is.

On Wednesday, April 2, 2014 11:14:22 AM UTC+5:30, lisarden wrote:

 viraniac,

 why don't you just use a bare image and add in packages that you need? 
 What you do now is going from the end to the beginning. I would go from the 
 smallest bare image to functionality required


 2014-04-01 23:49 GMT+04:00 Robert Nelson robert...@gmail.comjavascript:
 :

 On Tue, Apr 1, 2014 at 2:44 PM,  vira...@gmail.com javascript: wrote:
 
  HI Robert,
 
  The script is still running but what I can see is it just installed 
 nodejs
  packages. I guess this is because the script was installing the 
 beaglebone
  package. I don't require node.js installed. Please confirm the features
  provided by beaglebone package so I can decide whether to include or 
 exclude
  it from the build.

 The beaglebone meta package currently pulls in:
 acpi-support-base, am335x-pru-package, libsoc2, nodejs, nodejs-legacy,
 npm, xinput-calibrator, xserver-xorg-video-modesetting

 from the beagleboard.org debian repo:
 http://beagle.s3.amazonaws.com/debian (there's a new domain being
 setup using beagleboard.org)

 If you don't want these package, just disable:

 https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L424

 Then you'll still have access to the beagleboard.org repo.

 Regards,

 --
 Robert Nelson
 http://www.rcn-ee.com/

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
 Company - http://www.linkedin.com/company/mentorel
 Facebook - https://www.facebook.com/mentorel.company
  

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Help Needed : Custom built debian image

2014-04-01 Thread viraniac
Hi Robert,

Thanks for the fast reply. I have gone through the scripts and I noticed 
that you are the author of the scripts. I really thank you for making those 
awesome scripts to make our lives easier. 

Just have a suggestion, Please add bit more information in the readme file 
about the customisation and all which will be helpful while making 
customized images.

I have commented some lines to disable installation of GUI, Lxde, apache, 
etc and currently the script is running on my BBB. Will post the result 
once it finishes.

I have one more question. I noticed that debian image comes with apache-2 
installed in it. What's the purpose of having apache 2 here?

Regards
viraniac

On Tuesday, April 1, 2014 5:50:44 AM UTC+5:30, RobertCNelson wrote:

 On Mon, Mar 31, 2014 at 6:28 PM,  vira...@gmail.com javascript: 
 wrote: 
  Hi, 
  
  I am trying to build custom minimal debian images for my beaglebone 
 black. I 
  have downloaded the image builder from git and tried executing it after 
  commenting out some packagenames in beagleboard.org_image.sh. But when 
 the 
  image is built, all the packages including the packages that I commented 
 out 
  are also installed. There is no information about which file to edit or 
 any 
  other instruction provided in the readme file. 

 Base package list: 
 https://github.com/beagleboard/image-builder/blob/master/var/pkg_list.sh 

 Packages specific to the beagleboard.org debian image: 

 https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L43
  

 comment out what you don't need, but remember Debian package 
 dependence are complex, so something might get installed anyways. 

 Patches welcome on improving the readme. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Help Needed : Custom built debian image

2014-04-01 Thread viraniac

HI Robert,

The script is still running but what I can see is it just installed nodejs 
packages. I guess this is because the script was installing the beaglebone 
package. I don't require node.js installed. Please confirm the features 
provided by beaglebone package so I can decide whether to include or 
exclude it from the build.

Regards
viraniac

On Wednesday, April 2, 2014 12:17:48 AM UTC+5:30, vira...@gmail.com wrote:

 Hi Robert,

 Thanks for the fast reply. I have gone through the scripts and I noticed 
 that you are the author of the scripts. I really thank you for making those 
 awesome scripts to make our lives easier. 

 Just have a suggestion, Please add bit more information in the readme file 
 about the customisation and all which will be helpful while making 
 customized images.

 I have commented some lines to disable installation of GUI, Lxde, apache, 
 etc and currently the script is running on my BBB. Will post the result 
 once it finishes.

 I have one more question. I noticed that debian image comes with apache-2 
 installed in it. What's the purpose of having apache 2 here?

 Regards
 viraniac

 On Tuesday, April 1, 2014 5:50:44 AM UTC+5:30, RobertCNelson wrote:

 On Mon, Mar 31, 2014 at 6:28 PM,  vira...@gmail.com wrote: 
  Hi, 
  
  I am trying to build custom minimal debian images for my beaglebone 
 black. I 
  have downloaded the image builder from git and tried executing it after 
  commenting out some packagenames in beagleboard.org_image.sh. But when 
 the 
  image is built, all the packages including the packages that I 
 commented out 
  are also installed. There is no information about which file to edit or 
 any 
  other instruction provided in the readme file. 

 Base package list: 
 https://github.com/beagleboard/image-builder/blob/master/var/pkg_list.sh 

 Packages specific to the beagleboard.org debian image: 

 https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L43
  

 comment out what you don't need, but remember Debian package 
 dependence are complex, so something might get installed anyways. 

 Patches welcome on improving the readme. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Help Needed : Custom built debian image

2014-04-01 Thread Robert Nelson
On Tue, Apr 1, 2014 at 2:44 PM,  viran...@gmail.com wrote:

 HI Robert,

 The script is still running but what I can see is it just installed nodejs
 packages. I guess this is because the script was installing the beaglebone
 package. I don't require node.js installed. Please confirm the features
 provided by beaglebone package so I can decide whether to include or exclude
 it from the build.

The beaglebone meta package currently pulls in:
acpi-support-base, am335x-pru-package, libsoc2, nodejs, nodejs-legacy,
npm, xinput-calibrator, xserver-xorg-video-modesetting

from the beagleboard.org debian repo:
http://beagle.s3.amazonaws.com/debian (there's a new domain being
setup using beagleboard.org)

If you don't want these package, just disable:
https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L424

Then you'll still have access to the beagleboard.org repo.

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Help Needed : Custom built debian image

2014-04-01 Thread Maxim Podbereznyy
viraniac,

why don't you just use a bare image and add in packages that you need?
What you do now is going from the end to the beginning. I would go from the
smallest bare image to functionality required


2014-04-01 23:49 GMT+04:00 Robert Nelson robertcnel...@gmail.com:

 On Tue, Apr 1, 2014 at 2:44 PM,  viran...@gmail.com wrote:
 
  HI Robert,
 
  The script is still running but what I can see is it just installed
 nodejs
  packages. I guess this is because the script was installing the
 beaglebone
  package. I don't require node.js installed. Please confirm the features
  provided by beaglebone package so I can decide whether to include or
 exclude
  it from the build.

 The beaglebone meta package currently pulls in:
 acpi-support-base, am335x-pru-package, libsoc2, nodejs, nodejs-legacy,
 npm, xinput-calibrator, xserver-xorg-video-modesetting

 from the beagleboard.org debian repo:
 http://beagle.s3.amazonaws.com/debian (there's a new domain being
 setup using beagleboard.org)

 If you don't want these package, just disable:

 https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L424

 Then you'll still have access to the beagleboard.org repo.

 Regards,

 --
 Robert Nelson
 http://www.rcn-ee.com/

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
Company - http://www.linkedin.com/company/mentorel
Facebook - https://www.facebook.com/mentorel.company

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Help Needed : Custom built debian image

2014-03-31 Thread viraniac
Hi,

I am trying to build custom minimal debian images for my beaglebone black. 
I have downloaded the image builder from git and tried executing it after 
commenting out some packagenames in beagleboard.org_image.sh. But when the 
image is built, all the packages including the packages that I commented 
out are also installed. There is no information about which file to edit or 
any other instruction provided in the readme file. 

Please help me in building the custom images.

Regards

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Help Needed : Custom built debian image

2014-03-31 Thread Robert Nelson
On Mon, Mar 31, 2014 at 6:28 PM,  viran...@gmail.com wrote:
 Hi,

 I am trying to build custom minimal debian images for my beaglebone black. I
 have downloaded the image builder from git and tried executing it after
 commenting out some packagenames in beagleboard.org_image.sh. But when the
 image is built, all the packages including the packages that I commented out
 are also installed. There is no information about which file to edit or any
 other instruction provided in the readme file.

Base package list:
https://github.com/beagleboard/image-builder/blob/master/var/pkg_list.sh

Packages specific to the beagleboard.org debian image:
https://github.com/beagleboard/image-builder/blob/master/beagleboard.org_image.sh#L43

comment out what you don't need, but remember Debian package
dependence are complex, so something might get installed anyways.

Patches welcome on improving the readme.

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.