Advertisement
Guest User

Untitled

a guest
Oct 17th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. repo init -u git://phablet.ubuntu.com/aosp/platform/manifest.git -b phablet-4.2.2_r1
  2. repo sync
  3. cd .repo
  4. mkdir local_manifests
  5. cd local_manifests
  6. vi roomservice.xml
  7.  
  8. __contents__
  9. <?xml version="1.0" encoding="UTF-8"?>
  10. <manifest>
  11. <project name="CyanogenMod/android_device_oneplus_bacon" path="device/oneplus/bacon" remote="github" revision="stable/cm-11.0"/>
  12. <project name="CyanogenMod/android_device_oppo_msm8974-common" path="device/oppo/msm8974-common" remote="github" revision="stable/cm-11.0"/>
  13. <project name="CyanogenMod/android_device_oppo_common" path="device/oppo/common" remote="github" revision="stable/cm-11.0"/>
  14. <project name="CyanogenMod/android_kernel_oneplus_msm8974" path="kernel/oneplus/msm8974" remote="github" revision="stable/cm-11.0"/>
  15. <project name="TheMuppets/proprietary_vendor_oppo" path="vendor/oppo" remote="github" revision="stable/cm-11.0"/>
  16. <project name="TheMuppets/proprietary_vendor_oneplus" path="vendor/oneplus" remote="github" revision="stable/cm-11.0"/>
  17. <project name="CyanogenMod/android_hardware_qcom_display-caf-new" path="hardware/qcom/display-caf-new" remote="github" revision="stable/cm-11.0"/>
  18. <project name="CyanogenMod/android_hardware_qcom_media-caf-new" path="hardware/qcom/media-caf-new" remote="github" revision="stable/cm-11.0"/>
  19. </manifest>
  20. __end__
  21.  
  22. cd
  23. repo sync
  24. cd device/oneplus/bacon/
  25. ./extract-files.sh
  26. cd kernel/oneplus/msm8974/arch/arm/configs/
  27. vi cyanogenmod_bacon_defconfig
  28.  
  29. __appended the following__
  30. CONFIG_SYSVIPC=y
  31. CONFIG_NAMESPACES=y
  32. CONFIG_UTS_NS=y
  33. CONFIG_IPC_NS=y
  34. CONFIG_USER_NS=y
  35. CONFIG_PID_NS=y
  36. CONFIG_NET_NS=y
  37. CONFIG_DEVTMPFS=y
  38. CONFIG_DEVTMPFS_MOUNT=y
  39. CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
  40. CONFIG_FSNOTIFY=y
  41. CONFIG_DNOTIFY=y
  42. CONFIG_INOTIFY_USER=y
  43. CONFIG_FANOTIFY=y
  44. CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
  45. CONFIG_SWAP=y
  46. # CONFIG_ANDROID_PARANOID_NETWORK is not set
  47. CONFIG_VT=y
  48. CONFIG_VT_CONSOLE=y
  49. CONFIG_PANIC_TIMEOUT=5
  50. CONFIG_ANDROID_RAM_CONSOLE=y
  51. __end__
  52.  
  53. cd
  54.  
  55. . build/envsetup.sh
  56.  
  57. breakfast bacon
  58.  
  59. __output__
  60. build/core/product_config.mk:223: *** Cannot locate config makefile for product "cm_bacon". Stop.
  61.  
  62. ** Don't have a product spec for: 'cm_bacon'
  63. ** Do you have the right repo manifest?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement