Skip to content

Commit

Permalink
mako, grouper, maguro, tenderloin: fix mounts for new lxc overlay method
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com>
  • Loading branch information
Tofee authored and shr-project committed Jan 5, 2017
1 parent 17bba87 commit fe8eda3
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 10 deletions.
@@ -1,9 +1,10 @@
require recipes-android/android-headers/android-headers.inc

PV = "4.2.2+gitr${SRCPV}"
SRCREV = "59648ed5520a2274ce2549b249416a0dad50583c"
SRCREV = "957ab6e28aea03d0cf6495f33ade9ddfff480ccc"

SRC_URI = "git://github.com/webOS-ports/phablet-headers.git;branch=master;protocol=git"
S = "${WORKDIR}/git"
SRC_URI = "git://git.launchpad.net/android-headers;branch=master;protocol=git"
ANDROID_API = "19"
S = "${WORKDIR}/git/${ANDROID_API}"

COMPATIBLE_MACHINE = "^grouper$"
8 changes: 8 additions & 0 deletions meta-asus/recipes-core/base-files/base-files/grouper/fstab
@@ -0,0 +1,8 @@
rootfs / auto defaults 1 1
proc /proc proc defaults 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
tmpfs /run tmpfs mode=0755,nodev,nosuid,strictatime 0 0
tmpfs /var/volatile tmpfs defaults 0 0
/dev/mmcblk0p3 /system auto ro,nofail 0 0

6 changes: 6 additions & 0 deletions meta-asus/recipes-core/base-files/base-files_3.0.14.bbappend
@@ -0,0 +1,6 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

do_install_append_grouper() {
# install additional mount directory for root of original android system
install -m 0755 -d ${D}/system
}
@@ -1,9 +1,10 @@
require recipes-android/android-headers/android-headers.inc

PV = "4.4.3+gitr${SRCPV}"
SRCREV = "890bef235d53ab09e140f02dcc27d1993df6e9df"
SRCREV = "957ab6e28aea03d0cf6495f33ade9ddfff480ccc"

SRC_URI = "git://github.com/webOS-ports/phablet-headers.git;branch=cm-11.0;protocol=git"
S = "${WORKDIR}/git"
SRC_URI = "git://git.launchpad.net/android-headers;branch=master;protocol=git"
ANDROID_API = "19"
S = "${WORKDIR}/git/${ANDROID_API}"

COMPATIBLE_MACHINE = "^tenderloin$"
Expand Up @@ -4,4 +4,5 @@ devpts /dev/pts devpts mode=0620,gid=5 0
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
tmpfs /run tmpfs mode=0755,nodev,nosuid,strictatime 0 0
tmpfs /var/volatile tmpfs defaults 0 0
/dev/mapper/store-cm--system /system auto ro,nofail 0 0

5 changes: 5 additions & 0 deletions meta-hp/recipes-core/base-files/base-files_3.0.14.bbappend
@@ -1 +1,6 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

do_install_append_tenderloin() {
# install additional mount directory for root of original android system
install -m 0755 -d ${D}/system
}
2 changes: 1 addition & 1 deletion meta-lg/recipes-core/base-files/base-files/mako/fstab
Expand Up @@ -7,4 +7,4 @@ tmpfs /var/volatile tmpfs defaults 0 0

/dev/mmcblk0p1 /firmware vfat ro,uid=1000,gid=1000,dmask=227,fmask=337,nofail 0 0
/dev/mmcblk0p20 /persist ext4 nosuid,nodev,barrier=1,data=ordered,nodelalloc,nofail 0 0
/dev/mmcblk0p21 /system ext4 ro,relatime,data=ordered,nofail 0 0
/dev/mmcblk0p21 /system ext4 ro,nofail 0 0
2 changes: 2 additions & 0 deletions meta-lg/recipes-core/base-files/base-files_3.0.14.bbappend
@@ -1,6 +1,8 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

do_install_append_mako() {
# install additional mount directory for root of original android system
install -m 0755 -d ${D}/system
install -d ${D}/firmware
install -d ${D}/persist
}
@@ -1,9 +1,10 @@
require recipes-android/android-headers/android-headers.inc

PV = "4.2.2+gitr${SRCPV}"
SRCREV = "59648ed5520a2274ce2549b249416a0dad50583c"
SRCREV = "957ab6e28aea03d0cf6495f33ade9ddfff480ccc"

SRC_URI = "git://github.com/webOS-ports/phablet-headers.git;branch=master;protocol=git"
S = "${WORKDIR}/git"
SRC_URI = "git://git.launchpad.net/android-headers;branch=master;protocol=git"
ANDROID_API = "19"
S = "${WORKDIR}/git/${ANDROID_API}"

COMPATIBLE_MACHINE = "^maguro$"
1 change: 1 addition & 0 deletions meta-samsung/recipes-core/base-files/base-files/tuna/fstab
Expand Up @@ -5,3 +5,4 @@ usbdevfs /proc/bus/usb usbdevfs noauto 0 0
tmpfs /var/volatile tmpfs defaults 0 0
/dev/mmcblk0p3 /factory auto defaults 0 0
/dev/mmcblk0p3 /data/radio auto defaults 0 0
/dev/mmcblk0p10 /system auto ro,nofail 0 0
Expand Up @@ -6,6 +6,9 @@ do_install_append_crespo() {
}

do_install_append_tuna() {
# install additional mount directory for root of original android system
install -m 0755 -d ${D}/system

# install additional mount directory for modem related data
install -m 0755 -d ${D}/factory

Expand Down

0 comments on commit fe8eda3

Please sign in to comment.