Advertisement
Guest User

Untitled

a guest
Jun 28th, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. # -*-mic2-options-*- -f fs --compress-disk-image=tar.bz2 --record-pkgs=url --pkgmgr=zypp --arch=armv7hl -*-mic2-options-*-
  2. #
  3. # Do not Edit! Generated by:
  4. # kickstarter.py
  5. #
  6.  
  7. lang en_US.UTF-8
  8. keyboard us
  9. timezone --utc UTC
  10. part / --size 1500 --ondisk sda --fstype=ext4
  11. rootpw nemo
  12.  
  13. user --name nemo --groups audio,video --password nemo
  14.  
  15. repo --name=mer-core --baseurl=http://releases.merproject.org/releases/@MER_RELEASE@/builds/armv7hl/packages --debuginfo
  16. repo --name=nemo-ux --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/ux/@NEMO_RELEASE@_armv7hl/
  17. repo --name=nemo-adaptation-tegra3-nexus7 --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/hw:/nv:/tegra3:/nexus7/latest_armv7hl/
  18. repo --name=nemo-apps --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/apps/@NEMO_RELEASE@_armv7hl/
  19. repo --name=nemo-mw --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/mw/@NEMO_RELEASE@_armv7hl/
  20. repo --name=nemo-adaptation-tegra3-common --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/hw:/nv:/tegra3:/common/latest_armv7hl/
  21.  
  22. %packages
  23. @Nemo Nexus7
  24.  
  25. %end
  26.  
  27. %post
  28. ## rpm-rebuilddb.post from mer-kickstarter-configs package
  29. # Rebuild db using target's rpm
  30. echo -n "Rebuilding db using target rpm.."
  31. rm -f /var/lib/rpm/__db*
  32. rpm --rebuilddb
  33. echo "done"
  34. ## end rpm-rebuilddb.post
  35.  
  36. if [ "@SSU_RELEASE_TYPE@" = "rnd" ]; then
  37. [ -n "@NEMO_RELEASE@" ] && ssu release -r @NEMO_RELEASE@
  38. [ -n "@FLAVOUR@" ] && ssu flavour @FLAVOUR@
  39. ssu mode 2
  40. else
  41. [ -n "@NEMO_RELEASE@" ] && ssu release @NEMO_RELEASE@
  42. ssu mode 4
  43. fi
  44.  
  45. ## arch-armv7hl.post from mer-kickstarter-configs package
  46. # Without this line the rpm don't get the architecture right.
  47. echo -n 'armv7hl-meego-linux' > /etc/rpm/platform
  48.  
  49. # Also libzypp has problems in autodetecting the architecture so we force tha as well.
  50. # https://bugs.meego.com/show_bug.cgi?id=11484
  51. echo 'arch = armv7hl' >> /etc/zypp/zypp.conf
  52. ## end arch-armv7hl.post
  53.  
  54.  
  55. %end
  56.  
  57. %post --nochroot
  58. if [ -n "$IMG_NAME" ]; then
  59. echo "BUILD: $IMG_NAME" >> $INSTALL_ROOT/etc/meego-release
  60. fi
  61.  
  62.  
  63. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement