Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. repo init -u git://phablet.ubuntu.com/aosp/platform/manifest.git -b phablet-4.4.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. <remote fetch="git://github.com/" name="github" />
  12. <project name="CyanogenMod/android_device_oneplus_bacon" path="device/oneplus/bacon" remote="github" revision="stable/cm-11.0"/>
  13. <project name="CyanogenMod/android_device_oppo_msm8974-common" path="device/oppo/msm8974-common" remote="github" revision="stable/cm-11.0"/>
  14. <project name="CyanogenMod/android_device_oppo_common" path="device/oppo/common" remote="github" revision="stable/cm-11.0"/>
  15. <project name="CyanogenMod/android_kernel_oneplus_msm8974" path="kernel/oneplus/msm8974" remote="github" revision="stable/cm-11.0"/>
  16. <project name="CyanogenMod/android_kernel_oneplus_msm8974" path="kernel/oneplus/msm8974" remote="github" revision="stable/cm-11.0"/>
  17. <project name="TheMuppets/proprietary_vendor_oppo" path="vendor/oppo" remote="github" revision="stable/cm-11.0"/>
  18. <project name="TheMuppets/proprietary_vendor_oneplus" path="vendor/oneplus" remote="github" revision="stable/cm-11.0"/>
  19. <project name="CyanogenMod/android_hardware_qcom_display-caf-new" path="hardware/qcom/display-caf-new" remote="github" revision="stable/cm-11.0"/>
  20. <project name="CyanogenMod/android_hardware_qcom_media-caf-new" path="hardware/qcom/media-caf-new" remote="github" revision="stable/cm-11.0"/>
  21. </manifest>
  22. __end__
  23.  
  24. cd
  25. repo sync
  26. cd device/oneplus/bacon/
  27. ./extract-files.sh
  28. cd kernel/oneplus/msm8974/arch/arm/configs/
  29. vi cyanogenmod_bacon_defconfig
  30.  
  31. __appended the following__
  32. CONFIG_SYSVIPC=y
  33. CONFIG_NAMESPACES=y
  34. CONFIG_UTS_NS=y
  35. CONFIG_IPC_NS=y
  36. CONFIG_USER_NS=y
  37. CONFIG_PID_NS=y
  38. CONFIG_NET_NS=y
  39. CONFIG_DEVTMPFS=y
  40. CONFIG_DEVTMPFS_MOUNT=y
  41. CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
  42. CONFIG_FSNOTIFY=y
  43. CONFIG_DNOTIFY=y
  44. CONFIG_INOTIFY_USER=y
  45. CONFIG_FANOTIFY=y
  46. CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
  47. CONFIG_SWAP=y
  48. # CONFIG_ANDROID_PARANOID_NETWORK is not set
  49. CONFIG_VT=y
  50. CONFIG_VT_CONSOLE=y
  51. CONFIG_PANIC_TIMEOUT=5
  52. CONFIG_ANDROID_RAM_CONSOLE=y
  53. __end__
  54.  
  55. vi build/core/main.mk
  56. __edit__
  57. # add the following around line 557
  58.  
  59. device/oneplus \
  60. vendor/oneplus \
  61.  
  62. __end__
  63.  
  64. cd
  65.  
  66. . build/envsetup.sh
  67.  
  68. lunch bacon
  69. 11. cm_bacon-userdebug
  70.  
  71. __output__
  72. build/core/product_config.mk:222: *** Cannot locate config makefile for product "cm_bacon". Stop.
  73.  
  74. ** Don't have a product spec for: 'cm_bacon'
  75. ** Do you have the right repo manifest?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement