Hi Thomas,

I have the next result:

~/B2G$  find . -name "*.mk" -type f | xargs grep -n b2g\.mk

./gaia/Android.mk:17:# We will keep this flag in .b2g.mk so |./flash.sh
gaia| follows
./gaia/Android.mk:73: echo $(GAIA_MAKE_FLAGS) > $(GAIA_PATH)/.b2g.mk
./build/target/product/generic_no_telephony.mk:89:$(call inherit-product,
gonk-misc/b2g.mk)

What it means that ?
I should to edit generic_no_telephony.mk file and to link to my device or I
should to creat a new file?

In the bottom the generic_no_telephony.mk file there is:

# Overrides
PRODUCT_BRAND := generic
PRODUCT_DEVICE := generic
PRODUCT_NAME := generic_no_telephony


Thanks in advance

Regards,

jvidalsm



2014-03-18 4:07 GMT-05:00 Thomas Zimmermann <[email protected]>:

> Hi Jose
>
> On 18.03.2014 09:56, Jose Vidal wrote:
> > Hi Thomas,
> >
> > No, not that happens.
> >
> > I have actually:
> >
> > drwxrwx--x 2 jvidal jvidal   4096 Mar 18 03:37 data
> > -rw-r--r-- 1 jvidal jvidal    151 Mar 18 03:37 default.prop
> > drwxr-xr-x 2 jvidal jvidal   4096 Mar 18 03:37 dev
> > -rw-r----- 1 jvidal jvidal    857 Mar 18 03:37 fstab.freescale
> > -rwxr-x--- 1 jvidal jvidal 109424 Mar 18 03:37 init
> > -rwxr-x--- 1 jvidal jvidal   2626 Mar 18 03:37 init.freescale.rc
> > -rwxr-x--- 1 jvidal jvidal   2487 Mar 18 03:37 init.goldfish.rc
> > drwxr-xr-x 2 jvidal jvidal   4096 Mar 18 03:37 proc
> > drwxr-x--- 2 jvidal jvidal   4096 Mar 18 03:37 sbin
> > drwxr-xr-x 2 jvidal jvidal   4096 Mar 18 03:37 sys
> > drwxr-xr-x 2 jvidal jvidal   4096 Mar 18 03:37 system
> > -rw-r--r-- 1 jvidal jvidal    272 Mar 18 03:37 ueventd.goldfish.rc
> > -rw-r--r-- 1 jvidal jvidal   4024 Mar 18 03:37 ueventd.rc
> >
> >
> > I should to edit gonk-misc/Android.mk ?
>
> Actually you shouldn't have to edit any files, except those in
> device/<your_device>. For the builds I have on my hard disk, b2g.mk is
> included by an .mk file under build/target/product/, like
>
>   find . -name "*.mk" -type f | xargs grep -n b2g\.mk
>   ./build/target/product/full_base.mk:56:$(call inherit-product,
> gonk-misc/b2g.mk)
>
> You should check if such a line is present and if the respective file is
> included from the *.mk files in your device directory; either directly
> or via other files.
>
> Best regards
> Thomas
>
>
> >
> > Regards.
> >
> >
> > jvidalsm
> >
> >
> > 2014-03-18 3:48 GMT-05:00 Thomas Zimmermann <[email protected]
> > <mailto:[email protected]>>:
> >
> >     > the dependecies listed in gonk-misc/Android.mk are included.
> >
> >     s/Android.mk/b2g.mk <http://b2g.mk>
> >
> >
> >     >
> >     > Best regards
> >     > Thomas
> >     >
> >     > On 18.03.2014 08:39, Jose Vidal wrote:
> >     >> Hi everyone,
> >     >>
> >     >> I have builded the image files:
> >     >>
> >     >> boot.img
> >     >> system.img
> >     >> userdata.img
> >     >> recovery.img
> >     >>
> >     >> I'm using unmkbootimg to extract the files from boot.img.
> >     >> When I extract the files from my boot.img I don't have the same
> >     files like boot.img from Hamachi.
> >     >>
> >     >> My device is a fsl/arm2_6dq and the files inside the boot.img
> >     (after the build) are:
> >     >>
> >     >> data
> >     >> dev
> >     >> proc
> >     >> sbin
> >     >> sys
> >     >> system
> >     >> init
> >     >> init.freescale.rc
> >     >> ueventd.goldfish.rc
> >     >> default.prop
> >     >> fstab.freescale
> >     >> init.goldfish.rc
> >     >> ueventd.rc
> >     >>
> >     >> The files inside the boot.img from Hamachi device (downloaded
> >     from http://elsimpicuitico.wordpress.com/firefoxos/)  are:
> >     >>
> >     >> boot.ver
> >     >> dev
> >     >> proc
> >     >> sbin
> >     >> sys
> >     >> system
> >     >> init.qcom.class_core.sh <http://init.qcom.class_core.sh>
> >     >> init.qcom.syspart_fixup.sh <http://init.qcom.syspart_fixup.sh>
> >     >> ueventd.goldfish.rc
> >     >> charger
> >     >> init
> >     >> init.qcom.class_main.sh <http://init.qcom.class_main.sh>
> >     >> init.qcom.usb.rc
> >     >> res
> >     >> ueventd.rc
> >     >> custpack
> >     >> init.b2g.rc
> >     >> init.qcom.early_boot.sh <http://init.qcom.early_boot.sh>
> >     >> init.qcom.usb.sh <http://init.qcom.usb.sh>
> >     >> data
> >     >> init.goldfish.rc
> >     >> init.qcom.rc
> >     >> init.rc
> >     >> default.prop
> >     >> init.jrd.rc
> >     >> init.qcom.sh <http://init.qcom.sh>
> >     >> init.target.rc
> >     >>
> >     >>
> >     >> How I can make to get the init.b2g.rc, init.rc inside the
> boot.img ?
> >     >>
> >     >> I hope for your help.
> >     >>
> >     >> Thanks in advance.
> >     >>
> >     >>
> >     >> Best regards
> >     >>
> >     >> jvidalsm
> >     >> _______________________________________________
> >     >> dev-b2g mailing list
> >     >> [email protected] <mailto:[email protected]>
> >     >> https://lists.mozilla.org/listinfo/dev-b2g
> >     >>
> >     >
> >     > _______________________________________________
> >     > dev-b2g mailing list
> >     > [email protected] <mailto:[email protected]>
> >     > https://lists.mozilla.org/listinfo/dev-b2g
> >     >
> >
> >
> >
> >
> > --
> >        Jose Vidal Noblecilla
> >        Ingeniero Electrónico
> >               UNMSM
> >              Lima-Perú
> >          Cel:994 682 455
>
>


-- 
       Jose Vidal Noblecilla
       Ingeniero Electrónico
              UNMSM
             Lima-Perú
         Cel:994 682 455
_______________________________________________
dev-b2g mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-b2g

Reply via email to