Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleapply fixes
#Machine config masking all the unused layers and components
cd meta-cmf-raspberrypi; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmf-raspberrypi refs/changes/23/59123/2 && git cherry-pick FETCH_HEAD

#Removing dependencies of unused components from required layers	
1. cd meta-cmf-raspberrypi; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmf-raspberrypi refs/changes/74/59174/6 && git cherry-pick FETCH_HEAD
	
2. cd meta-cmf-video; git fetch https://code.rdkcentral.com/r/components/generic/rdk-oe/meta-cmf-video refs/changes/0824/5920861024/3 && git cherry-pick FETCH_HEAD

#Checkout new image recipe file for IPSTB	
cd meta-rdk; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-rdk refs/changes/23/59223/2 && git cherry-pick FETCH_HEAD

#Bring tr69 and mfrlibs from restricted layers to opensource layers:
cd meta-cmf-raspberrypi; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmf-raspberrypi refs/changes/2439/5922461539/31 && git cherry-pick FETCH_HEAD

#link Wpeframework to tts
cd meta-cmf-video;git fetch https://code.rdkcentral.com/r/components/generic/rdk-oe/meta-cmf-video refs/changes/89/60489/1 && git cherry-pick FETCH_HEAD

#Remove xdialserver
cd meta-cmf; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmfinjectedbundle refs/changes/9241/6049261341/12 && git cherry-pick FETCH_HEAD

cd meta-cmf-raspberrypi; git fetch https://code.rdkcentral.com/r/rdk/components/generic/rdk-oe/meta-cmf-raspberrypi refs/changes/23/59123/4 && git cherry-pick FETCH_HEAD

Image build

Code Block
languagebash
themeRDark
titlegeneric image
MACHINE=raspberrypi-rdk-ipmc source meta-cmf-raspberrypi/setup-environment

bitbake rdk-ip-mc-image

...

Code Block
languagebash
themeRDark
# Insert the micro SD card to the host system and mention the card's device file name
# input file (if) is the image file to flash and the output file (of) is the card's device file name
bzcat rdk-ip-mc-image-raspberrypi-rdk-ipmc.wic.bz2 | sudo dd of=/dev/<sd file> bs=4M iflag=fullblock oflag=direct conv=fsync

...